-
-
Notifications
You must be signed in to change notification settings - Fork 752
Expand file tree
/
Copy pathstepByStepReport.js
More file actions
539 lines (458 loc) · 16.3 KB
/
stepByStepReport.js
File metadata and controls
539 lines (458 loc) · 16.3 KB
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
const colors = require('chalk')
const crypto = require('crypto')
const figures = require('figures')
const fs = require('fs')
const mkdirp = require('mkdirp')
const path = require('path')
const cheerio = require('cheerio')
const Container = require('../container')
const recorder = require('../recorder')
const event = require('../event')
const output = require('../output')
const { template, deleteDir } = require('../utils')
const supportedHelpers = Container.STANDARD_ACTING_HELPERS
const defaultConfig = {
deleteSuccessful: true,
animateSlides: true,
ignoreSteps: [],
fullPageScreenshots: false,
output: global.output_dir,
screenshotsForAllureReport: false,
disableScreenshotOnFail: true,
}
const templates = {}
/**
* 
*
* Generates step by step report for a test.
* After each step in a test a screenshot is created. After test executed screenshots are combined into slideshow.
* By default, reports are generated only for failed tests.
*
*
* Run tests with plugin enabled:
*
* ```
* npx codeceptjs run --plugins stepByStepReport
* ```
*
* Run tests with workers:
*
* ```
* npx codeceptjs run-workers 2 --plugins stepByStepReport
* ```
*
* Run tests with multiple configurations:
*
* ```
* npx codeceptjs run-multiple --all --plugins stepByStepReport
* ```
*
* #### Configuration
*
* ```js
* "plugins": {
* "stepByStepReport": {
* "enabled": true
* }
* }
* ```
*
* Possible config options:
*
* * `deleteSuccessful`: do not save screenshots for successfully executed tests. Default: true.
* * `animateSlides`: should animation for slides to be used. Default: true.
* * `ignoreSteps`: steps to ignore in report. Array of RegExps is expected. Recommended to skip `grab*` and `wait*` steps.
* * `fullPageScreenshots`: should full page screenshots be used. Default: false.
* * `output`: a directory where reports should be stored. Default: `output`.
* * `screenshotsForAllureReport`: If Allure plugin is enabled this plugin attaches each saved screenshot to allure report. Default: false.
* * `disableScreenshotOnFail : Disables the capturing of screeshots after the failed step. Default: true.
*
* #### Worker and Multiple Run Support
*
* When using `run-workers`, `run-multiple`, or combinations thereof, the plugin automatically
* detects all worker and run processes and creates a consolidated step-by-step report that
* includes screenshots from all processes while keeping them in their original directories.
*
* Screenshots remain in their respective process directories for traceability:
* - **run-workers**: Screenshots saved in `/output/worker1/`, `/output/worker2/`, etc.
* - **run-multiple**: Screenshots saved in `/output/config_name_hash/`, etc.
* - **Mixed scenarios**: Screenshots saved in `/output/config_name_hash/worker1/`, etc.
*
* The final consolidated report links to all screenshots while preserving their original locations
* and indicating which process or worker they came from.
*
* @param {*} config
*/
module.exports = function (config) {
const helpers = Container.helpers()
let helper
config = Object.assign(defaultConfig, config)
for (const helperName of supportedHelpers) {
if (Object.keys(helpers).indexOf(helperName) > -1) {
helper = helpers[helperName]
}
}
if (!helper) return // no helpers for screenshot
let dir
let stepNum
let slides = {}
let error
let savedStep = null
let currentTest = null
let scenarioFailed = false
const recordedTests = {}
const pad = '0000'
const reportDir = config.output ? path.resolve(global.codecept_dir, config.output) : defaultConfig.output
// Ensure the report directory exists
mkdirp.sync(reportDir)
event.dispatcher.on(event.suite.before, suite => {
stepNum = -1
})
event.dispatcher.on(event.test.before, test => {
const sha256hash = crypto
.createHash('sha256')
.update(test.file + test.title)
.digest('hex')
dir = path.join(reportDir, `record_${sha256hash}`)
mkdirp.sync(dir)
stepNum = 0
error = null
slides = {}
savedStep = null
currentTest = test
})
event.dispatcher.on(event.step.failed, step => {
recorder.add('screenshot of failed test', async () => persistStep(step), true)
})
event.dispatcher.on(event.step.after, step => {
recorder.add('screenshot of step of test', async () => persistStep(step), true)
})
event.dispatcher.on(event.test.passed, test => {
if (!config.deleteSuccessful) return persist(test)
// cleanup
deleteDir(dir)
})
event.dispatcher.on(event.test.failed, (test, _err, hookName) => {
if (hookName === 'BeforeSuite' || hookName === 'AfterSuite') {
// no browser here
return
}
persist(test)
})
event.dispatcher.on(event.all.result, () => {
if (Object.keys(recordedTests).length === 0 || !Object.keys(slides).length) return
generateRecordsHtml(recordedTests)
})
event.dispatcher.on(event.workers.result, async () => {
await recorder.add(() => {
// For workers and run-multiple scenarios, we need to search across multiple directories
// to find all screenshot folders from different processes
const recordedTests = getRecordFoldersFromAllDirectories()
generateRecordsHtml(recordedTests)
})
})
function getRecordFoldersFromAllDirectories() {
let results = {}
// Determine the base output directory to search from
const baseOutputDir = config.output ? path.resolve(global.codecept_dir, config.output) : defaultConfig.output
// Function to recursively search for record folders in a directory
function searchForRecordFolders(searchDir, basePath = '') {
try {
if (!fs.existsSync(searchDir)) return
const items = fs.readdirSync(searchDir, { withFileTypes: true })
items.forEach(item => {
if (item.isDirectory()) {
const itemPath = path.join(searchDir, item.name)
const relativePath = basePath ? path.join(basePath, item.name) : item.name
// If this is a record folder, process it
if (item.name.startsWith('record_')) {
const indexPath = path.join(itemPath, 'index.html')
let name = ''
if (fs.existsSync(indexPath)) {
try {
const htmlContent = fs.readFileSync(indexPath, 'utf-8')
const $ = cheerio.load(htmlContent)
name = $('.navbar-brand').text().trim()
} catch (err) {
console.error(`Error reading index.html in ${itemPath}:`, err.message)
}
}
// Include the relative path to show which process/worker this came from
const displayName = basePath ? `${name} (${basePath})` : name
results[displayName || 'Unknown'] = path.join(relativePath, 'index.html')
} else {
// Continue searching in subdirectories (worker folders, run-multiple folders)
searchForRecordFolders(itemPath, relativePath)
}
}
})
} catch (err) {
console.error(`Error searching directory ${searchDir}:`, err.message)
}
}
// Start the search from the base output directory
searchForRecordFolders(baseOutputDir)
// Also check the current reportDir for backwards compatibility
const currentDirResults = getRecordFoldersWithDetails(reportDir)
Object.assign(results, currentDirResults)
return results
}
function getRecordFoldersWithDetails(dirPath) {
let results = {}
try {
const items = fs.readdirSync(dirPath, { withFileTypes: true })
items.forEach(item => {
if (item.isDirectory() && item.name.startsWith('record_')) {
const recordFolderPath = path.join(dirPath, item.name)
const indexPath = path.join(recordFolderPath, 'index.html')
let name = ''
if (fs.existsSync(indexPath)) {
try {
const htmlContent = fs.readFileSync(indexPath, 'utf-8')
const $ = cheerio.load(htmlContent)
name = $('.navbar-brand').text().trim()
} catch (err) {
console.error(`Error reading index.html in ${recordFolderPath}:`, err.message)
}
}
results[name || 'Unkown'] = `${item.name}/index.html`
}
})
} catch (err) {
console.error(`Error reading directory ${dirPath}:`, err.message)
}
return results
}
function generateRecordsHtml(recordedTests) {
let links = ''
for (const link in recordedTests) {
links += `<li><a href="${recordedTests[link]}">${link}</a></li>\n`
}
const indexHTML = template(templates.index, {
time: Date().toString(),
records: links,
})
// Determine where to write the main records.html file
// For worker/run-multiple scenarios, we want to write to the base output directory
let recordsHtmlDir = reportDir
if (global.codecept_dir && (process.env.RUNS_WITH_WORKERS === 'true' || process.argv.some(arg => arg === '--child'))) {
// Extract base output directory by removing worker/run-specific segments
const baseOutputDir = config.output ? path.resolve(global.codecept_dir, config.output) : defaultConfig.output
let actualBaseDir = baseOutputDir
// For workers: strip worker directory segment
if (process.env.RUNS_WITH_WORKERS === 'true') {
actualBaseDir = actualBaseDir.replace(/[/\\][^/\\]+$/, '')
}
// For run-multiple: strip run directory segment
if (process.argv.some(arg => arg === '--child')) {
actualBaseDir = actualBaseDir.replace(/[/\\][^/\\]+$/, '')
}
recordsHtmlDir = actualBaseDir
mkdirp.sync(recordsHtmlDir)
}
fs.writeFileSync(path.join(recordsHtmlDir, 'records.html'), indexHTML)
output.print(`${figures.circleFilled} Step-by-step preview: ${colors.white.bold(`file://${recordsHtmlDir}/records.html`)}`)
}
async function persistStep(step) {
if (stepNum === -1) return // Ignore steps from BeforeSuite function
if (isStepIgnored(step)) return
if (savedStep === step) return // already saved
// Ignore steps from BeforeSuite function
if (scenarioFailed && config.disableScreenshotOnFail) return
if (step.metaStep && step.metaStep.name === 'BeforeSuite') return
if (!step.test) return // Ignore steps from AfterSuite
const fileName = `${pad.substring(0, pad.length - stepNum.toString().length) + stepNum.toString()}.png`
if (step.status === 'failed') {
scenarioFailed = true
}
stepNum++
slides[fileName] = step
try {
await helper.saveScreenshot(path.join(dir, fileName), config.fullPageScreenshots)
} catch (err) {
output.plugin(`Can't save step screenshot: ${err}`)
error = err
return
} finally {
savedStep = step
}
if (!currentTest.artifacts.screenshots) currentTest.artifacts.screenshots = []
// added attachments to test
currentTest.artifacts.screenshots.push(path.join(dir, fileName))
const allureReporter = Container.plugins('allure')
if (allureReporter && config.screenshotsForAllureReport) {
output.plugin('stepByStepReport', 'Adding screenshot to Allure')
allureReporter.addAttachment(`Screenshot of step ${step}`, fs.readFileSync(path.join(dir, fileName)), 'image/png')
}
}
function persist(test) {
if (error) return
let indicatorHtml = ''
let slideHtml = ''
for (const i in slides) {
const step = slides[i]
const stepNum = parseInt(i, 10)
indicatorHtml += template(templates.indicator, {
step: stepNum,
isActive: stepNum ? '' : 'class="active"',
})
slideHtml += template(templates.slides, {
image: i,
caption: step.toString().replace(/\[\d{2}m/g, ''), // remove ANSI escape sequence
isActive: stepNum ? '' : 'active',
isError: step.status === 'failed' ? 'error' : '',
})
}
const html = template(templates.global, {
indicators: indicatorHtml,
slides: slideHtml,
feature: test.parent && test.parent.title,
test: test.title,
carousel_class: config.animateSlides ? ' slide' : '',
})
const index = path.join(dir, 'index.html')
fs.writeFileSync(index, html)
recordedTests[`${test.parent.title}: ${test.title}`] = path.relative(reportDir, index)
}
function isStepIgnored(step) {
if (!config.ignoreSteps) return
for (const pattern of config.ignoreSteps || []) {
if (step.name.match(pattern)) return true
}
return false
}
}
templates.slides = `
<div class="item {{isActive}}">
<div class="fill">
<img src="{{image}}">
</div>
<div class="carousel-caption {{isError}}">
<h2>{{caption}}</h2>
<small>scroll up and down to see the full page</small>
</div>
</div>
`
templates.indicator = `
<li data-target="#steps" data-slide-to="{{step}}" {{isActive}}></li>
`
templates.index = `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Step by Steps Report</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="#">Step by Step Report
</a>
</div>
</nav>
<div class="container">
<h1>Recorded <small>@ {{time}}</small></h1>
<ul>
{{records}}
</ul>
</div>
</body>
</html>
`
templates.global = `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Recorder Result</title>
<!-- Bootstrap Core CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<style>
html,
body {
height: 100%;
}
.carousel,
.item,
.active {
height: 100%;
}
.navbar {
margin-bottom: 0px !important;
}
.carousel-caption {
background: rgba(0,0,0,0.8);
padding-bottom: 50px !important;
}
.carousel-caption.error {
background: #c0392b !important;
}
.carousel-inner {
height: 100%;
}
.fill {
width: 100%;
height: 100%;
text-align: center;
overflow-y: scroll;
background-position: top;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="../records.html">
«
{{feature}}
<small>{{test}}</small>
</a>
</div>
</nav>
<header id="steps" class="carousel{{carousel_class}}">
<!-- Indicators -->
<ol class="carousel-indicators">
{{indicators}}
</ol>
<!-- Wrapper for Slides -->
<div class="carousel-inner">
{{slides}}
</div>
<!-- Controls -->
<a class="left carousel-control" href="#steps" data-slide="prev">
<span class="icon-prev"></span>
</a>
<a class="right carousel-control" href="#steps" data-slide="next">
<span class="icon-next"></span>
</a>
</header>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- Script to Activate the Carousel -->
<script>
$('.carousel').carousel({
wrap: true,
interval: false
})
$(document).bind('keyup', function(e) {
if(e.keyCode==39){
jQuery('a.carousel-control.right').trigger('click');
}
else if(e.keyCode==37){
jQuery('a.carousel-control.left').trigger('click');
}
});
</script>
</body>
</html>
`