mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
68 lines
2.9 KiB
TypeScript
68 lines
2.9 KiB
TypeScript
import fs from 'fs';
|
|
import arrayifyStream from 'arrayify-stream';
|
|
import { RepresentationMetadata } from '../../../../src/ldp/representation/RepresentationMetadata';
|
|
import { ConstantConverter } from '../../../../src/storage/conversion/ConstantConverter';
|
|
|
|
const createReadStream = jest.spyOn(fs, 'createReadStream').mockReturnValue('file contents' as any);
|
|
|
|
describe('A ConstantConverter', (): void => {
|
|
const identifier = { path: 'identifier' };
|
|
|
|
const converter = new ConstantConverter('abc/def/index.html', 'text/html');
|
|
|
|
it('does not support requests without content type preferences.', async(): Promise<void> => {
|
|
const preferences = {};
|
|
const representation = {} as any;
|
|
const args = { identifier, representation, preferences };
|
|
|
|
await expect(converter.canHandle(args)).rejects
|
|
.toThrow('No content type preferences specified');
|
|
});
|
|
|
|
it('does not support requests without matching content type preference.', async(): Promise<void> => {
|
|
const preferences = { type: { 'text/turtle': 1 }};
|
|
const representation = {} as any;
|
|
const args = { identifier, representation, preferences };
|
|
|
|
await expect(converter.canHandle(args)).rejects
|
|
.toThrow('No preference for text/html');
|
|
});
|
|
|
|
it('does not support representations that are already in the right format.', async(): Promise<void> => {
|
|
const preferences = { type: { 'text/html': 1 }};
|
|
const metadata = new RepresentationMetadata({ contentType: 'text/html' });
|
|
const representation = { metadata } as any;
|
|
const args = { identifier, representation, preferences };
|
|
|
|
await expect(converter.canHandle(args)).rejects
|
|
.toThrow('Representation is already text/html');
|
|
});
|
|
|
|
it('supports representations with an unknown content type.', async(): Promise<void> => {
|
|
const preferences = { type: { 'text/html': 1 }};
|
|
const metadata = new RepresentationMetadata();
|
|
const representation = { metadata } as any;
|
|
const args = { identifier, representation, preferences };
|
|
|
|
await expect(converter.canHandle(args)).resolves.toBeUndefined();
|
|
});
|
|
|
|
it('replaces the representation of a supported request.', async(): Promise<void> => {
|
|
const preferences = { type: { 'text/html': 1 }};
|
|
const metadata = new RepresentationMetadata({ contentType: 'text/turtle' });
|
|
const representation = { metadata, data: { destroy: jest.fn() }} as any;
|
|
const args = { identifier, representation, preferences };
|
|
|
|
await expect(converter.canHandle(args)).resolves.toBeUndefined();
|
|
const converted = await converter.handle(args);
|
|
|
|
expect(representation.data.destroy).toHaveBeenCalledTimes(1);
|
|
|
|
expect(createReadStream).toHaveBeenCalledTimes(1);
|
|
expect(createReadStream).toHaveBeenCalledWith('abc/def/index.html', 'utf8');
|
|
|
|
expect(converted.metadata.contentType).toBe('text/html');
|
|
expect(await arrayifyStream(converted.data)).toEqual([ 'file contents' ]);
|
|
});
|
|
});
|