-
-
Notifications
You must be signed in to change notification settings - Fork 736
/
Copy pathmeta.js
99 lines (82 loc) · 2.3 KB
/
meta.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
const Step = require('./base')
const event = require('../event')
const { humanizeString } = require('../utils')
class MetaStep extends Step {
constructor(actor, method) {
if (!method) method = ''
super(method)
/** @member {boolean} collsapsed hide children steps from output */
this.collapsed = false
this.actor = actor
}
/** @return {boolean} */
isBDD() {
if (this.actor && this.actor.match && this.actor.match(/^(Given|When|Then|And)/)) {
return true
}
return false
}
toCliStyled() {
return this.toString()
}
toString() {
const actorText = this.actor
if (this.isBDD()) {
return `${this.prefix}${actorText} ${this.name} "${this.humanizeArgs()}${this.suffix}"`
}
if (actorText === 'I') {
return `${this.prefix}${actorText} ${this.humanize()} ${this.humanizeArgs()}${this.suffix}`
}
if (!this.actor) {
return `${this.name} ${this.humanizeArgs()}${this.suffix}`.trim()
}
return `On ${this.prefix}${actorText}: ${this.humanize()} ${this.humanizeArgs()}${this.suffix}`.trim()
}
humanize() {
return humanizeString(this.name)
}
setTrace() {}
setContext(context) {
this.context = context
}
/** @return {*} */
run(fn) {
this.status = 'queued'
this.setArguments(Array.from(arguments).slice(1))
let result
const registerStep = step => {
this.setMetaStep(null)
step.setMetaStep(this)
}
event.dispatcher.prependListener(event.step.before, registerStep)
// Handle async and sync methods.
if (fn.constructor.name === 'AsyncFunction') {
result = fn
.apply(this.context, this.args)
.then(result => {
return result
})
.catch(error => {
this.setStatus('failed')
throw error
})
.finally(() => {
this.endTime = Date.now()
event.dispatcher.removeListener(event.step.before, registerStep)
})
} else {
try {
this.startTime = Date.now()
result = fn.apply(this.context, this.args)
} catch (error) {
this.setStatus('failed')
throw error
} finally {
this.endTime = Date.now()
event.dispatcher.removeListener(event.step.before, registerStep)
}
}
return result
}
}
module.exports = MetaStep