import arrayifyStream from 'arrayify-stream'; import streamifyArray from 'streamify-array'; import { RawBodyParser } from '../../../../src/ldp/http/RawBodyParser'; import { RepresentationMetadata } from '../../../../src/ldp/representation/RepresentationMetadata'; import { HttpRequest } from '../../../../src/server/HttpRequest'; import { UnsupportedHttpError } from '../../../../src/util/errors/UnsupportedHttpError'; import 'jest-rdf'; import { HTTP_SLUG, RDF_TYPE } from '../../../../src/util/MetadataTypes'; describe('A RawBodyparser', (): void => { const bodyParser = new RawBodyParser(); it('accepts all input.', async(): Promise => { await expect(bodyParser.canHandle()).resolves.toBeUndefined(); }); it('returns empty output if there was no content length or transfer encoding.', async(): Promise => { const input = streamifyArray([ '' ]) as HttpRequest; input.headers = {}; await expect(bodyParser.handle(input)).resolves.toBeUndefined(); }); it('errors when a content length was specified without content type.', async(): Promise => { const input = streamifyArray([ 'abc' ]) as HttpRequest; input.headers = { 'content-length': '0' }; await expect(bodyParser.handle(input)).rejects .toThrow('An HTTP request body was passed without Content-Type header'); }); it('errors when a transfer encoding was specified without content type.', async(): Promise => { const input = streamifyArray([ 'abc' ]) as HttpRequest; input.headers = { 'transfer-encoding': 'chunked' }; await expect(bodyParser.handle(input)).rejects .toThrow('An HTTP request body was passed without Content-Type header'); }); it('returns a Representation if there was data.', async(): Promise => { const input = streamifyArray([ ' .' ]) as HttpRequest; input.headers = { 'transfer-encoding': 'chunked', 'content-type': 'text/turtle' }; const result = (await bodyParser.handle(input))!; expect(result).toEqual({ binary: true, data: input, metadata: expect.any(RepresentationMetadata), }); expect(result.metadata.contentType).toEqual('text/turtle'); await expect(arrayifyStream(result.data)).resolves.toEqual( [ ' .' ], ); }); it('adds the slug header to the metadata.', async(): Promise => { const input = {} as HttpRequest; input.headers = { 'transfer-encoding': 'chunked', 'content-type': 'text/turtle', slug: 'slugText' }; const result = (await bodyParser.handle(input))!; expect(result.metadata.contentType).toEqual('text/turtle'); expect(result.metadata.get(HTTP_SLUG)?.value).toEqual('slugText'); }); it('errors if there are multiple slugs.', async(): Promise => { const input = {} as HttpRequest; input.headers = { 'transfer-encoding': 'chunked', 'content-type': 'text/turtle', slug: [ 'slugTextA', 'slugTextB' ]}; await expect(bodyParser.handle(input)).rejects.toThrow(UnsupportedHttpError); }); it('adds the link type headers to the metadata.', async(): Promise => { const input = {} as HttpRequest; input.headers = { 'transfer-encoding': 'chunked', 'content-type': 'text/turtle', link: '; rel="type"' }; const result = (await bodyParser.handle(input))!; expect(result.metadata.contentType).toEqual('text/turtle'); expect(result.metadata.get(RDF_TYPE)?.value).toEqual('http://www.w3.org/ns/ldp#Container'); }); it('ignores unknown link headers.', async(): Promise => { const input = {} as HttpRequest; input.headers = { 'transfer-encoding': 'chunked', 'content-type': 'text/turtle', link: [ '', 'badLink' ]}; const result = (await bodyParser.handle(input))!; expect(result.metadata.quads()).toHaveLength(1); expect(result.metadata.contentType).toEqual('text/turtle'); }); });