html2canvas/karma.conf.js

296 lines
8.5 KiB
JavaScript
Raw Normal View History

2017-08-08 19:50:31 +03:00
// Karma configuration
// Generated on Sat Aug 05 2017 23:42:26 GMT+0800 (Malay Peninsula Standard Time)
2019-04-07 09:07:52 +03:00
const path = require('path');
2019-04-09 07:56:22 +03:00
const simctl = require('node-simctl');
const iosSimulator = require('appium-ios-simulator');
const listenAddress = 'localhost';
2017-08-08 19:50:31 +03:00
const port = 9876;
2019-04-09 07:56:22 +03:00
const log = require('karma/lib/logger').create('launcher:MobileSafari');
2017-08-08 19:50:31 +03:00
module.exports = function(config) {
2020-07-29 13:47:43 +03:00
// https://github.com/actions/virtual-environments/blob/master/images/macos/macos-10.15-Readme.md
2019-04-07 09:07:52 +03:00
const launchers = {
2019-04-09 07:56:22 +03:00
Safari_IOS_9: {
base: 'MobileSafari',
name: 'iPhone 5s',
platform: 'iOS',
2019-04-09 07:56:22 +03:00
sdk: '9.0'
},
Safari_IOS_10: {
base: 'MobileSafari',
name: 'iPhone 5s',
platform: 'iOS',
2019-04-09 07:56:22 +03:00
sdk: '10.0'
},
Typescript conversion (#1828) * initial typescript conversion * test: update overflow+transform ref test * fix: correctly render pseudo element content * fix: testrunner build * fix: karma test urls * test: update underline tests with <u> elements * test: update to es6-promise polyfill * test: remove watch from server * test: remove flow * format: update prettier for typescript * test: update eslint to use typescript parser * test: update linear gradient reftest * test: update test runner * test: update testrunner promise polyfill * fix: handle display: -webkit-flex correctly (fix #1817) * fix: correctly render gradients with clip & repeat (fix #1773) * fix: webkit-gradient function support * fix: implement radial gradients * fix: text-decoration rendering * fix: missing scroll positions for elements * ci: fix ios 11 tests * fix: ie logging * ci: improve device availability logging * fix: lint errors * ci: update to ios 12 * fix: check for console availability * ci: fix build dependency * test: update text reftests * fix: window reference for unit tests * feat: add hsl/hsla color support * fix: render options * fix: CSSKeyframesRule cssText Permission Denied on Internet Explorer 11 (#1830) * fix: option lint * fix: list type rendering * test: fix platform import * fix: ie css parsing for numbers * ci: add minified build * fix: form element rendering * fix: iframe rendering * fix: re-introduce experimental foreignobject renderer * fix: text-shadow rendering * feat: improve logging * fix: unit test logging * fix: cleanup resources * test: update overflow scrolling to work with ie * build: update build to include typings * fix: do not parse select element children * test: fix onclone test to work with older IEs * test: reduce reftest canvas sizes * test: remove dynamic setUp from list tests * test: update linear-gradient tests * build: remove old source files * build: update docs dependencies * build: fix typescript definition path * ci: include test.js on docs website
2019-05-26 01:54:41 +03:00
Safari_IOS_12: {
2019-04-09 07:56:22 +03:00
base: 'MobileSafari',
name: 'iPhone 5s',
platform: 'iOS',
2020-07-29 13:47:43 +03:00
sdk: '12.4'
},
Safari_IOS_13: {
base: 'MobileSafari',
name: 'iPhone 8',
platform: 'iOS',
2021-11-23 12:17:51 +03:00
sdk: '13.7'
2020-07-29 13:47:43 +03:00
},
Safari_IOS_14: {
base: 'MobileSafari',
name: 'iPhone 8',
platform: 'iOS',
2021-11-23 12:17:51 +03:00
sdk: '14.4'
2019-04-09 07:56:22 +03:00
},
2021-12-29 16:02:16 +03:00
Safari_IOS_15_0: {
base: 'MobileSafari',
name: 'iPhone 13',
platform: 'iOS',
sdk: '15.0'
},
2021-08-09 12:15:00 +03:00
Safari_IOS_15: {
base: 'MobileSafari',
2021-12-29 16:02:16 +03:00
name: 'iPhone 13',
2021-08-09 12:15:00 +03:00
platform: 'iOS',
2021-11-23 12:17:51 +03:00
sdk: '15.2'
2021-08-09 12:15:00 +03:00
},
2019-04-07 09:07:52 +03:00
SauceLabs_IE9: {
base: 'SauceLabs',
browserName: 'internet explorer',
version: '9.0',
platform: 'Windows 7'
},
2019-04-07 09:07:52 +03:00
SauceLabs_IE10: {
base: 'SauceLabs',
browserName: 'internet explorer',
version: '10.0',
platform: 'Windows 7'
},
2019-04-07 09:07:52 +03:00
SauceLabs_IE11: {
base: 'SauceLabs',
browserName: 'internet explorer',
version: '11.0',
platform: 'Windows 7'
},
2019-04-07 09:07:52 +03:00
SauceLabs_Edge18: {
base: 'SauceLabs',
browserName: 'MicrosoftEdge',
2019-04-07 09:07:52 +03:00
version: '18.17763',
platform: 'Windows 10'
2017-08-16 14:50:14 +03:00
},
2019-04-07 09:07:52 +03:00
SauceLabs_Android4: {
2017-08-16 14:50:14 +03:00
base: 'SauceLabs',
browserName: 'Browser',
platform: 'Android',
version: '4.4',
device: 'Android Emulator',
},
2019-04-07 09:07:52 +03:00
SauceLabs_iOS10_3: {
2017-08-16 14:50:14 +03:00
base: 'SauceLabs',
browserName: 'Safari',
platform: 'iOS',
version: '10.3',
device: 'iPhone 7 Plus Simulator'
},
2019-04-07 09:07:52 +03:00
SauceLabs_iOS9_3: {
2017-08-16 14:50:14 +03:00
base: 'SauceLabs',
browserName: 'Safari',
platform: 'iOS',
version: '9.3',
device: 'iPhone 6 Plus Simulator'
2019-04-07 09:07:52 +03:00
},
IE_9: {
base: 'IE',
'x-ua-compatible': 'IE=EmulateIE9',
flags: ['-extoff']
},
IE_10: {
base: 'IE',
'x-ua-compatible': 'IE=EmulateIE10',
flags: ['-extoff']
},
IE_11: {
base: 'IE',
flags: ['-extoff']
},
Safari_Stable: {
base: 'SafariNative'
2019-04-07 09:07:52 +03:00
},
Chrome_Stable: {
base: 'ChromeHeadless'
2019-04-07 09:07:52 +03:00
},
Firefox_Stable: {
base: 'Firefox'
2017-08-12 08:46:02 +03:00
}
};
2019-04-07 09:07:52 +03:00
const ciLauncher = launchers[process.env.TARGET_BROWSER];
const customLaunchers = ciLauncher ? {target_browser: ciLauncher} : {
2017-08-12 08:46:02 +03:00
stable_chrome: {
base: 'ChromeHeadless'
2017-08-12 08:46:02 +03:00
},
stable_firefox: {
base: 'Firefox'
}
2019-04-07 09:07:52 +03:00
};
const injectTypedArrayPolyfills = function(files) {
files.unshift({
pattern: path.resolve(__dirname, './node_modules/js-polyfills/typedarray.js'),
included: true,
served: true,
watched: false
});
};
injectTypedArrayPolyfills.$inject = ['config.files'];
2017-08-12 08:46:02 +03:00
2019-04-09 07:56:22 +03:00
const MobileSafari = function(baseBrowserDecorator, args) {
if(process.platform !== "darwin"){
log.error("This launcher only works in MacOS.");
this._process.kill();
return;
}
baseBrowserDecorator(this);
this.on('start', url => {
simctl.getDevices(args.sdk, args.platform).then(devices => {
const d = devices.find(d => {
2019-04-09 07:56:22 +03:00
return d.name === args.name;
});
if (!d) {
log.error(`No device found for sdk ${args.sdk} with name ${args.name}`);
Typescript conversion (#1828) * initial typescript conversion * test: update overflow+transform ref test * fix: correctly render pseudo element content * fix: testrunner build * fix: karma test urls * test: update underline tests with <u> elements * test: update to es6-promise polyfill * test: remove watch from server * test: remove flow * format: update prettier for typescript * test: update eslint to use typescript parser * test: update linear gradient reftest * test: update test runner * test: update testrunner promise polyfill * fix: handle display: -webkit-flex correctly (fix #1817) * fix: correctly render gradients with clip & repeat (fix #1773) * fix: webkit-gradient function support * fix: implement radial gradients * fix: text-decoration rendering * fix: missing scroll positions for elements * ci: fix ios 11 tests * fix: ie logging * ci: improve device availability logging * fix: lint errors * ci: update to ios 12 * fix: check for console availability * ci: fix build dependency * test: update text reftests * fix: window reference for unit tests * feat: add hsl/hsla color support * fix: render options * fix: CSSKeyframesRule cssText Permission Denied on Internet Explorer 11 (#1830) * fix: option lint * fix: list type rendering * test: fix platform import * fix: ie css parsing for numbers * ci: add minified build * fix: form element rendering * fix: iframe rendering * fix: re-introduce experimental foreignobject renderer * fix: text-shadow rendering * feat: improve logging * fix: unit test logging * fix: cleanup resources * test: update overflow scrolling to work with ie * build: update build to include typings * fix: do not parse select element children * test: fix onclone test to work with older IEs * test: reduce reftest canvas sizes * test: remove dynamic setUp from list tests * test: update linear-gradient tests * build: remove old source files * build: update docs dependencies * build: fix typescript definition path * ci: include test.js on docs website
2019-05-26 01:54:41 +03:00
log.info(`Available devices:`, devices);
2019-04-09 07:56:22 +03:00
this._process.kill();
return;
}
return iosSimulator.getSimulator(d.udid).then(device => {
return simctl.bootDevice(d.udid).then(() => device);
}).then(device => {
return device.waitForBoot(60 * 5 * 1000).then(() => {
return device.openUrl(url);
});
});
}).catch(e => {
console.log('err,', e);
});
});
};
MobileSafari.prototype = {
name: 'MobileSafari',
DEFAULT_CMD: {
darwin: '/Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator',
},
ENV_CMD: null,
};
MobileSafari.$inject = ['baseBrowserDecorator', 'args'];
2017-08-08 19:50:31 +03:00
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
2019-04-07 09:07:52 +03:00
frameworks: ['mocha', 'inline-mocha-fix'],
2017-08-08 19:50:31 +03:00
// list of files / patterns to load in the browser
files: [
2017-08-11 18:25:37 +03:00
'build/testrunner.js',
2017-08-08 19:50:31 +03:00
{ pattern: './tests/**/*', 'watched': true, 'included': false, 'served': true},
{ pattern: './dist/**/*', 'watched': true, 'included': false, 'served': true},
2019-04-07 09:07:52 +03:00
{ pattern: './node_modules/**/*', 'watched': true, 'included': false, 'served': true},
2017-08-08 19:50:31 +03:00
],
2019-04-07 09:07:52 +03:00
plugins: [
'karma-*',
{
'framework:inline-mocha-fix': ['factory', injectTypedArrayPolyfills]
2019-04-09 07:56:22 +03:00
},
{
'launcher:MobileSafari': ['type', MobileSafari]
2019-04-07 09:07:52 +03:00
}
],
2017-08-08 19:50:31 +03:00
// list of files to exclude
exclude: [
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
2019-04-07 09:07:52 +03:00
reporters: ['dots', 'junit'],
junitReporter: {
outputDir: 'tmp/junit/'
},
2017-08-08 19:50:31 +03:00
// web server listen address,
listenAddress,
2017-08-08 19:50:31 +03:00
// web server port
port,
// 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_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
2017-08-12 08:46:02 +03:00
browsers: Object.keys(customLaunchers),
2017-08-08 19:50:31 +03:00
2017-08-12 08:46:02 +03:00
customLaunchers,
2017-08-08 19:50:31 +03:00
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
2017-08-12 08:46:02 +03:00
singleRun: true,
2017-08-08 19:50:31 +03:00
// Concurrency level
// how many browser should be started simultaneous
2017-08-12 08:46:02 +03:00
concurrency: 5,
2017-08-08 19:50:31 +03:00
proxies: {
'/dist': `http://localhost:${port}/base/dist`,
'/node_modules': `http://localhost:${port}/base/node_modules`,
'/tests': `http://localhost:${port}/base/tests`,
'/assets': `http://localhost:${port}/base/tests/assets`
2017-08-08 19:50:31 +03:00
},
client: {
mocha: {
// change Karma's debug.html to the mocha web reporter
reporter: 'html'
}
},
2017-08-16 14:50:14 +03:00
captureTimeout: 300000,
browserDisconnectTimeout: 60000,
browserNoActivityTimeout: 1200000
2017-08-08 19:50:31 +03:00
})
};