-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathhttp.spec.ts
144 lines (132 loc) · 3.99 KB
/
http.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
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
import { http, HttpResponse, delay } from 'msw';
import { expect, test } from '../test';
test.describe.parallel('HTTP example: users list', () => {
test('should use the default handlers without requiring handlers to be specified on a per-test basis', async ({
page,
}) => {
await page.goto('/users');
await expect(page.locator('text="Alessandro Metcalfe"')).toBeVisible();
});
test('should allow mocks to be overridden on a per test basis', async ({
page,
worker,
}) => {
await worker.use(
http.get('/api/users', async () => {
await delay(250);
return new HttpResponse(null, {
status: 403,
});
}),
);
await page.goto('/users');
await expect(page.locator('text="Failed to load users"')).toBeVisible();
await expect(page.locator('text="Alessandro Metcalfe"')).toBeHidden();
});
test('should allow mock handlers to be reset', async ({ page, worker }) => {
// Set the status code to 500 temporarily
await worker.use(
http.get('/api/users', async () => {
await delay(250);
return HttpResponse.json(null, {
status: 500,
});
}),
);
// Reset the handlers so that we go back to using the default ones
await worker.resetHandlers();
await page.goto('/users');
await expect(page.locator('text="Alessandro Metcalfe"')).toBeVisible();
});
test('should allow multiple mocks for the same url with different methods', async ({
page,
worker,
}) => {
await worker.use(
http.put('/api/users', () =>
HttpResponse.json(null, {
status: 200,
}),
),
http.get('/api/users', () =>
HttpResponse.json([
{
id: 'fake',
firstName: 'Potato',
lastName: 'McTaterson',
},
]),
),
http.patch('/api/users', () => HttpResponse.json(null, { status: 200 })),
http.delete('/api/users', () => HttpResponse.json(null, { status: 200 })),
);
await page.goto('/users');
await expect(page.locator('text="Potato McTaterson"')).toBeVisible();
});
test('should allow regex patterns to be used for matching the request path', async ({
page,
worker,
}) => {
await worker.use(
http.get(/\/a.{1}i\/us[a-z]{2}s/, () =>
HttpResponse.json([
{
id: 'regex',
firstName: 'Regular',
lastName: 'Expression',
},
]),
),
);
await page.goto('/users');
await expect(page.locator('text="Regular Expression"')).toBeVisible();
});
test('should allow navigating to a specific user page without overriding mocks', async ({
page,
}) => {
await page.goto('/users/6e369942-6b5d-4159-9b39-729646549183');
await expect(
page.locator('text="[email protected]"'),
).toBeVisible();
});
test('should allow paths with route parameters to be mocked', async ({
page,
worker,
}) => {
await worker.use(
http.get('/api/users/:userId', () =>
HttpResponse.json({
id: 'testmytestface',
firstName: 'Testy',
lastName: 'Mctestface',
dob: '1969-6-9',
email: '[email protected]',
address: '111 Testy Way',
phoneNumber: '(123) 456-7890',
}),
),
);
await page.goto('/users/testmytestface');
await expect(page.locator('text="[email protected]"')).toBeVisible();
});
test('should allow paths with route with `*` to be mocked', async ({
page,
worker,
}) => {
await worker.use(
http.get('/a*i/us*/:userId', () =>
HttpResponse.json({
id: 'testmytestface',
firstName: 'Testy',
lastName: 'Mctestface',
dob: '1969-6-9',
email: '[email protected]',
address: '111 Testy Way',
phoneNumber: '(123) 456-7890',
}),
),
);
await page.goto('/users/testmytestface');
await expect(page.locator('text="[email protected]"')).toBeVisible();
});
});