123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597 |
- const os = require('os');
- const path = require('path');
- const util = require('util');
- const glob = require('glob');
- const Loader = require('./loader');
- const ExitHandler = require('./exit_handler');
- const ConsoleSpecFilter = require('./filters/console_spec_filter');
- class Jasmine {
- constructor(options) {
- options = options || {};
- this.loader = options.loader || new Loader();
- this.isWindows_ = (options.platform || os.platform)() === 'win32';
- const jasmineCore = options.jasmineCore || require('jasmine-core');
- if (options.globals === false) {
- this.jasmine = jasmineCore.noGlobals().jasmine;
- } else {
- this.jasmine = jasmineCore.boot(jasmineCore);
- }
- if (options.projectBaseDir) {
- this.validatePath_(options.projectBaseDir);
- this.projectBaseDir = options.projectBaseDir;
- } else {
- this.projectBaseDir = (options.getcwd || path.resolve)();
- }
- this.specDir = '';
- this.specFiles = [];
- this.helperFiles = [];
- this.requires = [];
-
- this.env = this.jasmine.getEnv({suppressLoadErrors: true});
- this.reportersCount = 0;
- this.exit = process.exit;
- this.showingColors = true;
- this.alwaysListPendingSpecs_ = true;
- this.reporter = new module.exports.ConsoleReporter();
- this.addReporter(this.reporter);
- this.defaultReporterConfigured = false;
-
- this.coreVersion = function() {
- return jasmineCore.version();
- };
-
- this.exitOnCompletion = true;
- }
-
- randomizeTests(value) {
- this.env.configure({random: value});
- }
-
- seed(value) {
- this.env.configure({seed: value});
- }
-
- showColors(value) {
- this.showingColors = value;
- }
-
- alwaysListPendingSpecs(value) {
- this.alwaysListPendingSpecs_ = value;
- }
-
- addSpecFile(filePath) {
- this.specFiles.push(filePath);
- }
-
- addHelperFile(filePath) {
- this.helperFiles.push(filePath);
- }
-
- addReporter(reporter) {
- this.env.addReporter(reporter);
- this.reportersCount++;
- }
-
- clearReporters() {
- this.env.clearReporters();
- this.reportersCount = 0;
- }
-
- provideFallbackReporter(reporter) {
- this.env.provideFallbackReporter(reporter);
- }
-
- configureDefaultReporter(options) {
- options.print = options.print || function() {
- process.stdout.write(util.format.apply(this, arguments));
- };
- options.showColors = options.hasOwnProperty('showColors') ? options.showColors : true;
- this.reporter.setOptions(options);
- this.defaultReporterConfigured = true;
- }
-
- addMatchers(matchers) {
- this.env.addMatchers(matchers);
- }
- async loadSpecs() {
- await this._loadFiles(this.specFiles);
- }
- async loadHelpers() {
- await this._loadFiles(this.helperFiles);
- }
- async _loadFiles(files) {
- for (const file of files) {
- await this.loader.load(file);
- }
- }
- async loadRequires() {
- await this._loadFiles(this.requires);
- }
-
- async loadConfigFile(configFilePath) {
- if (configFilePath) {
- await this.loadSpecificConfigFile_(configFilePath);
- } else {
- for (const ext of ['json', 'js']) {
- try {
- await this.loadSpecificConfigFile_(`spec/support/jasmine.${ext}`);
- } catch (e) {
- if (e.code !== 'MODULE_NOT_FOUND' && e.code !== 'ERR_MODULE_NOT_FOUND') {
- throw e;
- }
- }
- }
- }
- }
- async loadSpecificConfigFile_(relativePath) {
- const absolutePath = path.resolve(this.projectBaseDir, relativePath);
- const config = await this.loader.load(absolutePath);
- this.loadConfig(config);
- }
-
- loadConfig(config) {
-
- const envConfig = {...config.env};
-
- this.specDir = config.spec_dir || this.specDir;
- this.validatePath_(this.specDir);
-
- if (config.failSpecWithNoExpectations !== undefined) {
- envConfig.failSpecWithNoExpectations = config.failSpecWithNoExpectations;
- }
-
- if (config.stopSpecOnExpectationFailure !== undefined) {
- envConfig.stopSpecOnExpectationFailure = config.stopSpecOnExpectationFailure;
- }
-
- if (config.stopOnSpecFailure !== undefined) {
- envConfig.stopOnSpecFailure = config.stopOnSpecFailure;
- }
-
- if (config.alwaysListPendingSpecs !== undefined) {
- this.alwaysListPendingSpecs(config.alwaysListPendingSpecs);
- }
-
- if (config.random !== undefined) {
- envConfig.random = config.random;
- }
- if (config.verboseDeprecations !== undefined) {
- envConfig.verboseDeprecations = config.verboseDeprecations;
- }
-
- if (config.jsLoader === 'import' || config.jsLoader === undefined) {
- this.loader.alwaysImport = true;
- } else if (config.jsLoader === 'require') {
- this.loader.alwaysImport = false;
- } else {
- throw new Error(`"${config.jsLoader}" is not a valid value for the ` +
- 'jsLoader configuration property. Valid values are "import", ' +
- '"require", and undefined.');
- }
- if (Object.keys(envConfig).length > 0) {
- this.env.configure(envConfig);
- }
-
- if(config.helpers) {
- this.addMatchingHelperFiles(config.helpers);
- }
-
- if(config.requires) {
- this.addRequires(config.requires);
- }
-
- if(config.spec_files) {
- this.addMatchingSpecFiles(config.spec_files);
- }
-
- if (config.reporters) {
- for (const r of config.reporters) {
- this.addReporter(r);
- }
- }
- }
- addRequires(requires) {
- const jasmineRunner = this;
- requires.forEach(function(r) {
- jasmineRunner.requires.push(r);
- });
- }
-
- stopSpecOnExpectationFailure(value) {
- this.env.configure({stopSpecOnExpectationFailure: value});
- }
-
- stopOnSpecFailure(value) {
- this.env.configure({stopOnSpecFailure: value});
- }
- async flushOutput() {
-
-
-
-
-
- var streams = [process.stdout, process.stderr];
- var promises = streams.map(stream => {
- return new Promise(resolve => stream.write('', null, resolve));
- });
- return Promise.all(promises);
- }
-
- async execute(files, filterString) {
- await this.loadRequires();
- await this.loadHelpers();
- if (!this.defaultReporterConfigured) {
- this.configureDefaultReporter({
- showColors: this.showingColors,
- alwaysListPendingSpecs: this.alwaysListPendingSpecs_
- });
- }
- if (filterString) {
- const specFilter = new ConsoleSpecFilter({
- filterString: filterString
- });
- this.env.configure({specFilter: function(spec) {
- return specFilter.matches(spec.getFullName());
- }});
- }
- if (files && files.length > 0) {
- this.specDir = '';
- this.specFiles = [];
- this.addMatchingSpecFiles(files);
- }
- await this.loadSpecs();
- const prematureExitHandler = new ExitHandler(() => this.exit(4));
- prematureExitHandler.install();
- const overallResult = await this.env.execute();
- await this.flushOutput();
- prematureExitHandler.uninstall();
- if (this.exitOnCompletion) {
- this.exit(exitCodeForStatus(overallResult.overallStatus));
- }
- return overallResult;
- }
- validatePath_(path) {
- if (this.isWindows_ && path.includes('\\')) {
- const fixed = path.replace(/\\/g, '/');
- console.warn('Backslashes in ' +
- 'file paths behave inconsistently between platforms and might not be ' +
- 'treated as directory separators in a future version. Consider ' +
- `changing ${path} to ${fixed}.`);
- }
- }
- }
- Jasmine.prototype.addMatchingSpecFiles = addFiles('specFiles');
- Jasmine.prototype.addMatchingHelperFiles = addFiles('helperFiles');
- function addFiles(kind) {
- return function (files) {
- for (const f of files) {
- this.validatePath_(f);
- }
- const jasmineRunner = this;
- const fileArr = this[kind];
- const {includeFiles, excludeFiles} = files.reduce(function(ongoing, file) {
- const hasNegation = file.startsWith('!');
- if (hasNegation) {
- file = file.substring(1);
- }
- if (!path.isAbsolute(file)) {
- file = path.join(jasmineRunner.projectBaseDir, jasmineRunner.specDir, file);
- }
- return {
- includeFiles: ongoing.includeFiles.concat(!hasNegation ? [file] : []),
- excludeFiles: ongoing.excludeFiles.concat(hasNegation ? [file] : [])
- };
- }, { includeFiles: [], excludeFiles: [] });
- includeFiles.forEach(function(file) {
- const filePaths = glob
- .sync(file, { ignore: excludeFiles })
- .filter(function(filePath) {
-
-
- return fileArr.indexOf(filePath) === -1 && fileArr.indexOf(path.normalize(filePath)) === -1;
- });
- filePaths.forEach(function(filePath) {
- fileArr.push(filePath);
- });
- });
- };
- }
- function exitCodeForStatus(status) {
- switch (status) {
- case 'passed':
- return 0;
- case 'incomplete':
- return 2;
- case 'failed':
- return 3;
- default:
- console.error(`Unrecognized overall status: ${status}`);
- return 1;
- }
- }
- module.exports = Jasmine;
- module.exports.ConsoleReporter = require('./reporters/console_reporter');
|