forked from mllrsohn/gulp-protractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
109 lines (95 loc) · 2.86 KB
/
index.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
var es = require('event-stream');
var fs = require('fs');
var path = require('path');
var child_process = require('child_process');
var async = require('async');
var PluginError = require('gulp-util').PluginError;
var winExt = /^win/.test(process.platform)?".cmd":"";
// optimization: cache for protractor binaries directory
var protractorDir = null;
function getProtractorDir() {
if (protractorDir) {
return protractorDir;
}
var result = require.resolve("protractor");
if (result) {
// result is now something like
// c:\\Source\\gulp-protractor\\node_modules\\protractor\\lib\\protractor.js
protractorDir = path.resolve(path.join(path.dirname(result), "..", "..", ".bin"));
return protractorDir;
}
throw new Error("No protractor installation found.");
}
var protractor = function(options) {
var files = [],
child, args;
options = options || {};
args = options.args || [];
return es.through(function(file) {
files.push(file.path);
this.push(file);
}, function() {
var stream = this;
// Enable debug mode
if (options.debug) {
args.push('debug');
}
// Attach Files, if any
if (files.length) {
args.push('--specs');
args.push(files.join(','));
}
// Pass in the config file
if (options.configFile) {
args.unshift(options.configFile);
}
child = child_process.spawn(path.resolve(getProtractorDir() + '/protractor'+winExt), args, {
stdio: 'inherit',
env: process.env
}).on('exit', function(code) {
if (child) {
child.kill();
}
if (stream) {
if (code) {
stream.emit('error', new PluginError('gulp-protractor', 'protractor exited with code ' + code));
}
else {
stream.emit('end');
}
}
});
});
};
var webdriver_update = function(opts, cb) {
var callback = (cb ? cb : opts);
var options = (cb ? opts : null);
var args = ["update", "--standalone"];
if (options) {
if (options.browsers) {
options.browsers.forEach(function(element, index, array) {
args.push("--" + element);
});
}
}
child_process.spawn(path.resolve(getProtractorDir() + '/webdriver-manager'+winExt), args, {
stdio: 'inherit'
}).once('close', callback);
};
var webdriver_update_specific = function(opts) {
return webdriver_update.bind(this, opts);
};
webdriver_update.bind(null, ["ie", "chrome"])
var webdriver_standalone = function(opts, cb) {
var callback = (cb ? cb : opts);
var options = (cb ? opts : {});
return child = child_process.spawn(path.resolve(getProtractorDir() + '/webdriver-manager'+winExt), ['start'], options
).once('close', cb);
};
module.exports = {
getProtractorDir: getProtractorDir,
protractor: protractor,
webdriver_standalone: webdriver_standalone,
webdriver_update: webdriver_update,
webdriver_update_specific: webdriver_update_specific
};