-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
225 lines (218 loc) · 5.2 KB
/
index.js
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import Module from "node:module";
const require = Module.createRequire(import.meta.url);
const { mock, settings } = require('pactum')
/**
* ## Configuration
*
* This helper should be configured in codecept.conf.(js|ts)
*
* @typedef MockServerConfig
* @type {object}
* @prop {number} [port=9393] - Mock server port
* @prop {string} [host="0.0.0.0"] - Mock server host
* @prop {object} [httpsOpts] - key & cert values are the paths to .key and .crt files
*/
let config = {
port: 9393,
host: '0.0.0.0',
httpsOpts: {
key: '',
cert: '',
},
}
/**
* MockServer powered by [pactum](https://www.npmjs.com/package/pactum)
*
* The MockServer Helper in CodeceptJS empowers you to mock any server or service via HTTP or HTTPS, making it an excellent tool for simulating REST endpoints and other HTTP-based APIs.
*
* <!-- configuration -->
*
* #### Examples
*
* You can seamlessly integrate MockServer with other helpers like REST or Playwright. Here's a configuration example inside the `codecept.conf.js` file:
*
* ```javascript
* {
* helpers: {
* REST: {...},
* MockServer: {
* require: '@codeceptjs/pactum-mock-server',
* // default mock server config
* port: 9393,
* host: '0.0.0.0',
* httpsOpts: {
* key: '',
* cert: '',
* },
* },
* }
* }
* ```
*
* #### Adding Interactions
*
* Interactions add behavior to the mock server. Use the `I.addInteractionToMockServer()` method to include interactions. It takes an interaction object as an argument, containing request and response details.
*
* ```javascript
* I.addInteractionToMockServer({
* request: {
* method: 'GET',
* path: '/api/hello'
* },
* response: {
* status: 200,
* body: {
* 'say': 'hello to mock server'
* }
* }
* });
* ```
*
* #### Request Matching
*
* When a real request is sent to the mock server, it matches the received request with the interactions. If a match is found, it returns the specified response; otherwise, a 404 status code is returned.
*
* - Strong match on HTTP Method, Path, Query Params & JSON body.
* - Loose match on Headers.
*
* ##### Strong Match on Query Params
*
* You can send different responses based on query parameters:
*
* ```javascript
* I.addInteractionToMockServer({
* request: {
* method: 'GET',
* path: '/api/users',
* queryParams: {
* id: 1
* }
* },
* response: {
* status: 200,
* body: 'user 1'
* }
* });
*
* I.addInteractionToMockServer({
* request: {
* method: 'GET',
* path: '/api/users',
* queryParams: {
* id: 2
* }
* },
* response: {
* status: 200,
* body: 'user 2'
* }
* });
* ```
*
* - GET to `/api/users?id=1` will return 'user 1'.
* - GET to `/api/users?id=2` will return 'user 2'.
* - For all other requests, it returns a 404 status code.
*
* ##### Loose Match on Body
*
* When `strict` is set to false, it performs a loose match on query params and response body:
*
* ```javascript
* I.addInteractionToMockServer({
* strict: false,
* request: {
* method: 'POST',
* path: '/api/users',
* body: {
* name: 'john'
* }
* },
* response: {
* status: 200
* }
* });
* ```
*
* - POST to `/api/users` with the body containing `name` as 'john' will return a 200 status code.
* - POST to `/api/users` without the `name` property in the body will return a 404 status code.
*
* Happy testing with MockServer in CodeceptJS! 🚀
*
* ## Methods
*/
class MockServer {
constructor(passedConfig) {
settings.setLogLevel('SILENT')
config = { ...passedConfig }
if (global.debugMode) {
settings.setLogLevel('VERBOSE')
}
}
/**
* Start the mock server
* @param {number} [port] start the mock server with given port
*
* @returns void
*/
async startMockServer(port) {
const _config = { ...config }
if (port) _config.port = port
await mock.setDefaults(_config)
await mock.start()
}
/**
* Stop the mock server
*
* @returns void
*
*/
async stopMockServer() {
await mock.stop()
}
/**
* An interaction adds behavior to the mock server
*
*
* ```js
* I.addInteractionToMockServer({
* request: {
* method: 'GET',
* path: '/api/hello'
* },
* response: {
* status: 200,
* body: {
* 'say': 'hello to mock server'
* }
* }
* });
* ```
* ```js
* // with query params
* I.addInteractionToMockServer({
* request: {
* method: 'GET',
* path: '/api/hello',
* queryParams: {
* id: 2
* }
* },
* response: {
* status: 200,
* body: {
* 'say': 'hello to mock server'
* }
* }
* });
* ```
*
* @param {object} interaction add behavior to the mock server
*
* @returns void
*
*/
async addInteractionToMockServer(interaction) {
await mock.addInteraction(interaction)
}
}
export default MockServer