mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
92 lines
3.8 KiB
TypeScript
92 lines
3.8 KiB
TypeScript
import fetch from '@rdfjs/fetch';
|
|
import type { DatasetResponse } from '@rdfjs/fetch-lite';
|
|
import { DataFactory } from 'n3';
|
|
import type { Quad } from 'n3';
|
|
import type { DatasetCore } from 'rdf-js';
|
|
import { v4 } from 'uuid';
|
|
import { TokenOwnershipValidator } from '../../../../src/identity/ownership/TokenOwnershipValidator';
|
|
import type { ExpiringStorage } from '../../../../src/storage/keyvalue/ExpiringStorage';
|
|
import { SOLID } from '../../../../src/util/Vocabularies';
|
|
const { literal, namedNode, quad } = DataFactory;
|
|
|
|
jest.mock('@rdfjs/fetch');
|
|
jest.mock('uuid');
|
|
|
|
function quadToString(qq: Quad): string {
|
|
const subPred = `<${qq.subject.value}> <${qq.predicate.value}>`;
|
|
if (qq.object.termType === 'Literal') {
|
|
return `${subPred} "${qq.object.value}"`;
|
|
}
|
|
return `${subPred} <${qq.object.value}>`;
|
|
}
|
|
|
|
describe('A TokenOwnershipValidator', (): void => {
|
|
const fetchMock: jest.Mock = fetch as any;
|
|
const webId = 'http://alice.test.com/#me';
|
|
const token = 'randomlyGeneratedToken';
|
|
let rawResponse: DatasetResponse<DatasetCore>;
|
|
let dataset: DatasetCore;
|
|
let triples: Quad[];
|
|
const tokenTriple = quad(namedNode(webId), SOLID.terms.oidcIssuerRegistrationToken, literal(token));
|
|
let storage: ExpiringStorage<string, string>;
|
|
let validator: TokenOwnershipValidator;
|
|
|
|
beforeEach(async(): Promise<void> => {
|
|
const now = Date.now();
|
|
jest.spyOn(Date, 'now').mockReturnValue(now);
|
|
(v4 as jest.Mock).mockReturnValue(token);
|
|
triples = [];
|
|
|
|
dataset = {
|
|
has: (qq: Quad): boolean => triples.some((triple): boolean => triple.equals(qq)),
|
|
} as any;
|
|
|
|
rawResponse = {
|
|
dataset: async(): Promise<DatasetCore> => dataset,
|
|
} as any;
|
|
|
|
const map = new Map<string, any>();
|
|
storage = {
|
|
get: jest.fn().mockImplementation((key: string): any => map.get(key)),
|
|
set: jest.fn().mockImplementation((key: string, value: any): any => map.set(key, value)),
|
|
delete: jest.fn().mockImplementation((key: string): any => map.delete(key)),
|
|
} as any;
|
|
|
|
fetchMock.mockReturnValue(rawResponse);
|
|
|
|
validator = new TokenOwnershipValidator(storage);
|
|
});
|
|
|
|
it('errors if no token is stored in the storage.', async(): Promise<void> => {
|
|
// Even if the token is in the WebId, it will error since it's not in the storage
|
|
triples = [ tokenTriple ];
|
|
await expect(validator.handle({ webId })).rejects.toThrow(quadToString(tokenTriple));
|
|
expect(fetch).toHaveBeenCalledTimes(0);
|
|
});
|
|
|
|
it('errors if the expected triple is missing.', async(): Promise<void> => {
|
|
// First call will add the token to the storage
|
|
await expect(validator.handle({ webId })).rejects.toThrow(quadToString(tokenTriple));
|
|
expect(fetch).toHaveBeenCalledTimes(0);
|
|
// Second call will fetch the WebId
|
|
await expect(validator.handle({ webId })).rejects.toThrow(quadToString(tokenTriple));
|
|
expect(fetch).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('resolves if the WebId contains the verification triple.', async(): Promise<void> => {
|
|
triples = [ tokenTriple ];
|
|
// First call will add the token to the storage
|
|
await expect(validator.handle({ webId })).rejects.toThrow(quadToString(tokenTriple));
|
|
// Second call will succeed since it has the verification triple
|
|
await expect(validator.handle({ webId })).resolves.toBeUndefined();
|
|
});
|
|
|
|
it('fails if the WebId contains the wrong verification triple.', async(): Promise<void> => {
|
|
triples = [ quad(namedNode(webId), SOLID.terms.oidcIssuerRegistrationToken, literal('wrongToken')) ];
|
|
// First call will add the token to the storage
|
|
await expect(validator.handle({ webId })).rejects.toThrow(quadToString(tokenTriple));
|
|
// Second call will fail since it has the wrong verification triple
|
|
await expect(validator.handle({ webId })).rejects.toThrow(quadToString(tokenTriple));
|
|
});
|
|
});
|