mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
change: Make credential extractors specialized.
This commit is contained in:
committed by
Joachim Van Herwegen
parent
0407a36490
commit
b0c50b8a7b
27
test/unit/authentication/UnsecureWebIdExtractor.test.ts
Normal file
27
test/unit/authentication/UnsecureWebIdExtractor.test.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import { UnsecureWebIdExtractor } from '../../../src/authentication/UnsecureWebIdExtractor';
|
||||
import type { HttpRequest } from '../../../src/server/HttpRequest';
|
||||
import { NotImplementedHttpError } from '../../../src/util/errors/NotImplementedHttpError';
|
||||
|
||||
describe('An UnsecureWebIdExtractor', (): void => {
|
||||
const extractor = new UnsecureWebIdExtractor();
|
||||
|
||||
it('throws an error if no Authorization header is specified.', async(): Promise<void> => {
|
||||
const headers = {};
|
||||
const result = extractor.handleSafe({ headers } as HttpRequest);
|
||||
await expect(result).rejects.toThrow(NotImplementedHttpError);
|
||||
await expect(result).rejects.toThrow('No WebID Authorization header specified.');
|
||||
});
|
||||
|
||||
it('throws an error if a non-WebID Authorization header is specified.', async(): Promise<void> => {
|
||||
const headers = { authorization: 'Other http://alice.example/card#me' };
|
||||
const result = extractor.handleSafe({ headers } as HttpRequest);
|
||||
await expect(result).rejects.toThrow(NotImplementedHttpError);
|
||||
await expect(result).rejects.toThrow('No WebID Authorization header specified.');
|
||||
});
|
||||
|
||||
it('returns the authorization header as WebID if there is one.', async(): Promise<void> => {
|
||||
const headers = { authorization: 'WebID http://alice.example/card#me' };
|
||||
const result = extractor.handleSafe({ headers } as HttpRequest);
|
||||
await expect(result).resolves.toEqual({ webID: 'http://alice.example/card#me' });
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user