-
-
Notifications
You must be signed in to change notification settings - Fork 736
/
Copy pathsuite.js
82 lines (69 loc) · 1.88 KB
/
suite.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
const MochaSuite = require('mocha/lib/suite')
/**
* @typedef {import('mocha')} Mocha
*/
/**
* Enhances MochaSuite with CodeceptJS specific functionality using composition
*/
function enhanceMochaSuite(suite) {
if (!suite) suite = new MochaSuite('Suite', null, false)
// already enhanced
if (suite.codeceptjs) return suite
suite.codeceptjs = true
// Add properties
suite.tags = suite.title.match(/(\@[a-zA-Z0-9-_]+)/g) || []
suite.opts = {}
// suite.totalTimeout = undefined
// Override fullTitle method
suite.fullTitle = () => `${suite.title}:`
// Add new methods
suite.applyOptions = function (opts) {
if (!opts) opts = {}
suite.opts = opts
if (opts.retries) suite.retries(opts.retries)
if (opts.timeout) suite.totalTimeout = opts.timeout
if (opts.skipInfo && opts.skipInfo.skipped) {
suite.pending = true
suite.opts = { ...this.opts, skipInfo: opts.skipInfo }
}
}
suite.simplify = function () {
return serializeSuite(this)
}
return suite
}
/**
* Factory function to create enhanced suites
* @param {Mocha.Suite} parent - Parent suite
* @param {string} title - Suite title
* @returns {CodeceptJS.Suite & Mocha.Suite} New enhanced suite instance
*/
function createSuite(parent, title) {
const suite = MochaSuite.create(parent, title)
suite.timeout(0)
return enhanceMochaSuite(suite)
}
function serializeSuite(suite) {
suite = { ...suite }
return {
opts: suite.opts || {},
tags: suite.tags || [],
retries: suite._retries,
title: suite.title,
status: suite.status,
notes: suite.notes || [],
meta: suite.meta || {},
duration: suite.duration || 0,
}
}
function deserializeSuite(suite) {
suite = Object.assign(new MochaSuite(suite.title), suite)
enhanceMochaSuite(suite)
return suite
}
module.exports = {
createSuite,
enhanceMochaSuite,
serializeSuite,
deserializeSuite,
}