assertion.js
7.69 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
var util = require('util');
var events = require('events');
var Logger = require('./../util/logger.js');
var Utils = require('./../util/utils.js');
module.exports = new (function() {
var doneSymbol = Utils.symbols.ok;
var failSymbol = Utils.symbols.fail;
var initialized = false;
var client;
/**
* Abstract assertion class that will subclass all defined assertions
*
* All assertions must implement the following api:
*
* - @type {boolean|function}
* expected
* - @type {string}
* message
* - @type {function}
* pass
* - @type {function}
* value
* - @type {function}
* command
* - @type {function} - Optional
* failure
*
* @param {boolean} abortOnFailure
* @param {Nightwatch} client
* @constructor
*/
function BaseAssertion(abortOnFailure, client) {
events.EventEmitter.call(this);
this.abortOnFailure = abortOnFailure;
this.client = client;
this.api = client.api;
this.startTime = new Date().getTime();
this.globals = this.api.globals || {};
this.timeout = this.globals.retryAssertionTimeout || 0; //ms
this.rescheduleInterval = this.globals.waitForConditionPollInterval || 500; //ms
this.shouldRetry = this.timeout > 0;
}
util.inherits(BaseAssertion, events.EventEmitter);
BaseAssertion.prototype.complete = function() {
var self = this, args = Array.prototype.slice.call(arguments, 0);
args.unshift('complete');
setImmediate(function() {
self.emit.apply(self, args);
});
};
/**
* Performs the command method
* @returns {*}
* @private
*/
BaseAssertion.prototype._executeCommand = function() {
var self = this;
var methods = [
'expected',
'message',
['pass'],
['value'],
['command']
];
methods.forEach(function(method) {
if (Array.isArray(method)) {
var name = method[0];
if (typeof self[name] !== 'function') {
throw new Error('Assertion must implement method ' + name);
}
} else if (typeof self[method] == 'undefined') {
throw new Error('Assertion must implement method/property ' + method);
}
});
return this._scheduleAssertion();
};
BaseAssertion.prototype._scheduleAssertion = function() {
var self = this;
return this.command(function(result) {
var passed, value;
if (typeof self.failure == 'function' && self.failure(result)) {
passed = false;
value = null;
} else {
value = self.value(result);
passed = self.pass(value);
}
var timeSpent = new Date().getTime() - self.startTime;
if (!passed && timeSpent < self.timeout) {
return self._reschedule();
}
var expected = typeof self.expected == 'function' ? self.expected() : self.expected;
var message = self._getFullMessage(passed, timeSpent);
self.client.assertion(passed, value, expected, message, self.abortOnFailure, self._stackTrace);
self.emit('complete');
});
};
BaseAssertion.prototype._getFullMessage = function(passed, timeSpent) {
if ( !this.shouldRetry) {
return this.message;
}
var timeLogged = passed ? timeSpent : this.timeout;
return this.message + ' after ' + timeLogged + ' milliseconds.';
};
BaseAssertion.prototype._reschedule = function() {
setTimeout(function(){}, this.rescheduleInterval);
return this._scheduleAssertion();
};
/**
*
* @param {string} stackTrace
* @param {string|null} message
*/
function buildStackTrace(stackTrace, message) {
var stackParts = stackTrace.split('\n');
stackParts.shift();
if (message) {
stackParts.unshift(message);
}
return Utils.stackTraceFilter(stackParts);
}
/**
* Assertion factory that creates the assertion instances with the supplied assertion definition
* and options
*
* @param {function} assertionFn
* @param {boolean} abortOnFailure
* @param {Nightwatch} client
* @constructor
*/
function AssertionInstance(assertionFn, abortOnFailure, client) {
this.abortOnFailure = abortOnFailure;
this.client = client;
this.assertionFn = assertionFn;
}
/**
* This will call the supplied constructor of the assertion, after calling the Base constructor
* first with other arguments and then inherits the rest of the methods from BaseAssertion
*
* @param {function} constructor
* @param {Array} args
* @returns {*}
* @private
*/
AssertionInstance.prototype._constructFromSuper = function(constructor, args) {
var self = this;
function F() {
BaseAssertion.apply(this, [self.abortOnFailure, self.client]);
return constructor.apply(this, args);
}
util.inherits(constructor, BaseAssertion);
F.prototype = constructor.prototype;
return new F();
};
AssertionInstance.prototype._commandFn = function commandFn() {
var args = Array.prototype.slice.call(arguments, 0);
var instance = this._constructFromSuper(this.assertionFn, args);
instance._stackTrace = commandFn.stackTrace;
return instance._executeCommand();
};
/**
* @public
* @param {function} assertionFn
* @param {boolean} abortOnFailure
* @param {Nightwatch} client
* @returns {AssertionInstance}
*/
this.factory = function(assertionFn, abortOnFailure, client) {
return new AssertionInstance(assertionFn, abortOnFailure, client);
};
/**
* Performs an assertion
*
* @param {Boolean} passed
* @param {Object} receivedValue
* @param {Object} expectedValue
* @param {String} message
* @param {Boolean} abortOnFailure
* @param {String} originalStackTrace
*/
this.assert = function assert(passed, receivedValue, expectedValue, message, abortOnFailure, originalStackTrace) {
if (!initialized) {
throw new Error('init must be called first.');
}
var failure = '';
var stacktrace = '';
var fullMsg = '';
if (passed) {
if (client.options.output && client.options.detailed_output) {
console.log(' ' + Logger.colors.green(doneSymbol) + ' ' + message);
}
client.results.passed++;
} else {
failure = 'Expected "' + expectedValue + '" but got: "' + receivedValue + '"';
var err = new Error();
err.name = message;
err.message = message + ' - ' + failure;
if (!originalStackTrace) {
Error.captureStackTrace(err, arguments.callee);
originalStackTrace = err.stack;
}
err.stack = buildStackTrace(originalStackTrace, client.options.start_session ? null : 'AssertionError: ' + message);
fullMsg = message;
if (client.options.output && client.options.detailed_output) {
var logged = ' ' + Logger.colors.red(failSymbol);
if (typeof expectedValue != 'undefined' && typeof receivedValue != 'undefined') {
fullMsg += ' ' + Logger.colors.white(' - expected ' + Logger.colors.green('"' +
expectedValue + '"')) + ' but got: ' + Logger.colors.red('"' + receivedValue + '"');
}
logged += ' ' + fullMsg;
console.log(logged);
}
stacktrace = err.stack;
if (client.options.output && client.options.detailed_output) {
var parts = stacktrace.split('\n');
console.log(Logger.colors.stack_trace(parts.join('\n')) + '\n');
}
client.results.lastError = err;
client.results.failed++;
}
client.results.tests.push({
message : message,
stackTrace : stacktrace,
fullMsg : fullMsg,
failure : failure !== '' ? failure : false
});
if (!passed && abortOnFailure) {
client.terminate(true);
}
};
/**
* Initializer
*
* @param {Object} c Nightwatch client instance
*/
this.init = function(c) {
client = c;
initialized = true;
};
})();