mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
feat: Create ConditionalHandler
This handler rejects all inputs once a certain condition is met
This commit is contained in:
68
test/unit/util/handlers/ConditionalHandler.test.ts
Normal file
68
test/unit/util/handlers/ConditionalHandler.test.ts
Normal file
@@ -0,0 +1,68 @@
|
||||
import type { KeyValueStorage } from '../../../../src/storage/keyvalue/KeyValueStorage';
|
||||
import { NotImplementedHttpError } from '../../../../src/util/errors/NotImplementedHttpError';
|
||||
import type { AsyncHandler } from '../../../../src/util/handlers/AsyncHandler';
|
||||
import { ConditionalHandler } from '../../../../src/util/handlers/ConditionalHandler';
|
||||
|
||||
describe('A ConditionalHandler', (): void => {
|
||||
const storageKey = 'completed';
|
||||
const storageValue = true;
|
||||
const input = 'input';
|
||||
let storage: KeyValueStorage<string, unknown>;
|
||||
let source: jest.Mocked<AsyncHandler<string, string>>;
|
||||
let handler: ConditionalHandler<string, string>;
|
||||
|
||||
beforeEach(async(): Promise<void> => {
|
||||
storage = new Map<string, boolean>() as any;
|
||||
source = {
|
||||
canHandle: jest.fn(),
|
||||
handleSafe: jest.fn().mockResolvedValue('handledSafely'),
|
||||
handle: jest.fn().mockResolvedValue('handled'),
|
||||
};
|
||||
|
||||
handler = new ConditionalHandler(source, storage, storageKey, storageValue);
|
||||
});
|
||||
|
||||
it('send canHandle input to the source.', async(): Promise<void> => {
|
||||
await expect(handler.canHandle(input)).resolves.toBeUndefined();
|
||||
expect(source.canHandle).toHaveBeenCalledTimes(1);
|
||||
expect(source.canHandle).toHaveBeenLastCalledWith(input);
|
||||
});
|
||||
|
||||
it('rejects all canHandle requests once the storage value matches.', async(): Promise<void> => {
|
||||
await storage.set(storageKey, storageValue);
|
||||
await expect(handler.canHandle(input)).rejects.toThrow(NotImplementedHttpError);
|
||||
expect(source.canHandle).toHaveBeenCalledTimes(0);
|
||||
});
|
||||
|
||||
it('caches the value of the storage.', async(): Promise<void> => {
|
||||
await storage.set(storageKey, storageValue);
|
||||
await expect(handler.canHandle(input)).rejects.toThrow(NotImplementedHttpError);
|
||||
await storage.delete(storageKey);
|
||||
await expect(handler.canHandle(input)).rejects.toThrow(NotImplementedHttpError);
|
||||
});
|
||||
|
||||
it('redirects input to the source handleSafe call.', async(): Promise<void> => {
|
||||
await expect(handler.handleSafe(input)).resolves.toBe('handledSafely');
|
||||
expect(source.handleSafe).toHaveBeenCalledTimes(1);
|
||||
expect(source.handleSafe).toHaveBeenLastCalledWith(input);
|
||||
});
|
||||
|
||||
it('rejects all handleSafe requests once the storage value matches.', async(): Promise<void> => {
|
||||
await storage.set(storageKey, storageValue);
|
||||
await expect(handler.handleSafe(input)).rejects.toThrow(NotImplementedHttpError);
|
||||
expect(source.handleSafe).toHaveBeenCalledTimes(0);
|
||||
});
|
||||
|
||||
it('redirects input to the source handle call.', async(): Promise<void> => {
|
||||
await expect(handler.handle(input)).resolves.toBe('handled');
|
||||
expect(source.handle).toHaveBeenCalledTimes(1);
|
||||
expect(source.handle).toHaveBeenLastCalledWith(input);
|
||||
});
|
||||
|
||||
it('does not reject handle requests once the storage value matches.', async(): Promise<void> => {
|
||||
await storage.set(storageKey, storageValue);
|
||||
await expect(handler.handle(input)).resolves.toBe('handled');
|
||||
expect(source.handle).toHaveBeenCalledTimes(1);
|
||||
expect(source.handle).toHaveBeenLastCalledWith(input);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user