-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
202 lines (192 loc) · 4.8 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
import { http, HttpResponse } from 'msw'
import { setupServer } from 'msw/node'
/**
* ## 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="mock-service.test"] - Mock server host
*/
let config = {
port: 9393,
host: 'mock-service.test',
}
let server;
let handlers = [];
let response = {};
/**
* Mock Server - powered by [msw](https://www.npmjs.com/package/msw)
*
* 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/msw-mock-server',
* // default mock server config
* port: 9393,
* host: 'mock-service.test',
* },
* }
* }
* ```
*
* #### 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.
*
* ##### 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.
*
* Happy testing with MockServer in CodeceptJS! 🚀
*
* ## Methods
*/
class MockService {
constructor(passedConfig) {
config = Object.assign(config, passedConfig)
}
/**
* Start the mock server
*
* @returns void
*/
async startMockServer() {
server = setupServer()
server.listen()
}
/**
* Stop the mock server
*
* @returns void
*
*/
async stopMockServer() {
await server.close()
}
/**
* 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 {CodeceptJS.MockInteraction|object} interaction add behavior to the mock server
* @returns void
*
*/
async addInteractionToMockServer(interaction) {
let _path = `${config.host}${interaction.request.path}`
let _queryParams = '?'
if (interaction.request.queryParams) {
for (const [key, value] of Object.entries(interaction.request.queryParams)) {
_queryParams += `${key}=${value}`
}
}
response[_queryParams] = interaction.response.body
handlers.push(http[interaction.request.method.toLowerCase()](`${_path}`, ({ request }) => {
if (interaction.request.queryParams) {
const url = new URL(request.url)
return HttpResponse.json(response[url.search])
}
return HttpResponse.json(interaction.response.body)
}))
await server.use(...handlers)
}
}
export default MockService