-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtask.js
145 lines (124 loc) · 3.63 KB
/
task.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
const Controller = require('happo-e2e/controller');
const controller = new Controller();
const localSnapshotImages = {};
const { HAPPO_DEBUG } = process.env;
function getCleanupTimeframe({ attempt, results }) {
if (attempt.wallClockStartedAt && attempt.wallClockDuration) {
// Cypress <= v12
const start = new Date(attempt.wallClockStartedAt).getTime();
return { start, end: start + attempt.wallClockDuration };
}
// Cypress >= 13
if (!results.stats) {
if (HAPPO_DEBUG) {
console.log(
`[HAPPO] Couldn't find start and end time for failed attempt. This could lead to duplicate screenshots in your Happo reports.`,
);
}
return { start: 0, end: 0 };
}
const start = new Date(results.stats.startedAt).getTime();
const end = new Date(results.stats.endedAt).getTime();
return { start, end };
}
const task = {
register(on) {
on('task', task);
on('before:spec', task.handleBeforeSpec);
on('after:spec', task.handleAfterSpec);
on('after:screenshot', task.handleAfterScreenshot);
task.isRegisteredCorrectly = true;
},
async handleAfterSpec(spec, results) {
if (!controller.isActive()) {
return;
}
if (results) {
for (const test of results.tests) {
const wasRetried =
test.attempts.some((t) => t.state === 'failed') &&
test.attempts[test.attempts.length - 1].state === 'passed';
if (!wasRetried) {
continue;
}
for (const attempt of test.attempts) {
if (attempt.state === 'failed') {
const { start, end } = getCleanupTimeframe({ attempt, results });
if (typeof controller.removeDuplicatesInTimeframe === 'function') {
// happo-e2e >= 2.4.0
controller.removeDuplicatesInTimeframe({
start,
end,
});
} else {
// happo-e2e < 2.4.0
controller.removeSnapshotsMadeBetween({
start,
end,
});
}
}
}
}
}
await controller.finish();
return null;
},
async happoRegisterSnapshot(snapshot) {
if (!controller.isActive()) {
return null;
}
await controller.registerSnapshot(snapshot);
return null;
},
happoRegisterLocalSnapshot({ imageId, component, variant, target, targets }) {
localSnapshotImages[imageId] = { component, variant, targets, target };
return null;
},
async handleAfterScreenshot({ name, path, dimensions }) {
if (!controller.isActive()) {
return null;
}
if (!name) {
return null;
}
const snapshotData = localSnapshotImages[name];
if (!snapshotData) {
if (HAPPO_DEBUG) {
console.log(`[HAPPO] Ignoring unregistered screenshot: ${name}`);
}
return;
}
await controller.registerLocalSnapshot({
...snapshotData,
...dimensions,
path,
});
return null;
},
async happoRegisterBase64Image({ base64Chunk, src, isFirst, isLast }) {
if (!controller.isActive()) {
return null;
}
await controller.registerBase64ImageChunk({
base64Chunk,
src,
isFirst,
isLast,
});
return null;
},
async handleBeforeSpec() {
await controller.init();
if (controller.isActive() && !task.isRegisteredCorrectly) {
throw new Error(`happo-cypress hasn't been registered correctly. Make sure you call \`happoTask.register\` when you register the plugin:
const happoTask = require('happo-cypress/task');
module.exports = (on) => {
happoTask.register(on);
};
`);
}
return null;
},
};
module.exports = task;