mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00

The previous package was outdated, preventing us from updating TS. This one also lints YAML and JSON, and applies many more rules to the test files, explaining all the changes in this PR.
73 lines
3.2 KiB
TypeScript
73 lines
3.2 KiB
TypeScript
import 'jest-rdf';
|
|
import { DataFactory } from 'n3';
|
|
import type { Quad } from 'rdf-js';
|
|
import { BasicRepresentation } from '../../../../src/http/representation/BasicRepresentation';
|
|
import type { Patch } from '../../../../src/http/representation/Patch';
|
|
import type { RdfDatasetRepresentation } from '../../../../src/http/representation/RdfDatasetRepresentation';
|
|
import type { Representation } from '../../../../src/http/representation/Representation';
|
|
import type { ResourceIdentifier } from '../../../../src/http/representation/ResourceIdentifier';
|
|
import { RdfPatcher } from '../../../../src/storage/patch/RdfPatcher';
|
|
import type { RepresentationPatcher,
|
|
RepresentationPatcherInput } from '../../../../src/storage/patch/RepresentationPatcher';
|
|
import { InternalServerError } from '../../../../src/util/errors/InternalServerError';
|
|
import { readableToQuads } from '../../../../src/util/StreamUtil';
|
|
|
|
const { quad, namedNode } = DataFactory;
|
|
|
|
describe('An RdfPatcher,', (): void => {
|
|
let patcher: jest.Mocked<RepresentationPatcher<RdfDatasetRepresentation>>;
|
|
let startQuads: Quad[];
|
|
let rdfPatcher: RdfPatcher;
|
|
let identifier: ResourceIdentifier;
|
|
let representation: Representation;
|
|
let patch: Patch;
|
|
|
|
beforeEach((): void => {
|
|
startQuads = [ quad(
|
|
namedNode('http://test.com/startS1'),
|
|
namedNode('http://test.com/startP1'),
|
|
namedNode('http://test.com/startO1'),
|
|
), quad(
|
|
namedNode('http://test.com/startS2'),
|
|
namedNode('http://test.com/startP2'),
|
|
namedNode('http://test.com/startO2'),
|
|
) ];
|
|
patcher = {
|
|
canHandle: jest.fn(),
|
|
handle: jest.fn(),
|
|
handleSafe: jest.fn(),
|
|
};
|
|
patcher.handle.mockImplementation(
|
|
async(input: RepresentationPatcherInput<RdfDatasetRepresentation>):
|
|
Promise<RdfDatasetRepresentation> => Promise.resolve(input.representation!),
|
|
);
|
|
|
|
rdfPatcher = new RdfPatcher(patcher);
|
|
representation = new BasicRepresentation(startQuads, 'internal/quads');
|
|
});
|
|
|
|
it('errors when the representation is of the wrong content type.', async(): Promise<void> => {
|
|
representation = new BasicRepresentation(startQuads, 'text/turtle');
|
|
|
|
await expect(rdfPatcher.handleSafe({ identifier, patch, representation })).rejects.toThrow(InternalServerError);
|
|
await expect(rdfPatcher.handleSafe({ identifier, patch, representation })).rejects
|
|
.toThrow('Quad stream was expected for patching.');
|
|
expect(patcher.handle).toHaveBeenCalledTimes(0);
|
|
});
|
|
|
|
it('uses a new store when there is no representation to patch.', async(): Promise<void> => {
|
|
const result = await rdfPatcher.handleSafe({ identifier, patch });
|
|
const store = await readableToQuads(result.data);
|
|
expect(store).toBeRdfIsomorphic([]);
|
|
expect(patcher.handle).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('transforms the representation to a store to patch.', async(): Promise<void> => {
|
|
const result = await rdfPatcher.handleSafe({ identifier, patch, representation });
|
|
const store = await readableToQuads(result.data);
|
|
expect(store).toBeRdfIsomorphic(startQuads);
|
|
expect(patcher.handle).toHaveBeenCalledTimes(1);
|
|
expect(patcher.handle).toHaveBeenLastCalledWith({ identifier, patch, representation });
|
|
});
|
|
});
|