Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit a1c91a2

Browse files
committed
fix(config): Make all file paths in config files relative to the config file itself
Breaking Change Previously, onPrepare and specs were relative to the location of the config, but seleniumServerJar and chromeDriver were relative to the cwd when the test was called. If you were calling the tests from somewhere other than the same directory as the config location, you will need to change the paths of seleniumServerJar and/or chromeDriver. Closes #222.
1 parent f3be172 commit a1c91a2

9 files changed

+36
-23
lines changed

example/chromeOnlyConf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
exports.config = {
33
// Do not start a Selenium Standalone sever - only run this using chrome.
44
chromeOnly: true,
5-
chromeDriver: './selenium/chromedriver',
5+
chromeDriver: '../selenium/chromedriver',
66

77
// Capabilities to be passed to the webdriver instance.
88
capabilities: {

lib/cli.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ var argv = require('optimist').
4242
}).
4343
argv;
4444

45-
46-
var configPath;
47-
48-
4945
var printVersion = function () {
5046
util.puts('Version ' + JSON.parse(
5147
fs.readFileSync(__dirname + '/../package.json', 'utf8')).version);
@@ -56,18 +52,25 @@ if (argv.version) {
5652
printVersion();
5753
}
5854

55+
// Any file names should be resolved relative to the current working directory.
5956
if (argv.specs) {
6057
argv.specs = argv.specs.split(',');
6158
argv.specs.forEach(function(spec, index, arr) {
6259
arr[index] = path.resolve(process.cwd(), spec);
6360
});
6461
}
62+
['seleniumServerJar', 'chromeDriver', 'onPrepare'].forEach(function(name) {
63+
if (argv[name]) {
64+
argv[name] = path.resolve(process.cwd(), argv[name]);
65+
}
66+
});
6567

6668
var configFilename = argv._[0];
6769
if (configFilename) {
68-
configPath = path.resolve(process.cwd(), configFilename);
69-
runner.addConfig(require(configPath).config);
70-
runner.addConfig({specFileBase: path.dirname(configPath)})
70+
var configPath = path.resolve(process.cwd(), configFilename);
71+
config = require(configPath).config;
72+
config.configDir = path.dirname(configPath);
73+
runner.addConfig(config);
7174
}
7275

7376
runner.addConfig(argv);

lib/runner.js

+13-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var sauceAccount;
1717

1818
// Default configuration.
1919
var config = {
20-
specFileBase: './',
20+
configDir: './',
2121
seleniumServerJar: null,
2222
seleniumArgs: [],
2323
seleniumPort: null,
@@ -60,6 +60,15 @@ var merge = function(into, from) {
6060
* @param {Object} additionalConfig
6161
*/
6262
var addConfig = function(additionalConfig) {
63+
// All filepaths should be kept relative to the current config location.
64+
// This will not affect absolute paths.
65+
['seleniumServerJar', 'chromeDriver', 'onPrepare'].forEach(function(name) {
66+
if (additionalConfig[name] && additionalConfig.configDir &&
67+
typeof additionalConfig[name] == 'string') {
68+
additionalConfig[name] =
69+
path.resolve(additionalConfig.configDir, additionalConfig[name]);
70+
}
71+
})
6372
merge(config, additionalConfig);
6473
};
6574

@@ -183,12 +192,12 @@ var runJasmineTests = function() {
183192
}
184193
var resolvedSpecs = [];
185194
for (var i = 0; i < specs.length; ++i) {
186-
var matches = glob.sync(specs[i], {cwd: config.specFileBase});
195+
var matches = glob.sync(specs[i], {cwd: config.configDir});
187196
if (!matches.length) {
188197
util.puts('Warning: pattern ' + specs[i] + ' did not match any files.');
189198
}
190199
for (var j = 0; j < matches.length; ++j) {
191-
resolvedSpecs.push(path.resolve(config.specFileBase, matches[j]));
200+
resolvedSpecs.push(path.resolve(config.configDir, matches[j]));
192201
}
193202
}
194203
if (!resolvedSpecs.length) {
@@ -245,7 +254,7 @@ var runJasmineTests = function() {
245254
if (typeof config.onPrepare == 'function') {
246255
config.onPrepare();
247256
} else if (typeof config.onPrepare == 'string') {
248-
require(path.resolve(config.specFileBase, config.onPrepare));
257+
require(path.resolve(config.configDir, config.onPrepare));
249258
} else {
250259
throw 'config.onPrepare must be a string or function';
251260
}

referenceConf.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ exports.config = {
1414
// and chromeDriver will be used directly (from the location specified in
1515
// chromeDriver)
1616

17-
// The location of the selenium standalone server .jar file.
17+
// The location of the selenium standalone server .jar file, relative
18+
// to the location of this config.
1819
seleniumServerJar: './selenium/selenium-server-standalone-2.37.0.jar',
1920
// The port to start the selenium server on, or null if the server should
2021
// find its own unused port.

spec/altRootConf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Tests for an Angular app where ng-app is not on the body.
22
exports.config = {
3-
seleniumServerJar: './selenium/selenium-server-standalone-2.35.0.jar',
4-
chromeDriver: './selenium/chromedriver',
3+
seleniumServerJar: '../selenium/selenium-server-standalone-2.37.0.jar',
4+
chromeDriver: '../selenium/chromedriver',
55

66
seleniumAddress: 'http://localhost:4444/wd/hub',
77

spec/basicConf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// The main suite of Protractor tests.
22
exports.config = {
3-
seleniumServerJar: './selenium/selenium-server-standalone-2.35.0.jar',
4-
chromeDriver: './selenium/chromedriver',
3+
seleniumServerJar: '../selenium/selenium-server-standalone-2.37.0.jar',
4+
chromeDriver: '../selenium/chromedriver',
55

66
seleniumAddress: 'http://localhost:4444/wd/hub',
77

spec/junitOutputConf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ require('jasmine-reporters');
55

66
// The main suite of Protractor tests.
77
exports.config = {
8-
seleniumServerJar: './selenium/selenium-server-standalone-2.35.0.jar',
9-
chromeDriver: './selenium/chromedriver',
8+
seleniumServerJar: '../selenium/selenium-server-standalone-2.35.0.jar',
9+
chromeDriver: '../selenium/chromedriver',
1010

1111
seleniumAddress: 'http://localhost:4444/wd/hub',
1212

spec/onPrepareConf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// The main suite of Protractor tests.
22
exports.config = {
3-
seleniumServerJar: './selenium/selenium-server-standalone-2.35.0.jar',
4-
chromeDriver: './selenium/chromedriver',
3+
seleniumServerJar: '../selenium/selenium-server-standalone-2.35.0.jar',
4+
chromeDriver: '../selenium/chromedriver',
55

66
seleniumAddress: 'http://localhost:4444/wd/hub',
77

spec/onPrepareStringConf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Configuration using a string in onPrepare to load a file with code to
22
// execute once before tests.
33
exports.config = {
4-
seleniumServerJar: './selenium/selenium-server-standalone-2.35.0.jar',
5-
chromeDriver: './selenium/chromedriver',
4+
seleniumServerJar: '../selenium/selenium-server-standalone-2.35.0.jar',
5+
chromeDriver: '../selenium/chromedriver',
66

77
seleniumAddress: 'http://localhost:4444/wd/hub',
88

0 commit comments

Comments
 (0)