209 lines
5.8 KiB
JavaScript
209 lines
5.8 KiB
JavaScript
/* eslint-disable
|
|
jasmine/no-global-setup, jasmine/no-unsafe-spy, no-underscore-dangle, no-console
|
|
*/
|
|
|
|
import $ from 'jquery';
|
|
import 'core-js/features/set-immediate';
|
|
import 'vendor/jasmine-jquery';
|
|
import '~/commons';
|
|
import Vue from 'vue';
|
|
import Translate from '~/vue_shared/translate';
|
|
import jasmineDiff from 'jasmine-diff';
|
|
import { config as testUtilsConfig } from '@vue/test-utils';
|
|
|
|
import { getDefaultAdapter } from '~/lib/utils/axios_utils';
|
|
import { FIXTURES_PATH, TEST_HOST } from './test_constants';
|
|
|
|
import customMatchers from './matchers';
|
|
|
|
// Tech debt issue TBD
|
|
testUtilsConfig.logModifiedComponents = false;
|
|
|
|
const isHeadlessChrome = /\bHeadlessChrome\//.test(navigator.userAgent);
|
|
Vue.config.devtools = !isHeadlessChrome;
|
|
Vue.config.productionTip = false;
|
|
|
|
let hasVueWarnings = false;
|
|
Vue.config.warnHandler = (msg, vm, trace) => {
|
|
// The following workaround is necessary, so we are able to use setProps from Vue test utils
|
|
// see https://github.com/vuejs/vue-test-utils/issues/631#issuecomment-421108344
|
|
const currentStack = new Error().stack;
|
|
const isInVueTestUtils = currentStack
|
|
.split('\n')
|
|
.some(line => line.startsWith(' at VueWrapper.setProps ('));
|
|
if (isInVueTestUtils) {
|
|
return;
|
|
}
|
|
|
|
hasVueWarnings = true;
|
|
fail(`${msg}${trace}`);
|
|
};
|
|
|
|
let hasVueErrors = false;
|
|
Vue.config.errorHandler = function(err) {
|
|
hasVueErrors = true;
|
|
fail(err);
|
|
};
|
|
|
|
Vue.use(Translate);
|
|
|
|
// enable test fixtures
|
|
jasmine.getFixtures().fixturesPath = FIXTURES_PATH;
|
|
jasmine.getJSONFixtures().fixturesPath = FIXTURES_PATH;
|
|
|
|
beforeAll(() => {
|
|
jasmine.addMatchers(
|
|
jasmineDiff(jasmine, {
|
|
colors: window.__karma__.config.color,
|
|
inline: window.__karma__.config.color,
|
|
}),
|
|
);
|
|
jasmine.addMatchers(customMatchers);
|
|
});
|
|
|
|
// globalize common libraries
|
|
window.$ = $;
|
|
window.jQuery = window.$;
|
|
|
|
// stub expected globals
|
|
window.gl = window.gl || {};
|
|
window.gl.TEST_HOST = TEST_HOST;
|
|
window.gon = window.gon || {};
|
|
window.gon.test_env = true;
|
|
window.gon.ee = process.env.IS_EE;
|
|
gon.relative_url_root = '';
|
|
|
|
let hasUnhandledPromiseRejections = false;
|
|
|
|
window.addEventListener('unhandledrejection', event => {
|
|
hasUnhandledPromiseRejections = true;
|
|
console.error('Unhandled promise rejection:');
|
|
console.error(event.reason.stack || event.reason);
|
|
});
|
|
|
|
// Add global function to spy on a module's dependencies via rewire
|
|
window.spyOnDependency = (module, name) => {
|
|
const dependency = module.__GetDependency__(name);
|
|
const spy = jasmine.createSpy(name, dependency);
|
|
module.__Rewire__(name, spy);
|
|
return spy;
|
|
};
|
|
|
|
// Reset any rewired modules after each test (see babel-plugin-rewire)
|
|
afterEach(__rewire_reset_all__); // eslint-disable-line
|
|
|
|
// HACK: Chrome 59 disconnects if there are too many synchronous tests in a row
|
|
// because it appears to lock up the thread that communicates to Karma's socket
|
|
// This async beforeEach gets called on every spec and releases the JS thread long
|
|
// enough for the socket to continue to communicate.
|
|
// The downside is that it creates a minor performance penalty in the time it takes
|
|
// to run our unit tests.
|
|
beforeEach(done => done());
|
|
|
|
let longRunningTestTimeoutHandle;
|
|
|
|
beforeEach(done => {
|
|
longRunningTestTimeoutHandle = setTimeout(() => {
|
|
done.fail('Test is running too long!');
|
|
}, 4000);
|
|
done();
|
|
});
|
|
|
|
afterEach(() => {
|
|
clearTimeout(longRunningTestTimeoutHandle);
|
|
});
|
|
|
|
const axiosDefaultAdapter = getDefaultAdapter();
|
|
|
|
// render all of our tests
|
|
const testContexts = [require.context('spec', true, /_spec$/)];
|
|
|
|
if (process.env.IS_EE) {
|
|
testContexts.push(require.context('ee_spec', true, /_spec$/));
|
|
}
|
|
|
|
testContexts.forEach(context => {
|
|
context.keys().forEach(path => {
|
|
try {
|
|
context(path);
|
|
} catch (err) {
|
|
console.log(err);
|
|
console.error('[GL SPEC RUNNER ERROR] Unable to load spec: ', path);
|
|
describe('Test bundle', function() {
|
|
it(`includes '${path}'`, function() {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('test errors', () => {
|
|
beforeAll(done => {
|
|
if (hasUnhandledPromiseRejections || hasVueWarnings || hasVueErrors) {
|
|
setTimeout(done, 1000);
|
|
} else {
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('has no unhandled Promise rejections', () => {
|
|
expect(hasUnhandledPromiseRejections).toBe(false);
|
|
});
|
|
|
|
it('has no Vue warnings', () => {
|
|
expect(hasVueWarnings).toBe(false);
|
|
});
|
|
|
|
it('has no Vue error', () => {
|
|
expect(hasVueErrors).toBe(false);
|
|
});
|
|
|
|
it('restores axios adapter after mocking', () => {
|
|
if (getDefaultAdapter() !== axiosDefaultAdapter) {
|
|
fail('axios adapter is not restored! Did you forget a restore() on MockAdapter?');
|
|
}
|
|
});
|
|
});
|
|
|
|
// if we're generating coverage reports, make sure to include all files so
|
|
// that we can catch files with 0% coverage
|
|
// see: https://github.com/deepsweet/istanbul-instrumenter-loader/issues/15
|
|
if (process.env.BABEL_ENV === 'coverage') {
|
|
// exempt these files from the coverage report
|
|
const troubleMakers = ['./pages/admin/application_settings/general/index.js'];
|
|
|
|
describe('Uncovered files', function() {
|
|
const sourceFilesContexts = [require.context('~', true, /\.(js|vue)$/)];
|
|
|
|
if (process.env.IS_EE) {
|
|
sourceFilesContexts.push(require.context('ee', true, /\.(js|vue)$/));
|
|
}
|
|
|
|
const allTestFiles = testContexts.reduce(
|
|
(accumulator, context) => accumulator.concat(context.keys()),
|
|
[],
|
|
);
|
|
|
|
$.holdReady(true);
|
|
|
|
sourceFilesContexts.forEach(context => {
|
|
context.keys().forEach(path => {
|
|
// ignore if there is a matching spec file
|
|
if (allTestFiles.indexOf(`${path.replace(/\.(js|vue)$/, '')}_spec`) > -1) {
|
|
return;
|
|
}
|
|
|
|
it(`includes '${path}'`, function() {
|
|
try {
|
|
context(path);
|
|
} catch (err) {
|
|
if (troubleMakers.indexOf(path) === -1) {
|
|
expect(err).toBeNull();
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|