-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
exit-code.spec.ts
209 lines (192 loc) · 6.97 KB
/
exit-code.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
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
/**
* Copyright (c) Microsoft Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { test, expect } from './playwright-test-fixtures';
function monotonicTime(): number {
const [seconds, nanoseconds] = process.hrtime();
return seconds * 1000 + (nanoseconds / 1000000 | 0);
}
test('should collect stdio', async ({ runInlineTest }) => {
const { exitCode, report } = await runInlineTest({
'stdio.spec.js': `
import { test, expect } from '@playwright/test';
test('stdio', () => {
process.stdout.write('stdout text');
process.stdout.write(Buffer.from('stdout buffer'));
process.stderr.write('stderr text');
process.stderr.write(Buffer.from('stderr buffer'));
});
`
});
expect(exitCode).toBe(0);
const testResult = report.suites[0].specs[0].tests[0].results[0];
const { stdout, stderr } = testResult;
expect(stdout).toEqual([{ text: 'stdout text' }, { buffer: Buffer.from('stdout buffer').toString('base64') }]);
expect(stderr).toEqual([{ text: 'stderr text' }, { buffer: Buffer.from('stderr buffer').toString('base64') }]);
});
test('should collect stdio from forked process', async ({ runInlineTest }) => {
const { exitCode, report } = await runInlineTest({
'stdio.spec.js': `
import { test } from '@playwright/test';
import { fork } from 'child_process';
test('stdio', async () => {
const child = fork('fork.js');
await new Promise((resolve) => child.on('exit', (code) => resolve(code)));
});
`,
'fork.js': `
process.stdout.write('stdout text');
process.stdout.write(Buffer.from('stdout buffer'));
process.stderr.write('stderr text');
process.stderr.write(Buffer.from('stderr buffer'));
`
});
expect(exitCode).toBe(0);
const testResult = report.suites[0].specs[0].tests[0].results[0];
const { stdout, stderr } = testResult;
expect(stdout.map(e => Buffer.from((e as any).buffer, 'base64').toString()).join('')).toEqual('stdout textstdout buffer');
expect(stderr.map(e => Buffer.from((e as any).buffer, 'base64').toString()).join('')).toEqual('stderr textstderr buffer');
});
test('should work with not defined errors', async ({ runInlineTest }) => {
const result = await runInlineTest({
'is-not-defined-error.spec.ts': `
foo();
`
});
expect(result.output).toContain('foo is not defined');
expect(result.exitCode).toBe(1);
});
test('should work with typescript', async ({ runInlineTest }) => {
const result = await runInlineTest({
'global-foo.js': `
global.foo = true;
module.exports = {
abc: 123
};
`,
'typescript.spec.ts': `
import './global-foo';
import { test, expect } from '@playwright/test';
test('should find global foo', () => {
expect(global['foo']).toBe(true);
});
test('should work with type annotations', () => {
const x: number = 5;
expect(x).toBe(5);
});
`
});
expect(result.exitCode).toBe(0);
});
test('should repeat each', async ({ runInlineTest }) => {
const { exitCode, report, passed } = await runInlineTest({
'one-success.spec.js': `
import { test, expect } from '@playwright/test';
test('succeeds', () => {
expect(1 + 1).toBe(2);
});
`
}, { 'repeat-each': 3 });
expect(exitCode).toBe(0);
expect(passed).toBe(3);
expect(report.suites.length).toBe(1);
expect(report.suites[0].specs.length).toBe(1);
expect(report.suites[0].specs[0].tests.length).toBe(3);
});
test('should allow flaky', async ({ runInlineTest }) => {
const result = await runInlineTest({
'a.test.js': `
import { test, expect } from '@playwright/test';
test('flake', async ({}, testInfo) => {
expect(testInfo.retry).toBe(1);
});
`,
}, { retries: 1 });
expect(result.exitCode).toBe(0);
expect(result.flaky).toBe(1);
});
test('failOnFlakyTests flag disallows flaky', async ({ runInlineTest }) => {
const result = await runInlineTest({
'a.test.js': `
import { test, expect } from '@playwright/test';
test('flake', async ({}, testInfo) => {
expect(testInfo.retry).toBe(1);
});
`,
}, { 'retries': 1, 'fail-on-flaky-tests': true });
expect(result.exitCode).not.toBe(0);
expect(result.flaky).toBe(1);
});
test('should fail on unexpected pass', async ({ runInlineTest }) => {
const { exitCode, failed, output } = await runInlineTest({
'unexpected-pass.spec.js': `
import { test, expect } from '@playwright/test';
test('succeeds', () => {
test.fail();
expect(1 + 1).toBe(2);
});
`
});
expect(exitCode).toBe(1);
expect(failed).toBe(1);
expect(output).toContain('Expected to fail, but passed');
});
test('should respect global timeout', async ({ runInlineTest }) => {
const now = monotonicTime();
const { exitCode, output } = await runInlineTest({
'one-timeout.spec.js': `
import { test, expect } from '@playwright/test';
test('timeout', async () => {
await new Promise(f => setTimeout(f, 10000));
});
`
}, { 'timeout': 100000, 'global-timeout': 3000 });
expect(exitCode).toBe(1);
expect(output).toContain('Timed out waiting 3s for the test suite to run');
expect(monotonicTime() - now).toBeGreaterThan(2900);
});
test('should exit with code 1 if the specified folder does not exist', async ({ runInlineTest }) => {
const result = await runInlineTest({
'playwright.config.ts': `
module.exports = { testDir: '111111111111.js' };
`,
});
expect(result.exitCode).toBe(1);
expect(result.output).toContain(`No tests found`);
});
test('should exit with code 1 if passed a file name', async ({ runInlineTest }) => {
const result = await runInlineTest({
'playwright.config.ts': `
module.exports = { testDir: 'test.spec.js' };
`,
'test.spec.js': `
`,
});
expect(result.exitCode).toBe(1);
expect(result.output).toContain(`No tests found`);
});
test('should exit with code 0 with --pass-with-no-tests', async ({ runInlineTest }) => {
const result = await runInlineTest({
'playwright.config.ts': `
module.exports = { testDir: 'unknown' };
`,
}, undefined, undefined, { additionalArgs: ['--pass-with-no-tests'] });
expect(result.exitCode).toBe(0);
});
test('should exit with code 1 when config is not found', async ({ runInlineTest }) => {
const result = await runInlineTest({ 'my.config.js': '' }, { 'config': 'foo.config.js' });
expect(result.exitCode).toBe(1);
expect(result.output).toContain(`foo.config.js does not exist`);
});