mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
60 lines
2.8 KiB
TypeScript
60 lines
2.8 KiB
TypeScript
import { Representation } from '../../../../src/ldp/representation/Representation';
|
|
import { RepresentationMetadata } from '../../../../src/ldp/representation/RepresentationMetadata';
|
|
import { RepresentationPreferences } from '../../../../src/ldp/representation/RepresentationPreferences';
|
|
import { ResourceIdentifier } from '../../../../src/ldp/representation/ResourceIdentifier';
|
|
import { checkRequest, matchingTypes } from '../../../../src/storage/conversion/ConversionUtil';
|
|
|
|
describe('A ConversionUtil', (): void => {
|
|
const identifier: ResourceIdentifier = { path: 'path' };
|
|
let representation: Representation;
|
|
let metadata: RepresentationMetadata;
|
|
|
|
beforeEach(async(): Promise<void> => {
|
|
metadata = new RepresentationMetadata();
|
|
representation = { metadata } as Representation;
|
|
});
|
|
|
|
describe('#checkRequest', (): void => {
|
|
it('requires an input type.', async(): Promise<void> => {
|
|
const preferences: RepresentationPreferences = {};
|
|
expect((): any => checkRequest({ identifier, representation, preferences }, [ '*/*' ], [ '*/*' ]))
|
|
.toThrow('Input type required for conversion.');
|
|
});
|
|
|
|
it('requires a matching input type.', async(): Promise<void> => {
|
|
metadata.contentType = 'a/x';
|
|
const preferences: RepresentationPreferences = { type: [{ value: 'b/x', weight: 1 }]};
|
|
expect((): any => checkRequest({ identifier, representation, preferences }, [ 'c/x' ], [ '*/*' ]))
|
|
.toThrow('Can only convert from c/x to */*.');
|
|
});
|
|
|
|
it('requires a matching output type.', async(): Promise<void> => {
|
|
metadata.contentType = 'a/x';
|
|
const preferences: RepresentationPreferences = { type: [{ value: 'b/x', weight: 1 }]};
|
|
expect((): any => checkRequest({ identifier, representation, preferences }, [ '*/*' ], [ 'c/x' ]))
|
|
.toThrow('Can only convert from */* to c/x.');
|
|
});
|
|
|
|
it('succeeds with a valid input and output type.', async(): Promise<void> => {
|
|
metadata.contentType = 'a/x';
|
|
const preferences: RepresentationPreferences = { type: [{ value: 'b/x', weight: 1 }]};
|
|
expect(checkRequest({ identifier, representation, preferences }, [ '*/*' ], [ '*/*' ]))
|
|
.toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('#matchingTypes', (): void => {
|
|
it('requires type preferences.', async(): Promise<void> => {
|
|
const preferences: RepresentationPreferences = {};
|
|
expect((): any => matchingTypes(preferences, [ '*/*' ]))
|
|
.toThrow('Output type required for conversion.');
|
|
});
|
|
|
|
it('returns matching types if weight > 0.', async(): Promise<void> => {
|
|
const preferences: RepresentationPreferences = { type:
|
|
[{ value: 'a/x', weight: 1 }, { value: 'b/x', weight: 0.5 }, { value: 'c/x', weight: 0 }]};
|
|
expect(matchingTypes(preferences, [ 'b/x', 'c/x' ])).toEqual([{ value: 'b/x', weight: 0.5 }]);
|
|
});
|
|
});
|
|
});
|