bt-runner 2.0.0-beta.4 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generator.js +7 -5
- package/package.json +1 -1
- package/tmp/browsertests-2fcYZ0/index1.html +36 -0
- package/tmp/browsertests-2fcYZ0/mocha1.test.js +60 -0
- package/tmp/browsertests-2fcYZ0/nightwatch.json +1 -0
- package/tmp/browsertests-V08Qr0/index1.html +36 -0
- package/tmp/browsertests-V08Qr0/mocha1.test.js +60 -0
- package/tmp/browsertests-V08Qr0/nightwatch.json +1 -0
- package/tmp/browsertests-VU06XW/index1.html +36 -0
- package/tmp/browsertests-VU06XW/mocha1.test.js +58 -0
- package/tmp/browsertests-VU06XW/nightwatch.json +38 -0
- package/tmp/browsertests-X9vFHn/index1.html +36 -0
- package/tmp/browsertests-X9vFHn/mocha1.test.js +60 -0
- package/tmp/browsertests-X9vFHn/nightwatch.json +1 -0
- package/tmp/browsertests-eRN2ih/index1.html +36 -0
- package/tmp/browsertests-eRN2ih/mocha1.test.js +59 -0
- package/tmp/browsertests-eRN2ih/nightwatch.json +1 -0
- package/tmp/browsertests-iEIWXm/index1.html +36 -0
- package/tmp/browsertests-iEIWXm/mocha1.test.js +59 -0
- package/tmp/browsertests-iEIWXm/nightwatch.json +1 -0
package/dist/generator.js
CHANGED
@@ -85,7 +85,7 @@ function writeTestFile(outputPath, iteration, globals) {
|
|
85
85
|
const globalsString = globals
|
86
86
|
.map((glob) => `if (!window.${glob}) {
|
87
87
|
logs.push(["Required library '${glob}' not loaded. Aborting..."])
|
88
|
-
|
88
|
+
localDone({ failures: 1, logs: logs })
|
89
89
|
return
|
90
90
|
}`)
|
91
91
|
.join("\n");
|
@@ -105,19 +105,21 @@ function writeTestFile(outputPath, iteration, globals) {
|
|
105
105
|
client.waitForElementVisible("#main")
|
106
106
|
client.timeoutsAsyncScript(1500000).executeAsync(
|
107
107
|
(_data, done) => {
|
108
|
+
const localDone = typeof _data === "function" ? _data : done
|
109
|
+
|
108
110
|
const mocha = window.mocha
|
109
111
|
|
110
112
|
//add required test librarys in this if statement
|
111
113
|
if (!mocha) {
|
112
114
|
logs.push(["Required library 'mocha' not loaded. Aborting..."])
|
113
|
-
|
115
|
+
localDone({ failures: 1, logs: logs })
|
114
116
|
return
|
115
117
|
}
|
116
118
|
|
117
119
|
${globalsString}
|
118
|
-
|
120
|
+
|
119
121
|
mocha.run(function (failures) {
|
120
|
-
|
122
|
+
localDone({ failures: failures, logs: logs })
|
121
123
|
})
|
122
124
|
},
|
123
125
|
[],
|
@@ -183,7 +185,7 @@ function writeConfig(outputPath, port) {
|
|
183
185
|
"goog:chromeOptions": {
|
184
186
|
w3c: true,
|
185
187
|
args: [
|
186
|
-
|
188
|
+
"--headless",
|
187
189
|
"--disable-gpu",
|
188
190
|
"--ignore-certificate-errors",
|
189
191
|
"--no-sandbox",
|
package/package.json
CHANGED
@@ -0,0 +1,36 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Mocha Tests</title>
|
5
|
+
</head>
|
6
|
+
|
7
|
+
<body>
|
8
|
+
<div id="mocha"></div>
|
9
|
+
|
10
|
+
|
11
|
+
<script>
|
12
|
+
window.logs = []
|
13
|
+
const oldLog = console.log
|
14
|
+
console.log = function () {
|
15
|
+
oldLog.apply(console, arguments)
|
16
|
+
window.logs.push(Array.from(arguments))
|
17
|
+
}
|
18
|
+
</script>
|
19
|
+
|
20
|
+
|
21
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.2.0/mocha.min.js"></script>
|
22
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
|
23
|
+
<script>
|
24
|
+
mocha.setup("bdd")
|
25
|
+
mocha.reporter("spec")
|
26
|
+
</script>
|
27
|
+
<script>
|
28
|
+
window.TEST = {}
|
29
|
+
window.TEST2 = {}
|
30
|
+
</script>
|
31
|
+
|
32
|
+
<script src="/test/test.js"></script>
|
33
|
+
|
34
|
+
<div id="main">Test</div>
|
35
|
+
</body>
|
36
|
+
</html>
|
@@ -0,0 +1,60 @@
|
|
1
|
+
const expect = require("chai").expect
|
2
|
+
|
3
|
+
describe("Browser Mocha Tests", function () {
|
4
|
+
beforeEach((client, done) => {
|
5
|
+
client.url("http://localhost:7777/test-browser/index1.html")
|
6
|
+
done()
|
7
|
+
})
|
8
|
+
|
9
|
+
after((client, done) => {
|
10
|
+
client.end(() => done())
|
11
|
+
})
|
12
|
+
|
13
|
+
it("Should run the Mocha tests without error", (client) => {
|
14
|
+
client.waitForElementVisible("#main")
|
15
|
+
client.timeoutsAsyncScript(1500000).executeAsync(
|
16
|
+
(done) => {
|
17
|
+
const localDone = done
|
18
|
+
|
19
|
+
const mocha = window.mocha
|
20
|
+
|
21
|
+
//add required test librarys in this if statement
|
22
|
+
if (!mocha) {
|
23
|
+
logs.push(["Required library 'mocha' not loaded. Aborting..."])
|
24
|
+
localDone({ failures: 1, logs: logs })
|
25
|
+
return
|
26
|
+
}
|
27
|
+
|
28
|
+
if (!window.TEST) {
|
29
|
+
logs.push(["Required library 'TEST' not loaded. Aborting..."])
|
30
|
+
localDone({ failures: 1, logs: logs })
|
31
|
+
return
|
32
|
+
}
|
33
|
+
if (!window.TEST2) {
|
34
|
+
logs.push(["Required library 'TEST2' not loaded. Aborting..."])
|
35
|
+
localDone({ failures: 1, logs: logs })
|
36
|
+
return
|
37
|
+
}
|
38
|
+
|
39
|
+
mocha.run(function (failures) {
|
40
|
+
localDone({ failures: failures, logs: logs })
|
41
|
+
})
|
42
|
+
},
|
43
|
+
[],
|
44
|
+
(result) => {
|
45
|
+
console.log("\n--- browser mocha output ---")
|
46
|
+
|
47
|
+
if (result && result.value && result.value.logs) {
|
48
|
+
for (const logs of result.value.logs) {
|
49
|
+
console.log.apply(null, logs)
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
console.log("--- finished browser mocha output ---")
|
54
|
+
|
55
|
+
expect(result.value).to.not.be.undefined
|
56
|
+
expect(result.value.failures).to.equal(0)
|
57
|
+
}
|
58
|
+
)
|
59
|
+
})
|
60
|
+
})
|
@@ -0,0 +1 @@
|
|
1
|
+
{"src_folders":["/home/julian/git/jss/docker-node-browsertests/test-runner/tmp/browsertests-2fcYZ0"],"filter":"*.test.js","webdriver":{"start_process":true,"server_path":"/home/julian/.local/lib/node_modules/chromedriver/lib/chromedriver/chromedriver","port":9515},"test_runner":{"type":"mocha","options":{"ui":"bdd","reporter":"spec"}},"test_settings":{"default":{"request_timeout_options":{"timeout":1500000},"desiredCapabilities":{"javascriptEnabled":true,"acceptSslCerts":true,"acceptInsecureCerts":true,"browserName":"chrome","goog:chromeOptions":{"w3c":true,"args":["--disable-gpu","--ignore-certificate-errors","--no-sandbox","--disable-features=NetworkService"],"binary":"/usr/bin/google-chrome"}}}},"globals":{"waitForConditionTimeout":100000,"asyncHookTimeout":1500000,"unitTestsTimeout":100000,"customReporterCallbackTimeout":100000,"retryAssertionTimeout":50000}}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Mocha Tests</title>
|
5
|
+
</head>
|
6
|
+
|
7
|
+
<body>
|
8
|
+
<div id="mocha"></div>
|
9
|
+
|
10
|
+
|
11
|
+
<script>
|
12
|
+
window.logs = []
|
13
|
+
const oldLog = console.log
|
14
|
+
console.log = function () {
|
15
|
+
oldLog.apply(console, arguments)
|
16
|
+
window.logs.push(Array.from(arguments))
|
17
|
+
}
|
18
|
+
</script>
|
19
|
+
|
20
|
+
|
21
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.2.0/mocha.min.js"></script>
|
22
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
|
23
|
+
<script>
|
24
|
+
mocha.setup("bdd")
|
25
|
+
mocha.reporter("spec")
|
26
|
+
</script>
|
27
|
+
<script>
|
28
|
+
window.TEST = {}
|
29
|
+
window.TEST2 = {}
|
30
|
+
</script>
|
31
|
+
|
32
|
+
<script src="/test/test.js"></script>
|
33
|
+
|
34
|
+
<div id="main">Test</div>
|
35
|
+
</body>
|
36
|
+
</html>
|
@@ -0,0 +1,60 @@
|
|
1
|
+
const expect = require("chai").expect
|
2
|
+
|
3
|
+
describe("Browser Mocha Tests", function () {
|
4
|
+
beforeEach((client, done) => {
|
5
|
+
client.url("http://localhost:7777/test-browser/index1.html")
|
6
|
+
done()
|
7
|
+
})
|
8
|
+
|
9
|
+
after((client, done) => {
|
10
|
+
client.end(() => done())
|
11
|
+
})
|
12
|
+
|
13
|
+
it("Should run the Mocha tests without error", (client) => {
|
14
|
+
client.waitForElementVisible("#main")
|
15
|
+
client.timeoutsAsyncScript(1500000).executeAsync(
|
16
|
+
(_data, done) => {
|
17
|
+
const localDone = typeof _data === "function" ? _data : done
|
18
|
+
|
19
|
+
const mocha = window.mocha
|
20
|
+
|
21
|
+
//add required test librarys in this if statement
|
22
|
+
if (!mocha) {
|
23
|
+
logs.push(["Required library 'mocha' not loaded. Aborting..."])
|
24
|
+
localDone({ failures: 1, logs: logs })
|
25
|
+
return
|
26
|
+
}
|
27
|
+
|
28
|
+
if (!window.TEST) {
|
29
|
+
logs.push(["Required library 'TEST' not loaded. Aborting..."])
|
30
|
+
localDone({ failures: 1, logs: logs })
|
31
|
+
return
|
32
|
+
}
|
33
|
+
if (!window.TEST2) {
|
34
|
+
logs.push(["Required library 'TEST2' not loaded. Aborting..."])
|
35
|
+
localDone({ failures: 1, logs: logs })
|
36
|
+
return
|
37
|
+
}
|
38
|
+
|
39
|
+
mocha.run(function (failures) {
|
40
|
+
localDone({ failures: failures, logs: logs })
|
41
|
+
})
|
42
|
+
},
|
43
|
+
[],
|
44
|
+
(result) => {
|
45
|
+
console.log("\n--- browser mocha output ---")
|
46
|
+
|
47
|
+
if (result && result.value && result.value.logs) {
|
48
|
+
for (const logs of result.value.logs) {
|
49
|
+
console.log.apply(null, logs)
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
console.log("--- finished browser mocha output ---")
|
54
|
+
|
55
|
+
expect(result.value).to.not.be.undefined
|
56
|
+
expect(result.value.failures).to.equal(0)
|
57
|
+
}
|
58
|
+
)
|
59
|
+
})
|
60
|
+
})
|
@@ -0,0 +1 @@
|
|
1
|
+
{"src_folders":["/home/julian/git/jss/docker-node-browsertests/test-runner/tmp/browsertests-V08Qr0"],"filter":"*.test.js","webdriver":{"start_process":true,"server_path":"/home/julian/.local/lib/node_modules/chromedriver/lib/chromedriver/chromedriver","port":9515},"test_runner":{"type":"mocha","options":{"ui":"bdd","reporter":"spec"}},"test_settings":{"default":{"request_timeout_options":{"timeout":1500000},"desiredCapabilities":{"javascriptEnabled":true,"acceptSslCerts":true,"acceptInsecureCerts":true,"browserName":"chrome","goog:chromeOptions":{"w3c":true,"args":["--disable-gpu","--ignore-certificate-errors","--no-sandbox","--disable-features=NetworkService"],"binary":"/usr/bin/google-chrome"}}}},"globals":{"waitForConditionTimeout":100000,"asyncHookTimeout":1500000,"unitTestsTimeout":100000,"customReporterCallbackTimeout":100000,"retryAssertionTimeout":50000}}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Mocha Tests</title>
|
5
|
+
</head>
|
6
|
+
|
7
|
+
<body>
|
8
|
+
<div id="mocha"></div>
|
9
|
+
|
10
|
+
|
11
|
+
<script>
|
12
|
+
window.logs = []
|
13
|
+
const oldLog = console.log
|
14
|
+
console.log = function () {
|
15
|
+
oldLog.apply(console, arguments)
|
16
|
+
window.logs.push(Array.from(arguments))
|
17
|
+
}
|
18
|
+
</script>
|
19
|
+
|
20
|
+
|
21
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.2.0/mocha.min.js"></script>
|
22
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
|
23
|
+
<script>
|
24
|
+
mocha.setup("bdd")
|
25
|
+
mocha.reporter("spec")
|
26
|
+
</script>
|
27
|
+
<script>
|
28
|
+
window.TEST = {}
|
29
|
+
window.TEST2 = {}
|
30
|
+
</script>
|
31
|
+
|
32
|
+
<script src="/test/test.js"></script>
|
33
|
+
|
34
|
+
<div id="main">Test</div>
|
35
|
+
</body>
|
36
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
const expect = require("chai").expect
|
2
|
+
|
3
|
+
describe("Browser Mocha Tests", function () {
|
4
|
+
beforeEach((client, done) => {
|
5
|
+
client.url("http://localhost:7777/test-browser/index1.html")
|
6
|
+
done()
|
7
|
+
})
|
8
|
+
|
9
|
+
after((client, done) => {
|
10
|
+
client.end(() => done())
|
11
|
+
})
|
12
|
+
|
13
|
+
it("Should run the Mocha tests without error", (client) => {
|
14
|
+
client.waitForElementVisible("#main")
|
15
|
+
client.timeoutsAsyncScript(1500000).executeAsync(
|
16
|
+
(_data, done) => {
|
17
|
+
const mocha = window.mocha
|
18
|
+
|
19
|
+
//add required test librarys in this if statement
|
20
|
+
if (!mocha) {
|
21
|
+
logs.push(["Required library 'mocha' not loaded. Aborting..."])
|
22
|
+
done({ failures: 1, logs: logs })
|
23
|
+
return
|
24
|
+
}
|
25
|
+
|
26
|
+
if (!window.TEST) {
|
27
|
+
logs.push(["Required library 'TEST' not loaded. Aborting..."])
|
28
|
+
done({ failures: 1, logs: logs })
|
29
|
+
return
|
30
|
+
}
|
31
|
+
if (!window.TEST2) {
|
32
|
+
logs.push(["Required library 'TEST2' not loaded. Aborting..."])
|
33
|
+
done({ failures: 1, logs: logs })
|
34
|
+
return
|
35
|
+
}
|
36
|
+
|
37
|
+
mocha.run(function (failures) {
|
38
|
+
done({ failures: failures, logs: logs })
|
39
|
+
})
|
40
|
+
},
|
41
|
+
[],
|
42
|
+
(result) => {
|
43
|
+
console.log("\n--- browser mocha output ---")
|
44
|
+
|
45
|
+
if (result && result.value && result.value.logs) {
|
46
|
+
for (const logs of result.value.logs) {
|
47
|
+
console.log.apply(null, logs)
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
console.log("--- finished browser mocha output ---")
|
52
|
+
|
53
|
+
expect(result.value).to.not.be.undefined
|
54
|
+
expect(result.value.failures).to.equal(0)
|
55
|
+
}
|
56
|
+
)
|
57
|
+
})
|
58
|
+
})
|
@@ -0,0 +1,38 @@
|
|
1
|
+
{
|
2
|
+
"src_folders": ["/home/julian/git/jss/docker-node-browsertests/test-runner/tmp/browsertests-VU06XW"],
|
3
|
+
"filter": "*.test.js",
|
4
|
+
"webdriver": {
|
5
|
+
"start_process": true,
|
6
|
+
"server_path": "/home/julian/.local/lib/node_modules/chromedriver/lib/chromedriver/chromedriver",
|
7
|
+
"port": 9515
|
8
|
+
},
|
9
|
+
"test_runner": { "type": "mocha", "options": { "ui": "bdd", "reporter": "spec" } },
|
10
|
+
"test_settings": {
|
11
|
+
"default": {
|
12
|
+
"request_timeout_options": { "timeout": 1500000 },
|
13
|
+
"desiredCapabilities": {
|
14
|
+
"javascriptEnabled": true,
|
15
|
+
"acceptSslCerts": true,
|
16
|
+
"acceptInsecureCerts": true,
|
17
|
+
"browserName": "chrome",
|
18
|
+
"goog:chromeOptions": {
|
19
|
+
"w3c": true,
|
20
|
+
"args": [
|
21
|
+
"--disable-gpu",
|
22
|
+
"--ignore-certificate-errors",
|
23
|
+
"--no-sandbox",
|
24
|
+
"--disable-features=NetworkService"
|
25
|
+
],
|
26
|
+
"binary": "/usr/bin/google-chrome"
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"globals": {
|
32
|
+
"waitForConditionTimeout": 100000,
|
33
|
+
"asyncHookTimeout": 1500000,
|
34
|
+
"unitTestsTimeout": 100000,
|
35
|
+
"customReporterCallbackTimeout": 100000,
|
36
|
+
"retryAssertionTimeout": 50000
|
37
|
+
}
|
38
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Mocha Tests</title>
|
5
|
+
</head>
|
6
|
+
|
7
|
+
<body>
|
8
|
+
<div id="mocha"></div>
|
9
|
+
|
10
|
+
|
11
|
+
<script>
|
12
|
+
window.logs = []
|
13
|
+
const oldLog = console.log
|
14
|
+
console.log = function () {
|
15
|
+
oldLog.apply(console, arguments)
|
16
|
+
window.logs.push(Array.from(arguments))
|
17
|
+
}
|
18
|
+
</script>
|
19
|
+
|
20
|
+
|
21
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.2.0/mocha.min.js"></script>
|
22
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
|
23
|
+
<script>
|
24
|
+
mocha.setup("bdd")
|
25
|
+
mocha.reporter("spec")
|
26
|
+
</script>
|
27
|
+
<script>
|
28
|
+
window.TEST = {}
|
29
|
+
window.TEST2 = {}
|
30
|
+
</script>
|
31
|
+
|
32
|
+
<script src="/test/test.js"></script>
|
33
|
+
|
34
|
+
<div id="main">Test</div>
|
35
|
+
</body>
|
36
|
+
</html>
|
@@ -0,0 +1,60 @@
|
|
1
|
+
const expect = require("chai").expect
|
2
|
+
|
3
|
+
describe("Browser Mocha Tests", function () {
|
4
|
+
beforeEach((client, done) => {
|
5
|
+
client.url("http://localhost:7777/test-browser/index1.html")
|
6
|
+
done()
|
7
|
+
})
|
8
|
+
|
9
|
+
after((client, done) => {
|
10
|
+
client.end(() => done())
|
11
|
+
})
|
12
|
+
|
13
|
+
it("Should run the Mocha tests without error", (client) => {
|
14
|
+
client.waitForElementVisible("#main")
|
15
|
+
client.timeoutsAsyncScript(1500000).executeAsync(
|
16
|
+
(done) => {
|
17
|
+
const localDone = typeof _data === "function" ? _data : done
|
18
|
+
|
19
|
+
const mocha = window.mocha
|
20
|
+
|
21
|
+
//add required test librarys in this if statement
|
22
|
+
if (!mocha) {
|
23
|
+
logs.push(["Required library 'mocha' not loaded. Aborting..."])
|
24
|
+
localDone({ failures: 1, logs: logs })
|
25
|
+
return
|
26
|
+
}
|
27
|
+
|
28
|
+
if (!window.TEST) {
|
29
|
+
logs.push(["Required library 'TEST' not loaded. Aborting..."])
|
30
|
+
localDone({ failures: 1, logs: logs })
|
31
|
+
return
|
32
|
+
}
|
33
|
+
if (!window.TEST2) {
|
34
|
+
logs.push(["Required library 'TEST2' not loaded. Aborting..."])
|
35
|
+
localDone({ failures: 1, logs: logs })
|
36
|
+
return
|
37
|
+
}
|
38
|
+
|
39
|
+
mocha.run(function (failures) {
|
40
|
+
localDone({ failures: failures, logs: logs })
|
41
|
+
})
|
42
|
+
},
|
43
|
+
[],
|
44
|
+
(result) => {
|
45
|
+
console.log("\n--- browser mocha output ---")
|
46
|
+
|
47
|
+
if (result && result.value && result.value.logs) {
|
48
|
+
for (const logs of result.value.logs) {
|
49
|
+
console.log.apply(null, logs)
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
console.log("--- finished browser mocha output ---")
|
54
|
+
|
55
|
+
expect(result.value).to.not.be.undefined
|
56
|
+
expect(result.value.failures).to.equal(0)
|
57
|
+
}
|
58
|
+
)
|
59
|
+
})
|
60
|
+
})
|
@@ -0,0 +1 @@
|
|
1
|
+
{"src_folders":["/home/julian/git/jss/docker-node-browsertests/test-runner/tmp/browsertests-X9vFHn"],"filter":"*.test.js","webdriver":{"start_process":true,"server_path":"/home/julian/.local/lib/node_modules/chromedriver/lib/chromedriver/chromedriver","port":9515},"test_runner":{"type":"mocha","options":{"ui":"bdd","reporter":"spec"}},"test_settings":{"default":{"request_timeout_options":{"timeout":1500000},"desiredCapabilities":{"javascriptEnabled":true,"acceptSslCerts":true,"acceptInsecureCerts":true,"browserName":"chrome","goog:chromeOptions":{"w3c":true,"args":["--disable-gpu","--ignore-certificate-errors","--no-sandbox","--disable-features=NetworkService"],"binary":"/usr/bin/google-chrome"}}}},"globals":{"waitForConditionTimeout":100000,"asyncHookTimeout":1500000,"unitTestsTimeout":100000,"customReporterCallbackTimeout":100000,"retryAssertionTimeout":50000}}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Mocha Tests</title>
|
5
|
+
</head>
|
6
|
+
|
7
|
+
<body>
|
8
|
+
<div id="mocha"></div>
|
9
|
+
|
10
|
+
|
11
|
+
<script>
|
12
|
+
window.logs = []
|
13
|
+
const oldLog = console.log
|
14
|
+
console.log = function () {
|
15
|
+
oldLog.apply(console, arguments)
|
16
|
+
window.logs.push(Array.from(arguments))
|
17
|
+
}
|
18
|
+
</script>
|
19
|
+
|
20
|
+
|
21
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.2.0/mocha.min.js"></script>
|
22
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
|
23
|
+
<script>
|
24
|
+
mocha.setup("bdd")
|
25
|
+
mocha.reporter("spec")
|
26
|
+
</script>
|
27
|
+
<script>
|
28
|
+
window.TEST = {}
|
29
|
+
window.TEST2 = {}
|
30
|
+
</script>
|
31
|
+
|
32
|
+
<script src="/test/test.js"></script>
|
33
|
+
|
34
|
+
<div id="main">Test</div>
|
35
|
+
</body>
|
36
|
+
</html>
|
@@ -0,0 +1,59 @@
|
|
1
|
+
const expect = require("chai").expect
|
2
|
+
|
3
|
+
describe("Browser Mocha Tests", function () {
|
4
|
+
beforeEach((client, done) => {
|
5
|
+
client.url("http://localhost:7777/test-browser/index1.html")
|
6
|
+
done()
|
7
|
+
})
|
8
|
+
|
9
|
+
after((client, done) => {
|
10
|
+
client.end(() => done())
|
11
|
+
})
|
12
|
+
|
13
|
+
it("Should run the Mocha tests without error", (client) => {
|
14
|
+
client.waitForElementVisible("#main")
|
15
|
+
client.timeoutsAsyncScript(1500000).executeAsync(
|
16
|
+
(done) => {
|
17
|
+
const localDone = done
|
18
|
+
|
19
|
+
const mocha = window.mocha
|
20
|
+
|
21
|
+
//add required test librarys in this if statement
|
22
|
+
if (!mocha) {
|
23
|
+
logs.push(["Required library 'mocha' not loaded. Aborting..."])
|
24
|
+
localDone({ failures: 1, logs: logs })
|
25
|
+
return
|
26
|
+
}
|
27
|
+
|
28
|
+
if (!window.TEST) {
|
29
|
+
logs.push(["Required library 'TEST' not loaded. Aborting..."])
|
30
|
+
localDone({ failures: 1, logs: logs })
|
31
|
+
return
|
32
|
+
}
|
33
|
+
if (!window.TEST2) {
|
34
|
+
logs.push(["Required library 'TEST2' not loaded. Aborting..."])
|
35
|
+
localDone({ failures: 1, logs: logs })
|
36
|
+
return
|
37
|
+
}
|
38
|
+
|
39
|
+
mocha.run(function (failures) {
|
40
|
+
localDone({ failures: failures, logs: logs })
|
41
|
+
})
|
42
|
+
},
|
43
|
+
(result) => {
|
44
|
+
console.log("\n--- browser mocha output ---")
|
45
|
+
|
46
|
+
if (result && result.value && result.value.logs) {
|
47
|
+
for (const logs of result.value.logs) {
|
48
|
+
console.log.apply(null, logs)
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
console.log("--- finished browser mocha output ---")
|
53
|
+
|
54
|
+
expect(result.value).to.not.be.undefined
|
55
|
+
expect(result.value.failures).to.equal(0)
|
56
|
+
}
|
57
|
+
)
|
58
|
+
})
|
59
|
+
})
|
@@ -0,0 +1 @@
|
|
1
|
+
{"src_folders":["/home/julian/git/jss/docker-node-browsertests/test-runner/tmp/browsertests-eRN2ih"],"filter":"*.test.js","webdriver":{"start_process":true,"server_path":"/home/julian/.local/lib/node_modules/chromedriver/lib/chromedriver/chromedriver","port":9515},"test_runner":{"type":"mocha","options":{"ui":"bdd","reporter":"spec"}},"test_settings":{"default":{"request_timeout_options":{"timeout":1500000},"desiredCapabilities":{"javascriptEnabled":true,"acceptSslCerts":true,"acceptInsecureCerts":true,"browserName":"chrome","goog:chromeOptions":{"w3c":true,"args":["--disable-gpu","--ignore-certificate-errors","--no-sandbox","--disable-features=NetworkService"],"binary":"/usr/bin/google-chrome"}}}},"globals":{"waitForConditionTimeout":100000,"asyncHookTimeout":1500000,"unitTestsTimeout":100000,"customReporterCallbackTimeout":100000,"retryAssertionTimeout":50000}}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Mocha Tests</title>
|
5
|
+
</head>
|
6
|
+
|
7
|
+
<body>
|
8
|
+
<div id="mocha"></div>
|
9
|
+
|
10
|
+
|
11
|
+
<script>
|
12
|
+
window.logs = []
|
13
|
+
const oldLog = console.log
|
14
|
+
console.log = function () {
|
15
|
+
oldLog.apply(console, arguments)
|
16
|
+
window.logs.push(Array.from(arguments))
|
17
|
+
}
|
18
|
+
</script>
|
19
|
+
|
20
|
+
|
21
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.2.0/mocha.min.js"></script>
|
22
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
|
23
|
+
<script>
|
24
|
+
mocha.setup("bdd")
|
25
|
+
mocha.reporter("spec")
|
26
|
+
</script>
|
27
|
+
<script>
|
28
|
+
window.TEST = {}
|
29
|
+
window.TEST2 = {}
|
30
|
+
</script>
|
31
|
+
|
32
|
+
<script src="/test/test.js"></script>
|
33
|
+
|
34
|
+
<div id="main">Test</div>
|
35
|
+
</body>
|
36
|
+
</html>
|
@@ -0,0 +1,59 @@
|
|
1
|
+
const expect = require("chai").expect
|
2
|
+
|
3
|
+
describe("Browser Mocha Tests", function () {
|
4
|
+
beforeEach((client, done) => {
|
5
|
+
client.url("http://localhost:7777/test-browser/index1.html")
|
6
|
+
done()
|
7
|
+
})
|
8
|
+
|
9
|
+
after((client, done) => {
|
10
|
+
client.end(() => done())
|
11
|
+
})
|
12
|
+
|
13
|
+
it("Should run the Mocha tests without error", (client) => {
|
14
|
+
client.waitForElementVisible("#main")
|
15
|
+
client.timeoutsAsyncScript(1500000).executeAsync(
|
16
|
+
(done) => {
|
17
|
+
const localDone = done
|
18
|
+
|
19
|
+
const mocha = window.mocha
|
20
|
+
|
21
|
+
//add required test librarys in this if statement
|
22
|
+
if (!mocha) {
|
23
|
+
logs.push(["Required library 'mocha' not loaded. Aborting..."])
|
24
|
+
localDone({ failures: 1, logs: logs })
|
25
|
+
return
|
26
|
+
}
|
27
|
+
|
28
|
+
if (!window.TEST) {
|
29
|
+
logs.push(["Required library 'TEST' not loaded. Aborting..."])
|
30
|
+
localDone({ failures: 1, logs: logs })
|
31
|
+
return
|
32
|
+
}
|
33
|
+
if (!window.TEST2) {
|
34
|
+
logs.push(["Required library 'TEST2' not loaded. Aborting..."])
|
35
|
+
localDone({ failures: 1, logs: logs })
|
36
|
+
return
|
37
|
+
}
|
38
|
+
|
39
|
+
mocha.run(function (failures) {
|
40
|
+
localDone({ failures: failures, logs: logs })
|
41
|
+
})
|
42
|
+
},
|
43
|
+
(result) => {
|
44
|
+
console.log("\n--- browser mocha output ---")
|
45
|
+
|
46
|
+
if (result && result.value && result.value.logs) {
|
47
|
+
for (const logs of result.value.logs) {
|
48
|
+
console.log.apply(null, logs)
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
console.log("--- finished browser mocha output ---")
|
53
|
+
|
54
|
+
expect(result.value).to.not.be.undefined
|
55
|
+
expect(result.value.failures).to.equal(0)
|
56
|
+
}
|
57
|
+
)
|
58
|
+
})
|
59
|
+
})
|
@@ -0,0 +1 @@
|
|
1
|
+
{"src_folders":["/home/julian/git/jss/docker-node-browsertests/test-runner/tmp/browsertests-iEIWXm"],"filter":"*.test.js","webdriver":{"start_process":true,"server_path":"/home/julian/.local/lib/node_modules/chromedriver/lib/chromedriver/chromedriver","port":9515},"test_runner":{"type":"mocha","options":{"ui":"bdd","reporter":"spec"}},"test_settings":{"default":{"request_timeout_options":{"timeout":1500000},"desiredCapabilities":{"javascriptEnabled":true,"acceptSslCerts":true,"acceptInsecureCerts":true,"browserName":"chrome","goog:chromeOptions":{"w3c":true,"args":["--disable-gpu","--ignore-certificate-errors","--no-sandbox","--disable-features=NetworkService"],"binary":"/usr/bin/google-chrome"}}}},"globals":{"waitForConditionTimeout":100000,"asyncHookTimeout":1500000,"unitTestsTimeout":100000,"customReporterCallbackTimeout":100000,"retryAssertionTimeout":50000}}
|