-
-
Notifications
You must be signed in to change notification settings - Fork 731
/
Copy pathhelper.js
183 lines (152 loc) · 2.77 KB
/
helper.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
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
const container = require('./container');
const output = require('./output');
/**
* @inner
* Abstract class.
* Helpers abstracts test execution backends.
*
* Methods of Helper class will be available in tests in `I` object.
* They provide user-friendly abstracted actions over NodeJS libraries.
*
* Hooks (methods starting with `_`) can be used to setup/teardown,
* or handle execution flow.
*
* Methods are expected to return a value in order to be wrapped in promise.
*/
class Helper {
constructor(config) {
this.config = config;
}
/**
* Abstract method to provide required config options
* @return {*}
* @protected
*/
static _config() {
}
/**
* Abstract method to validate config
* @param {*} config
* @returns {*}
* @protected
*/
_validateConfig(config) {
return config;
}
/**
* Sets config for current test
* @param {*} opts
* @protected
*/
_setConfig(opts) {
this.options = this._validateConfig(opts);
}
/**
* Hook executed before all tests
* @protected
*/
_init() {
}
/**
* Hook executed before each test.
* @protected
*/
_before() {
}
/**
* Hook executed after each test
* @protected
*/
_after() {
}
/**
* Hook provides a test details
* Executed in the very beginning of a test
*
* @param {Mocha.Test} test
* @protected
*/
_test(test) {
}
/**
* Hook executed after each passed test
*
* @param {Mocha.Test} test
* @protected
*/
_passed(test) {
}
/**
* Hook executed after each failed test
*
* @param {Mocha.Test} test
* @protected
*/
_failed(test) {
}
/**
* Hook executed before each step
*
* @param {CodeceptJS.Step} step
* @protected
*/
_beforeStep(step) {
}
/**
* Hook executed after each step
*
* @param {CodeceptJS.Step} step
* @protected
*/
_afterStep(step) {
}
/**
* Hook executed before each suite
*
* @param {Mocha.Suite} suite
* @protected
*/
_beforeSuite(suite) {
}
/**
* Hook executed after each suite
*
* @param {Mocha.Suite} suite
* @protected
*/
_afterSuite(suite) {
}
/**
* Hook executed after all tests are executed
*
* @param {Mocha.Suite} suite
* @protected
*/
_finishTest(suite) {
}
/**
* Access another configured helper: `this.helpers['AnotherHelper']`
*
* @readonly
* @type {*}
*/
get helpers() {
return container.helpers();
}
/**
* Print debug message to console (outputs only in debug mode)
*
* @param {string} msg
*/
debug(msg) {
output.debug(msg);
}
/**
* @param {string} section
* @param {string} msg
*/
debugSection(section, msg) {
output.debug(`[${section}] ${msg}`);
}
}
module.exports = Helper;