forked from singlesly/bingx-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-bingx.module.spec.ts
More file actions
82 lines (66 loc) · 2.11 KB
/
Copy pathnest-bingx.module.spec.ts
File metadata and controls
82 lines (66 loc) · 2.11 KB
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
78
79
80
81
82
import { Test, TestingModule } from '@nestjs/testing';
import {
HttpRequestExecutor,
NestBingxModule,
RequestExecutorInterface,
} from 'bingx-api/index';
import { BingxApiClient } from 'bingx-api/index';
describe('nest bingx module', () => {
describe('with default http request executor', () => {
let module: TestingModule;
let client: BingxApiClient;
beforeEach(async () => {
module = await Test.createTestingModule({
imports: [NestBingxModule],
}).compile();
client = module.get(BingxApiClient);
});
it('api client initialized', () => {
expect(client).toBeInstanceOf(BingxApiClient);
});
it('default http executor detect', () => {
expect(client['requestExecutor']).toBeInstanceOf(HttpRequestExecutor);
});
});
describe('with default http request executor when configure', () => {
let module: TestingModule;
let client: BingxApiClient;
beforeEach(async () => {
module = await Test.createTestingModule({
imports: [NestBingxModule.configure({})],
}).compile();
client = module.get(BingxApiClient);
});
it('api client initialized', () => {
expect(client).toBeInstanceOf(BingxApiClient);
});
it('default http executor detect', () => {
expect(client['requestExecutor']).toBeInstanceOf(HttpRequestExecutor);
});
});
describe('with custom http executor when configure', () => {
let module: TestingModule;
let client: BingxApiClient;
class TestExecutor implements RequestExecutorInterface {
async execute<T>(): Promise<T> {
return {} as never;
}
}
beforeEach(async () => {
module = await Test.createTestingModule({
imports: [
NestBingxModule.configure({
requestExecutor: TestExecutor,
}),
],
}).compile();
client = module.get(BingxApiClient);
});
it('api client initialized', () => {
expect(client).toBeInstanceOf(BingxApiClient);
});
it('default http provider detect', () => {
expect(client['requestExecutor']).toBeInstanceOf(TestExecutor);
});
});
});