-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
145 lines (123 loc) · 4.48 KB
/
test.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
import path from 'node:path';
import t from 'libtap';
import fastify from 'fastify';
import fastifyBabel from 'fastify-babel';
import fastifyStatic from '@fastify/static';
import isCI from 'is-ci';
import {grabImage, testBrowser} from '@cfware/tap-selenium-manager';
import platformBin from './platform-bin.js';
const selfCoverage = global.__coverage__;
global.__coverage__ = {};
delete process.env.NODE_OPTIONS;
const deadBrowser = () => {};
const babelrc = {plugins: ['babel-plugin-istanbul']};
function platformTest(testPlatform) {
return async t => {
const {platform} = process;
Object.defineProperty(process, 'platform', {value: testPlatform});
t.equal(platformBin('test-bin'), testPlatform === 'win32' ? 'test-bin.cmd' : 'test-bin');
Object.defineProperty(process, 'platform', {value: platform});
};
}
async function main() {
const daemon = fastify();
daemon
.register(fastifyStatic, {root: path.resolve('htdocs')})
.register(fastifyBabel, {babelrc});
await daemon.listen();
daemon.server.unref();
const baseURL = `http://localhost:${daemon.server.address().port}/`;
await t.rejects(testBrowser(t), TypeError);
let tested = await testBrowser(t, deadBrowser, baseURL, {
async 'page1.html'(t) {
t.fail('should not get here');
}
});
t.equal(tested, false);
await t.test('after deadBrowser', async t => t.same(global.__coverage__, {}));
let gotCoverage;
const pages = browser => ({
async 'page1.html'(t, selenium) {
const title = await selenium.executeScript(() => document.title);
t.equal(title, 'Page 1');
},
async 'page2.html'(t, selenium) {
gotCoverage = await selenium.executeScript(() => window.__coverage__);
t.type(gotCoverage, 'object');
// Something wrong with chrome or chromedriver on Github CI.
if (!isCI || browser !== 'chrome') {
const element = await selenium.findElement({id: 'grab'});
t.matchSnapshot(await grabImage(element));
}
}
});
const standardTest = async browser => {
tested = await testBrowser(t, browser, baseURL, pages(browser));
if (tested) {
await t.test(`after ${browser}`, async t => {
t.same(JSON.parse(JSON.stringify(global.__coverage__)), gotCoverage);
t.ok(Object.keys(global.__coverage__).length);
});
global.__coverage__ = {};
}
};
const daemonTest = async browser => {
const simulateDaemon = {
calls: {
start: 0,
stop: 0,
url: 0
},
async start() {
simulateDaemon.calls.start++;
},
async stop() {
simulateDaemon.calls.stop++;
},
get baseURL() {
simulateDaemon.calls.url++;
return baseURL;
}
};
const browserPages = pages(browser);
tested = await testBrowser(t, browser, simulateDaemon, {
async 'page1.html'(t, selenium) {
t.same(simulateDaemon.calls, {
start: 1,
stop: 0,
url: 1
});
await browserPages['page1.html'](t, selenium);
},
async 'page2.html'(t, selenium) {
t.same(simulateDaemon.calls, {
start: 1,
stop: 0,
url: 1
});
await browserPages['page2.html'](t, selenium);
}
});
if (tested) {
await t.test(`after ${browser}`, async t => {
t.same(simulateDaemon.calls, {
start: 1,
stop: 1,
url: 1
});
t.same(JSON.parse(JSON.stringify(global.__coverage__)), gotCoverage);
t.ok(Object.keys(global.__coverage__).length);
});
global.__coverage__ = {};
}
};
await standardTest('firefox');
await daemonTest('firefox');
await standardTest('chrome');
await daemonTest('chrome');
await t.test('platformBin for linux', platformTest('linux'));
await t.test('platformBin for mac', platformTest('mac'));
await t.test('platformBin for win32', platformTest('win32'));
global.__coverage__ = selfCoverage;
}
main().catch(t.error);