forked from angular/protractor
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathplugins.js
255 lines (237 loc) · 7.74 KB
/
plugins.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
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
var webdriver = require('selenium-webdriver'),
q = require('q'),
ConfigParser = require('./configParser'),
log = require('./logger');
var PROMISE_TYPE = {
Q: 0,
WEBDRIVER: 1
};
/**
* The plugin API for Protractor. Note that this API is unstable. See
* plugins/README.md for more information.
*
* @constructor
* @param {Object} config parsed from the config file
*/
var Plugins = function(config) {
var self = this;
this.pluginConfs = config.plugins || [];
this.pluginObjs = [];
this.assertions = {};
this.resultsReported = false;
this.pluginConfs.forEach(function(pluginConf, i) {
var path;
if (pluginConf.path) {
path = ConfigParser.resolveFilePatterns(pluginConf.path, true,
config.configDir)[0];
if (!path) {
throw new Error('Invalid path to plugin: ' + pluginConf.path);
}
} else {
path = pluginConf.package;
}
var pluginObj;
if (path) {
pluginObj = require(path);
} else if (pluginConf.inline) {
pluginObj = pluginConf.inline;
} else {
throw new Error('Plugin configuration did not contain a valid path or ' +
'inline definition.');
}
annotatePluginObj(self, pluginObj, pluginConf, i);
log.debug('Plugin "' + pluginObj.name + '" loaded.');
self.pluginObjs.push(pluginObj);
});
};
/**
* Adds properties to a plugin's object
*
* @see docs/plugins.md#provided-properties-and-functions
*/
function annotatePluginObj(self, obj, conf, i) {
function addAssertion(info, passed, message) {
if (self.resultsReported) {
throw new Error('Cannot add new tests results, since they were already ' +
'reported.');
}
info = info || {};
var specName = info.specName || (obj.name + ' Plugin Tests');
var assertion = {passed: passed};
if (!passed) {
assertion.errorMsg = message;
if (info.stackTrace) {
assertion.stackTrace = info.stackTrace;
}
}
self.assertions[specName] = self.assertions[specName] || [];
self.assertions[specName].push(assertion);
}
obj.name = obj.name || conf.name || conf.path || conf.package ||
('Plugin #' + i);
obj.config = conf;
obj.addFailure = function(message, options) {
addAssertion(options, false, message);
};
obj.addSuccess = function(options) {
addAssertion(options, true);
};
obj.addWarning = function(message, options) {
options = options || {};
log.puts('Warning ' + (options.specName ? 'in ' + options.specName :
'from "' + obj.name + '" plugin') +
': ' + message);
};
}
function printPluginResults(specResults) {
var green = '\x1b[32m';
var red = '\x1b[31m';
var normalColor = '\x1b[39m';
var printResult = function(message, pass) {
log.puts(pass ? green : red,
'\t', pass ? 'Pass: ' : 'Fail: ', message, normalColor);
};
for (var j = 0; j < specResults.length; j++) {
var specResult = specResults[j];
var passed = specResult.assertions.map(function(x) {
return x.passed;
}).reduce(function(x, y) {
return x && y;
}, true);
printResult(specResult.description, passed);
if (!passed) {
for (var k = 0; k < specResult.assertions.length; k++) {
var assertion = specResult.assertions[k];
if (!assertion.passed) {
log.puts('\t\t' + assertion.errorMsg);
if (assertion.stackTrace) {
log.puts('\t\t' + assertion.stackTrace.replace(/\n/g, '\n\t\t'));
}
}
}
}
}
}
/**
* Gets the tests results generated by any plugins
*
* @see lib/frameworks/README.md#requirements for a complete description of what
* the results object must look like
*
* @return {Object} The results object
*/
Plugins.prototype.getResults = function() {
var results = {
failedCount: 0,
specResults: []
};
for (var specName in this.assertions) {
results.specResults.push({
description: specName,
assertions: this.assertions[specName]
});
results.failedCount += this.assertions[specName].filter(
function(assertion) {return !assertion.passed;}).length;
}
printPluginResults(results.specResults);
this.resultsReported = true;
return results;
};
/**
* Calls a function from a plugin safely. If the plugin's function throws an
* exception or returns a rejected promise, that failure will be logged as a
* failed test result instead of crashing protractor. If the tests results have
* already been reported, the failure will be logged to the console.
*
* @param {Object} pluginObj The plugin object containing the function to be run
* @param {string} funName The name of the function we want to run
* @param {*[]} args The arguments we want to invoke the function with
* @param {PROMISE_TYPE} promiseType The type of promise (WebDriver or Q) that
* should be used
* @param {boolean} resultsReported If the results have already been reported
* @param {*} failReturnVal The value to return if the function fails
*
* @return {webdriver.promise.Promise} A promise which resolves to the
* function's return value
*/
function safeCallPluginFun(pluginObj, funName, args, promiseType,
resultsReported, failReturnVal) {
var deferred = promiseType == PROMISE_TYPE.Q ? q.defer() :
webdriver.promise.defer();
var logError = function(e) {
if (resultsReported) {
printPluginResults([{
description: pluginObj.name + ' Runtime',
assertions: [{
passed: false,
errorMsg: 'Failure during ' + funName + ': ' + (e.message || e),
stackTrace: e.stack
}]
}]);
} else {
pluginObj.addFailure('Failure during ' + funName + ': ' +
e.message || e, {stackTrace: e.stack});
}
deferred.fulfill(failReturnVal);
};
try {
var result = pluginObj[funName].apply(pluginObj, args);
if (webdriver.promise.isPromise(result)) {
result.then(function() {
deferred.fulfill.apply(deferred, arguments);
}, function(e) {
logError(e);
});
} else {
deferred.fulfill(result);
}
} catch(e) {
logError(e);
}
return deferred.promise;
}
/**
* Generates the handler for a plugin function (e.g. the setup() function)
*
* @param {string} funName The name of the function to make a handler for
* @param {PROMISE_TYPE} promiseType The type of promise (WebDriver or Q) that
* should be used
* @param {boolean=} failReturnVal The value that the function should return if
* the plugin crashes
*
* @return {Function} The handler
*/
function pluginFunFactory(funName, promiseType, failReturnVal) {
return function() {
var promises = [];
var self = this;
var args = arguments;
this.pluginObjs.forEach(function(pluginObj) {
if (pluginObj[funName]) {
promises.push(safeCallPluginFun(pluginObj, funName, args, promiseType,
self.resultsReported, failReturnVal));
}
});
if (promiseType == PROMISE_TYPE.Q) {
return q.all(promises);
} else {
return webdriver.promise.all(promises);
}
};
}
/**
* @see docs/plugins.md#writing-plugins for information on these functions
*/
Plugins.prototype.setup = pluginFunFactory('setup', PROMISE_TYPE.Q);
Plugins.prototype.teardown = pluginFunFactory('teardown', PROMISE_TYPE.Q);
Plugins.prototype.postResults = pluginFunFactory('postResults', PROMISE_TYPE.Q);
Plugins.prototype.postTest = pluginFunFactory('postTest', PROMISE_TYPE.Q);
Plugins.prototype.onPageLoad = pluginFunFactory('onPageLoad',
PROMISE_TYPE.WEBDRIVER);
Plugins.prototype.onPageStable = pluginFunFactory('onPageStable',
PROMISE_TYPE.WEBDRIVER);
Plugins.prototype.waitForPromise = pluginFunFactory('waitForPromise',
PROMISE_TYPE.WEBDRIVER);
Plugins.prototype.waitForCondition = pluginFunFactory('waitForCondition',
PROMISE_TYPE.WEBDRIVER, true);
module.exports = Plugins;