mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
35 lines
1.9 KiB
TypeScript
35 lines
1.9 KiB
TypeScript
import { CredentialGroup } from '../../../src/authentication/Credentials';
|
|
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 specified.', async(): Promise<void> => {
|
|
const headers = { authorization: 'WebID http://alice.example/card#me' };
|
|
const result = extractor.handleSafe({ headers } as HttpRequest);
|
|
await expect(result).resolves.toEqual({ [CredentialGroup.agent]: { webId: 'http://alice.example/card#me' }});
|
|
});
|
|
|
|
it('returns the authorization header as WebID if specified with a lowercase token.', async(): Promise<void> => {
|
|
const headers = { authorization: 'webid http://alice.example/card#me' };
|
|
const result = extractor.handleSafe({ headers } as HttpRequest);
|
|
await expect(result).resolves.toEqual({ [CredentialGroup.agent]: { webId: 'http://alice.example/card#me' }});
|
|
});
|
|
});
|