-
Notifications
You must be signed in to change notification settings - Fork 405
/
Copy pathspecial-result-send.spec.ts
77 lines (66 loc) · 2.71 KB
/
special-result-send.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { createReadStream } from 'fs';
import { Server as HttpServer } from 'http';
import HttpStatusCodes from 'http-status-codes';
import * as path from 'path';
import { ContentType } from '../../src/decorator/ContentType';
import { Get } from '../../src/decorator/Get';
import { JsonController } from '../../src/decorator/JsonController';
import { createExpressServer, getMetadataArgsStorage } from '../../src/index';
import { axios } from '../utilities/axios';
import DoneCallback = jest.DoneCallback;
import ReadableStream = NodeJS.ReadableStream;
describe(``, () => {
let expressServer: HttpServer;
describe('special result value treatment', () => {
const rawData = [0xff, 0x66, 0xaa, 0xcc];
beforeAll((done: DoneCallback) => {
getMetadataArgsStorage().reset();
@JsonController()
class HandledController {
@Get('/stream')
@ContentType('text/plain')
getStream(): ReadableStream {
return createReadStream(path.resolve(__dirname, '../resources/sample-text-file.txt'));
}
@Get('/buffer')
@ContentType('application/octet-stream')
getBuffer(): Buffer {
return Buffer.from(rawData);
}
@Get('/array')
@ContentType('application/octet-stream')
getUIntArray(): Uint8Array {
return new Uint8Array(rawData);
}
}
expressServer = createExpressServer().listen(3001, done);
});
afterAll((done: DoneCallback) => {
expressServer.close(done);
});
it('should pipe stream to response', async () => {
// expect.assertions(3);
expect.assertions(2);
const response = await axios.get('/stream', { responseType: 'stream' });
// TODO: Fix me, I believe RC is working ok, I don't know how to get the buffer
// of the response
// expect(response.data).toBe('Hello World!');
expect(response.status).toEqual(HttpStatusCodes.OK);
expect(response.headers['content-type']).toEqual('text/plain; charset=utf-8');
});
it('should send raw binary data from Buffer', async () => {
expect.assertions(3);
const response = await axios.get('/buffer');
expect(response.status).toEqual(HttpStatusCodes.OK);
expect(response.headers['content-type']).toEqual('application/octet-stream');
expect(response.data).toEqual(Buffer.from(rawData).toString());
});
it('should send raw binary data from UIntArray', async () => {
expect.assertions(3);
const response = await axios.get('/array');
expect(response.status).toEqual(HttpStatusCodes.OK);
expect(response.headers['content-type']).toEqual('application/octet-stream');
expect(response.data).toEqual(Buffer.from(rawData).toString());
});
});
});