CommunitySolidServer/test/unit/storage/conversion/QuadToRdfConverter.test.ts
Joachim Van Herwegen c5052625d1 Merge branch 'main' into versions/3.0.0
# Conflicts:
#	package-lock.json
#	package.json
#	src/storage/patch/SparqlUpdatePatcher.ts
#	test/unit/init/AppRunner.test.ts
#	test/unit/util/QuadUtil.test.ts
2022-02-11 15:30:45 +01:00

133 lines
5.5 KiB
TypeScript

import { DataFactory } from 'n3';
import rdfSerializer from 'rdf-serialize';
import { BasicRepresentation } from '../../../../src/http/representation/BasicRepresentation';
import type { Representation } from '../../../../src/http/representation/Representation';
import { RepresentationMetadata } from '../../../../src/http/representation/RepresentationMetadata';
import type { RepresentationPreferences } from '../../../../src/http/representation/RepresentationPreferences';
import type { ResourceIdentifier } from '../../../../src/http/representation/ResourceIdentifier';
import { QuadToRdfConverter } from '../../../../src/storage/conversion/QuadToRdfConverter';
import { INTERNAL_QUADS } from '../../../../src/util/ContentTypes';
import { readableToString } from '../../../../src/util/StreamUtil';
import { DC, PREFERRED_PREFIX_TERM } from '../../../../src/util/Vocabularies';
const { namedNode, triple } = DataFactory;
describe('A QuadToRdfConverter', (): void => {
const converter = new QuadToRdfConverter();
const identifier: ResourceIdentifier = { path: 'http://example.org/foo/bar/' };
let metadata: RepresentationMetadata;
beforeEach((): void => {
metadata = new RepresentationMetadata(identifier, INTERNAL_QUADS);
});
it('defaults to rdfSerializer preferences when given no output preferences.', async(): Promise<void> => {
await expect(new QuadToRdfConverter().getOutputTypes(INTERNAL_QUADS))
.resolves.toEqual(await rdfSerializer.getContentTypesPrioritized());
});
it('supports overriding output preferences.', async(): Promise<void> => {
const outputPreferences = { 'text/turtle': 1 };
await expect(new QuadToRdfConverter({ outputPreferences }).getOutputTypes(INTERNAL_QUADS))
.resolves.toEqual(outputPreferences);
});
it('can handle quad to Turtle conversions.', async(): Promise<void> => {
const representation = { metadata } as Representation;
const preferences: RepresentationPreferences = { type: { 'text/turtle': 1 }};
await expect(converter.canHandle({ identifier, representation, preferences })).resolves.toBeUndefined();
});
it('can handle quad to JSON-LD conversions.', async(): Promise<void> => {
const representation = { metadata } as Representation;
const preferences: RepresentationPreferences = { type: { 'application/ld+json': 1 }};
await expect(converter.canHandle({ identifier, representation, preferences })).resolves.toBeUndefined();
});
it('converts quads to Turtle.', async(): Promise<void> => {
const representation = new BasicRepresentation([ triple(
namedNode('http://test.com/s'),
namedNode('http://test.com/p'),
namedNode('http://test.com/o'),
) ],
metadata);
const preferences: RepresentationPreferences = { type: { 'text/turtle': 1 }};
const result = await converter.handle({ identifier, representation, preferences });
expect(result).toMatchObject({
binary: true,
metadata: expect.any(RepresentationMetadata),
});
expect(result.metadata.contentType).toBe('text/turtle');
await expect(readableToString(result.data)).resolves.toBe(
`<http://test.com/s> <http://test.com/p> <http://test.com/o>.
`,
);
});
it('converts quads with prefixes to Turtle.', async(): Promise<void> => {
metadata.addQuad(DC.terms.namespace, PREFERRED_PREFIX_TERM, 'dc');
metadata.addQuad('http://test.com/', PREFERRED_PREFIX_TERM, 'test');
const representation = new BasicRepresentation([ triple(
namedNode('http://test.com/s'),
DC.terms.modified,
namedNode('http://test.com/o'),
) ],
metadata);
const preferences: RepresentationPreferences = { type: { 'text/turtle': 1 }};
const result = await converter.handle({ identifier, representation, preferences });
expect(result.metadata.contentType).toBe('text/turtle');
await expect(readableToString(result.data)).resolves.toBe(
`@prefix dc: <http://purl.org/dc/terms/>.
@prefix test: <http://test.com/>.
test:s dc:modified test:o.
`,
);
});
it('uses the base IRI when converting quads to Turtle.', async(): Promise<void> => {
const representation = new BasicRepresentation([ triple(
namedNode('http://example.org/foo/bar/'),
namedNode('http://example.org/foo/bar/#abc'),
namedNode('http://example.org/foo/bar/def/ghi'),
) ],
metadata);
const preferences: RepresentationPreferences = { type: { 'text/turtle': 1 }};
const result = await converter.handle({ identifier, representation, preferences });
expect(result.metadata.contentType).toBe('text/turtle');
await expect(readableToString(result.data)).resolves.toBe(
`<> <#abc> <def/ghi>.
`,
);
});
it('converts quads to JSON-LD.', async(): Promise<void> => {
metadata.contentType = INTERNAL_QUADS;
const representation = new BasicRepresentation([ triple(
namedNode('http://test.com/s'),
namedNode('http://test.com/p'),
namedNode('http://test.com/o'),
) ],
metadata);
const preferences: RepresentationPreferences = { type: { 'application/ld+json': 1 }};
const result = await converter.handle({ identifier, representation, preferences });
expect(result).toMatchObject({
binary: true,
metadata: expect.any(RepresentationMetadata),
});
expect(result.metadata.contentType).toBe('application/ld+json');
await expect(readableToString(result.data)).resolves.toBe(
`[
{
"@id": "http://test.com/s",
"http://test.com/p": [
{
"@id": "http://test.com/o"
}
]
}
]
`,
);
});
});