forked from shaka-project/shaka-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
321 lines (270 loc) · 9.22 KB
/
karma.conf.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
// Karma configuration
// Install required modules by running "npm install"
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '.',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: [
'jasmine-ajax', 'jasmine',
'sprintf-js',
],
plugins: [
'karma-*', // default
frameworkPluginForModule('sprintf-js'),
],
// list of files / patterns to load in the browser
files: [
// closure base first
'third_party/closure/goog/base.js',
// deps next
'dist/deps.js',
'shaka-player.uncompiled.js',
// requirejs next
'node_modules/requirejs/require.js',
// bootstrapping for the test suite
'test/test/boot.js',
// test utils next
'test/test/util/*.js',
// list of test assets next
'demo/assets.js',
// unit tests last
'test/**/*_unit.js',
// if --quick is not present, we will add integration tests.
// source files - these are only watched and served
{pattern: 'lib/**/*.js', included: false},
{pattern: 'third_party/closure/goog/**/*.js', included: false},
{pattern: 'test/test/assets/*', included: false},
{pattern: 'dist/shaka-player.compiled.js', included: false},
],
// NOTE: Do not use proxies for media! That sometimes results in truncated
// content and failed tests. The effect does not appear to be deterministic.
proxies: {
'/dist/': '/base/dist/',
},
preprocessors: {
// Don't compute coverage over lib/debug/ or lib/polyfill/
'lib/!(debug|polyfill)/*.js': 'coverage',
// Player is not matched by the above, so add it explicitly
'lib/player.js': 'coverage',
},
// to avoid DISCONNECTED messages on Safari:
browserDisconnectTimeout: 10 * 1000, // 10s to reconnect
browserDisconnectTolerance: 1, // max of 1 disconnect is OK
browserNoActivityTimeout: 5 * 60 * 1000, // disconnect after 5m silence
captureTimeout: 1 * 60 * 1000, // give up if startup takes 1m
// https://support.saucelabs.com/customer/en/portal/articles/2440724
client: {
// don't capture the client's console logs
captureConsole: false,
// |args| must be an array; pass a key-value map as the sole client
// argument.
args: [{}],
},
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR ||
// config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_WARN,
// do not execute tests whenever any file changes
autoWatch: false,
// do a single run of the tests on captured browsers and then quit
singleRun: true,
customLaunchers: {
// These entries are specific to Shaka team's internal test lab:
// OS X El Capitan {{{
WebDriver_Safari9: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4445},
browserName: 'safari',
pseudoActivityInterval: 20000
},
WebDriver_ChromeMac: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4445},
browserName: 'chrome',
pseudoActivityInterval: 20000
},
// }}}
// OS X Yosemite {{{
WebDriver_Safari8: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4444},
browserName: 'safari',
pseudoActivityInterval: 20000
},
WebDriver_FirefoxMac: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4444},
browserName: 'firefox',
pseudoActivityInterval: 20000
},
WebDriver_OperaMac: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4444},
// This is not obvious, but as of 2016-03-17, operadriver responds to
// browserName 'chrome', not 'opera'. It still launches opera. This
// should be solveable once operachromiumdriver releases sources.
// See:
// https://github.com/operasoftware/operachromiumdriver/issues/8
// http://stackoverflow.com/a/27387949
browserName: 'chrome',
pseudoActivityInterval: 20000
},
// }}}
// Windows {{{
WebDriver_IE11: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4446},
browserName: 'internet explorer',
pseudoActivityInterval: 20000
},
WebDriver_Edge: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4446},
browserName: 'MicrosoftEdge',
pseudoActivityInterval: 20000
},
WebDriver_ChromeWin: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4446},
browserName: 'chrome',
pseudoActivityInterval: 20000
},
WebDriver_FirefoxWin: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4446},
browserName: 'firefox',
pseudoActivityInterval: 20000
},
// }}}
// Linux {{{
WebDriver_ChromeLinux: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4447},
browserName: 'chrome',
pseudoActivityInterval: 20000
},
WebDriver_FirefoxLinux: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4447},
browserName: 'firefox',
pseudoActivityInterval: 20000
},
// }}}
// Android 6.0.1 {{{
// Note this is tethered to the Linux machine.
WebDriver_ChromeAndroid: {
base: 'WebDriver',
config: {hostname: 'localhost', port: 4447},
browserName: 'chrome',
pseudoActivityInterval: 20000,
chromeOptions: {'androidPackage': 'com.android.chrome'}
},
// }}}
},
coverageReporter: {
reporters: [
{ type: 'text' },
],
},
specReporter: {
suppressSkipped: true,
},
});
if (flagPresent('html-coverage-report')) {
// Wipe out any old coverage reports to avoid confusion.
var rimraf = require('rimraf');
rimraf.sync('coverage', {}); // Like rm -rf
config.set({
reporters: [ 'coverage', 'progress' ],
coverageReporter: {
reporters: [
{ type: 'html', dir: 'coverage' },
],
},
});
}
if (!flagPresent('quick')) {
// If --quick is present, we don't serve integration tests.
var files = config.files;
files.push('test/**/*_integration.js');
// We just modified the config in-place. No need for config.set().
}
var logLevel = getFlagValue('enable-logging');
if (logLevel !== null) {
if (logLevel === '')
logLevel = 3; // INFO
config.set({
reporters: ['spec'],
});
// Setting |config.client| using config.set will remove the
// |config.client.args| member.
config.client.captureConsole = true;
setClientArg(config, 'logLevel', logLevel);
}
if (flagPresent('external')) {
// Run Player integration tests against external assets.
// Skipped by default.
setClientArg(config, 'external', true);
}
if (flagPresent('uncompiled')) {
// Run Player integration tests with uncompiled code for debugging.
setClientArg(config, 'uncompiled', true);
}
};
// Sets the value of an argument passed to the client.
function setClientArg(config, name, value) {
config.client.args[0][name] = value;
}
// Find a custom command-line flag that has a value (e.g. --option=12).
// Returns:
// * string value --option=12
// * empty string --option= or --option
// * null not present
function getFlagValue(name) {
var re = /^--([^=]+)(?:=(.*))?$/;
for (var i = 0; i < process.argv.length; i++) {
var match = re.exec(process.argv[i]);
if (match && match[1] == name) {
if (match[2] !== undefined)
return match[2];
else
return '';
}
}
return null;
}
// Find custom command-line flags.
function flagPresent(name) {
return getFlagValue(name) !== null;
}
// Construct framework plugins on-the-fly for arbitrary node modules.
// A call to this must be placed in the config in the 'plugins' array,
// and the module name must be added to the config in the 'frameworks' array.
function frameworkPluginForModule(name) {
// The framework injects files into the client which runs the tests.
var framework = function(files) {
// Locate the main file for the node module.
var path = require('path');
var mainFile = path.resolve(require.resolve(name));
// Add a file entry to the list of files to be served.
// This follows the same syntax as above in config.set({files: ...}).
files.unshift({
pattern: mainFile, included: true, served: true, watched: false
});
};
// The framework factory function takes one argument, which is the list of
// files from the karma config.
framework.$inject = ['config.files'];
// This is the plugin interface to register a new framework. Adding this to
// the list of plugins makes the named module available as a framework. That
// framework then injects the module into the client.
var obj = {};
obj['framework:' + name] = ['factory', framework];
return obj;
}