This repository was archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy patherrorTest.js
53 lines (44 loc) · 1.75 KB
/
errorTest.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
#!/usr/bin/env node
'use strict';
var spawn = require('child_process').spawnSync;
var exitCodes = require('../built/exitCodes');
var runProtractor, output, messages;
var checkLogs = function(output, messages) {
for (var pos in messages) {
var message = messages[pos];
if (output.indexOf(message) === -1) {
throw new Error('\'' + message + '\'' + ' does not exist in logs: ' + output);
}
}
};
/******************************
*Below are exit failure tests*
******************************/
// assert authentication error for sauce labs
runProtractor = spawn('node',
['bin/protractor', 'spec/errorTest/sauceLabsAuthentication.js']);
output = runProtractor.stdout.toString();
messages = ['Sauce Labs Authentication Error.',
'Process exited with error code ' + exitCodes.BrowserError.CODE];
checkLogs(output, messages);
// assert authentication error for browser stack
runProtractor = spawn('node',
['bin/protractor', 'spec/errorTest/browserStackAuthentication.js']);
output = runProtractor.stdout.toString();
messages = ['Invalid username or password',
'Process exited with error code ' + exitCodes.BrowserError.CODE];
checkLogs(output, messages);
// assert there is no capabilities in the config
runProtractor = spawn('node',
['bin/protractor', 'spec/errorTest/debugMultiCapabilities.js']);
output = runProtractor.stdout.toString();
messages = [
'Cannot run in debug mode with multiCapabilities, count > 1, or sharding',
'Process exited with error code ' + exitCodes.ConfigError.CODE];
checkLogs(output, messages);
runProtractor = spawn('node',
['bin/protractor', 'spec/errorTest/getMultiCapabilitiesConf.js']);
output = runProtractor.stderr.toString();
messages = [
'Error: get multi capabilities failed'];
checkLogs(output, messages);