Skip to content

Commit f35ecf6

Browse files
AndreyBelyminikulin
authored andcommitted
Implement browser provider (#1)
* Implement browser provider * Add tests * Add TestCafe tests * Add testcafe tests * Overall fixes * Update eslint; Change screenshot test * Disable eslint on node 0.x * Use testcafe from npm * Add utils to files list * Use cross-spawn; multi-OS testing; fix line in README
1 parent 7e080ae commit f35ecf6

17 files changed

+904
-0
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
end_of_line = lf
8+
charset = utf-8
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
indent_style = space
12+
indent_size = 4
13+
14+
[{.eslintrc,*.json,.travis.yml}]
15+
indent_size = 2

.eslintrc

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
{
2+
"parser": "babel-eslint",
3+
"extends": "eslint:recommended",
4+
"rules": {
5+
"no-alert": "error",
6+
"no-array-constructor": "error",
7+
"no-caller": "error",
8+
"no-catch-shadow": "error",
9+
"no-console": "error",
10+
"no-eval": "error",
11+
"no-extend-native": "error",
12+
"no-extra-bind": "error",
13+
"no-implied-eval": "error",
14+
"no-iterator": "error",
15+
"no-label-var": "error",
16+
"no-labels": "error",
17+
"no-lone-blocks": "error",
18+
"no-loop-func": "error",
19+
"no-multi-str": "error",
20+
"no-native-reassign": "error",
21+
"no-new": "error",
22+
"no-new-func": "error",
23+
"no-new-object": "error",
24+
"no-new-wrappers": "error",
25+
"no-octal-escape": "error",
26+
"no-proto": "error",
27+
"no-return-assign": "error",
28+
"no-script-url": "error",
29+
"no-sequences": "error",
30+
"no-shadow": "error",
31+
"no-shadow-restricted-names": "error",
32+
"no-spaced-func": "error",
33+
"no-undef-init": "error",
34+
"no-unused-expressions": "error",
35+
"no-with": "error",
36+
"camelcase": "error",
37+
"comma-spacing": "error",
38+
"consistent-return": "error",
39+
"eqeqeq": "error",
40+
"semi": "error",
41+
"semi-spacing": ["error", {"before": false, "after": true}],
42+
"space-infix-ops": "error",
43+
"space-unary-ops": ["error", { "words": true, "nonwords": false }],
44+
"yoda": ["error", "never"],
45+
"brace-style": ["error", "stroustrup", { "allowSingleLine": false }],
46+
"eol-last": "error",
47+
"indent": ["error", 4, { "SwitchCase": 1 }],
48+
"key-spacing": ["error", { "align": "value" }],
49+
"max-nested-callbacks": ["error", 3],
50+
"new-parens": "error",
51+
"newline-after-var": ["error", "always"],
52+
"no-lonely-if": "error",
53+
"no-multiple-empty-lines": ["error", { "max": 2 }],
54+
"no-nested-ternary": "error",
55+
"no-underscore-dangle": "off",
56+
"no-unneeded-ternary": "error",
57+
"object-curly-spacing": ["error", "always"],
58+
"operator-assignment": ["error", "always"],
59+
"quotes": ["error", "single", "avoid-escape"],
60+
"keyword-spacing" : "error",
61+
"space-before-blocks": ["error", "always"],
62+
"prefer-const": "error",
63+
"no-path-concat": "error",
64+
"no-undefined": "error",
65+
"strict": "off",
66+
"curly": ["error", "multi-or-nest"],
67+
"dot-notation": "off",
68+
"no-else-return": "error",
69+
"one-var": ["error", "never"],
70+
"no-multi-spaces": ["error", {
71+
"exceptions": {
72+
"VariableDeclarator": true,
73+
"AssignmentExpression": true
74+
}
75+
}],
76+
"radix": "error",
77+
"no-extra-parens": "error",
78+
"new-cap": ["error", { "capIsNew": false }],
79+
"space-before-function-paren": ["error", "always"],
80+
"no-use-before-define" : ["error", "nofunc"],
81+
"handle-callback-err": "off"
82+
},
83+
"env": {
84+
"node": true
85+
}
86+
}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea
2+
.screenshots
3+
lib
4+
node_modules

.travis.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: node_js
2+
node_js:
3+
- "0.10"
4+
- "stable"
5+
6+
os:
7+
- linux
8+
- osx
9+
10+
env:
11+
matrix:
12+
- GULP_TRAVIS_TASK="test-mocha"
13+
- GULP_TRAVIS_TASK="test-testcafe"
14+
15+
osx_image: xcode8
16+
17+
notifications:
18+
email: false

Gulpfile.js

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
var gulp = require('gulp');
2+
var babel = require('gulp-babel');
3+
var mocha = require('gulp-mocha');
4+
var del = require('del');
5+
var path = require('path');
6+
var nodeVersion = require('node-version');
7+
var spawn = require('./utils/spawn');
8+
9+
10+
var packageParentDir = path.join(__dirname, '../');
11+
var packageSearchPath = (process.env.NODE_PATH ? process.env.NODE_PATH + path.delimiter : '') + packageParentDir;
12+
13+
14+
gulp.task('clean', function () {
15+
return del(['lib', '.screenshots']);
16+
});
17+
18+
gulp.task('lint', function () {
19+
// TODO: eslint supports node version 4 or higher.
20+
// Remove this condition once we get rid of node 0.10 support.
21+
if (nodeVersion.major === '0')
22+
return null;
23+
24+
var eslint = require('gulp-eslint');
25+
26+
return gulp
27+
.src([
28+
'src/**/*.js',
29+
'test/**/*.js',
30+
'Gulpfile.js'
31+
])
32+
.pipe(eslint())
33+
.pipe(eslint.format())
34+
.pipe(eslint.failAfterError());
35+
});
36+
37+
gulp.task('build', ['clean', 'lint'], function () {
38+
return gulp
39+
.src('src/**/*.js')
40+
.pipe(babel())
41+
.pipe(gulp.dest('lib'));
42+
});
43+
44+
gulp.task('test-mocha-internal', ['build'], function () {
45+
return gulp
46+
.src('test/mocha/**/*.js')
47+
.pipe(mocha({
48+
ui: 'bdd',
49+
reporter: 'spec',
50+
timeout: typeof v8debug === 'undefined' ? 2000 : Infinity // NOTE: disable timeouts in debug
51+
}));
52+
});
53+
54+
gulp.task('test-mocha', function () {
55+
var gulpCmd = path.join(__dirname, 'node_modules/.bin/gulp');
56+
57+
return spawn(gulpCmd, ['test-mocha-internal'], { NODE_PATH: packageSearchPath });
58+
});
59+
60+
gulp.task('test-testcafe-internal', ['build'], function () {
61+
var testCafeCmd = path.join(__dirname, 'node_modules/.bin/testcafe');
62+
63+
return spawn(testCafeCmd, ['saucelabs:chrome', 'test/testcafe/**/*.js', '-s', '.screenshots']);
64+
});
65+
66+
gulp.task('test-testcafe', function () {
67+
var gulpCmd = path.join(__dirname, 'node_modules/.bin/gulp');
68+
69+
return spawn(gulpCmd, ['test-testcafe-internal'], { NODE_PATH: packageSearchPath });
70+
});
71+
72+
if (process.env['GULP_TRAVIS_TASK'])
73+
gulp.task('travis', [process.env['GULP_TRAVIS_TASK']]);
74+

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (C) 2016 Developer Express Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# testcafe-browser-provider-saucelabs
2+
[![Build Status](https://travis-ci.org/DevExpress/testcafe-browser-provider-saucelabs.svg)](https://travis-ci.org/DevExpress/testcafe-browser-provider-saucelabs)
3+
4+
This is the [TestCafe](http://devexpress.github.io/testcafe) browser provider plugin for the integration with the [SauceLabs Testing Cloud](https://saucelabs.com/).
5+
6+
## Install
7+
8+
```
9+
npm install testcafe-browser-provider-saucelabs
10+
```
11+
12+
## Usage
13+
Before using the provider, save the SauceLabs username and access key to environment variables `SAUCELABS_USERNAME` and `SAUCELABS_ACCESS_KEY`, as described in [SauceLabs documentation](https://wiki.saucelabs.com/display/DOCS/Best+Practice%3A+Use+Environment+Variables+for+Authentication+Credentials).
14+
15+
You can determine the available browser aliases by running
16+
```
17+
testcafe -b saucelabs
18+
```
19+
20+
When you run tests from the command line, use the browser alias when specifying browsers:
21+
22+
```
23+
testcafe "saucelabs:Chrome@beta:Windows 10" 'path/to/test/file.js'
24+
```
25+
26+
27+
When you use API, pass the alias to the `browsers()` method:
28+
29+
```js
30+
testCafe
31+
.createRunner()
32+
.src('path/to/test/file.js')
33+
.browsers('saucelabs:Chrome@beta:Windows 10')
34+
.run();
35+
```
36+
37+
## Author
38+
Developer Express Inc. (https://devexpress.com)

appveyor.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: "#{build}"
2+
clone_depth: 1
3+
branches:
4+
only:
5+
- master
6+
7+
environment:
8+
matrix:
9+
- nodejs_version: "0.10"
10+
GULP_TRAVIS_TASK: "test-mocha"
11+
- nodejs_version: "stable"
12+
GULP_TRAVIS_TASK: "test-mocha"
13+
- nodejs_version: "0.10"
14+
GULP_TRAVIS_TASK: "test-testcafe"
15+
- nodejs_version: "stable"
16+
GULP_TRAVIS_TASK: "test-testcafe"
17+
18+
install:
19+
- ps: Install-Product node $env:nodejs_version
20+
- cmd: >-
21+
node --version
22+
23+
npm --version
24+
25+
npm install
26+
27+
build: off
28+
test_script:
29+
- cmd: npm test

package.json

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"name": "testcafe-browser-provider-saucelabs",
3+
"version": "1.0.0",
4+
"description": "saucelabs TestCafe browser provider plugin.",
5+
"repository": "https://github.com/DevExpress/testcafe-browser-provider-saucelabs",
6+
"homepage": "https://github.com/DevExpress/testcafe-browser-provider-saucelabs",
7+
"author": {
8+
"name": "Developer Express Inc.",
9+
"url": "https://devexpress.com"
10+
},
11+
"main": "lib/index",
12+
"files": [
13+
"lib",
14+
"utils"
15+
],
16+
"scripts": {
17+
"test": "gulp travis",
18+
"publish-please": "publish-please",
19+
"prepublish": "publish-please guard"
20+
},
21+
"keywords": [
22+
"testcafe",
23+
"browser provider",
24+
"plugin",
25+
"saucelabs"
26+
],
27+
"license": "MIT",
28+
"dependencies": {
29+
"babel-runtime": "^6.11.6",
30+
"desired-capabilities": "^0.1.0",
31+
"lodash": "^4.14.2",
32+
"pify": "^2.3.0",
33+
"pinkie": "^2.0.4",
34+
"request": "^2.74.0",
35+
"saucelabs-connector": "^0.2.0"
36+
},
37+
"devDependencies": {
38+
"babel-eslint": "^6.1.2",
39+
"babel-plugin-add-module-exports": "^0.2.1",
40+
"babel-plugin-transform-runtime": "^6.12.0",
41+
"babel-preset-es2015": "^6.13.2",
42+
"babel-preset-es2015-loose": "^7.0.0",
43+
"babel-preset-stage-3": "^6.11.0",
44+
"chai": "^3.5.0",
45+
"cross-spawn": "^4.0.0",
46+
"del": "^2.0.0",
47+
"gulp": "^3.9.0",
48+
"gulp-babel": "^6.1.2",
49+
"gulp-eslint": "^3.0.1",
50+
"gulp-mocha": "^3.0.1",
51+
"node-version": "^1.0.0",
52+
"publish-please": "^2.1.4",
53+
"testcafe": "^0.3.0-alpha",
54+
"tmp": "0.0.28"
55+
}
56+
}

src/.babelrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"compact": false,
3+
"presets": [
4+
"es2015-loose",
5+
"babel-preset-stage-3"
6+
],
7+
"plugins": [
8+
"transform-runtime",
9+
"add-module-exports"
10+
]
11+
}

0 commit comments

Comments
 (0)