import { namedNode, triple } from '@rdfjs/data-model'; import rdfSerializer from 'rdf-serialize'; import stringifyStream from 'stream-to-string'; import streamifyArray from 'streamify-array'; import type { Representation } from '../../../../src/ldp/representation/Representation'; import { RepresentationMetadata } from '../../../../src/ldp/representation/RepresentationMetadata'; import type { RepresentationPreferences } from '../../../../src/ldp/representation/RepresentationPreferences'; import type { ResourceIdentifier } from '../../../../src/ldp/representation/ResourceIdentifier'; import { QuadToRdfConverter } from '../../../../src/storage/conversion/QuadToRdfConverter'; import { INTERNAL_QUADS } from '../../../../src/util/ContentTypes'; import { CONTENT_TYPE } from '../../../../src/util/UriConstants'; describe('A QuadToRdfConverter', (): void => { const converter = new QuadToRdfConverter(); const identifier: ResourceIdentifier = { path: 'path' }; const metadata = new RepresentationMetadata({ [CONTENT_TYPE]: INTERNAL_QUADS }); it('supports parsing quads.', async(): Promise => { await expect(converter.getInputTypes()).resolves.toEqual({ [INTERNAL_QUADS]: 1 }); }); it('supports serializing as the same types as rdfSerializer.', async(): Promise => { await expect(converter.getOutputTypes()).resolves.toEqual(await rdfSerializer.getContentTypesPrioritized()); }); it('can handle quad to turtle conversions.', async(): Promise => { const representation = { metadata } as Representation; const preferences: RepresentationPreferences = { type: [{ value: 'text/turtle', weight: 1 }]}; await expect(converter.canHandle({ identifier, representation, preferences })).resolves.toBeUndefined(); }); it('can handle quad to JSON-LD conversions.', async(): Promise => { const representation = { metadata } as Representation; const preferences: RepresentationPreferences = { type: [{ value: 'application/ld+json', weight: 1 }]}; await expect(converter.canHandle({ identifier, representation, preferences })).resolves.toBeUndefined(); }); it('converts quads to turtle.', async(): Promise => { const representation = { data: streamifyArray([ triple( namedNode('http://test.com/s'), namedNode('http://test.com/p'), namedNode('http://test.com/o'), ) ]), metadata, } as Representation; const preferences: RepresentationPreferences = { type: [{ value: 'text/turtle', weight: 1 }]}; const result = await converter.handle({ identifier, representation, preferences }); expect(result).toMatchObject({ binary: true, metadata: expect.any(RepresentationMetadata), }); expect(result.metadata.contentType).toEqual('text/turtle'); await expect(stringifyStream(result.data)).resolves.toEqual( ` . `, ); }); it('converts quads to JSON-LD.', async(): Promise => { metadata.contentType = INTERNAL_QUADS; const representation = { data: streamifyArray([ triple( namedNode('http://test.com/s'), namedNode('http://test.com/p'), namedNode('http://test.com/o'), ) ]), metadata, } as Representation; const preferences: RepresentationPreferences = { type: [{ value: 'application/ld+json', weight: 1 }]}; const result = await converter.handle({ identifier, representation, preferences }); expect(result).toMatchObject({ binary: true, metadata: expect.any(RepresentationMetadata), }); expect(result.metadata.contentType).toEqual('application/ld+json'); await expect(stringifyStream(result.data)).resolves.toEqual( `[ { "@id": "http://test.com/s", "http://test.com/p": [ { "@id": "http://test.com/o" } ] } ] `, ); }); });