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 => { 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 => { 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 => { 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 => { 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' }}); }); });