123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- exports.default = Suite;
- var _jestUtil = require('jest-util');
- var _expectation_failed = require('../expectation_failed');
- var _expectation_failed2 = _interopRequireDefault(_expectation_failed);
- var _expectation_result_factory = require('../expectation_result_factory');
- var _expectation_result_factory2 = _interopRequireDefault(
- _expectation_result_factory
- );
- function _interopRequireDefault(obj) {
- return obj && obj.__esModule ? obj : {default: obj};
- }
- function Suite(attrs) {
- this.id = attrs.id;
- this.parentSuite = attrs.parentSuite;
- this.description = (0, _jestUtil.convertDescriptorToString)(
- attrs.description
- );
- this.throwOnExpectationFailure = !!attrs.throwOnExpectationFailure;
- this.beforeFns = [];
- this.afterFns = [];
- this.beforeAllFns = [];
- this.afterAllFns = [];
- this.disabled = false;
- this.children = [];
- this.result = {
- id: this.id,
- description: this.description,
- fullName: this.getFullName(),
- failedExpectations: [],
- testPath: attrs.getTestPath()
- };
- }
- /**
- * Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- */
- // This file is a heavily modified fork of Jasmine. Original license:
- /*
- Copyright (c) 2008-2016 Pivotal Labs
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
- /* eslint-disable sort-keys */
- Suite.prototype.getFullName = function() {
- const fullName = [];
- for (
- let parentSuite = this;
- parentSuite;
- parentSuite = parentSuite.parentSuite
- ) {
- if (parentSuite.parentSuite) {
- fullName.unshift(parentSuite.description);
- }
- }
- return fullName.join(' ');
- };
- Suite.prototype.disable = function() {
- this.disabled = true;
- };
- Suite.prototype.pend = function(message) {
- this.markedPending = true;
- };
- Suite.prototype.beforeEach = function(fn) {
- this.beforeFns.unshift(fn);
- };
- Suite.prototype.beforeAll = function(fn) {
- this.beforeAllFns.push(fn);
- };
- Suite.prototype.afterEach = function(fn) {
- this.afterFns.unshift(fn);
- };
- Suite.prototype.afterAll = function(fn) {
- this.afterAllFns.unshift(fn);
- };
- Suite.prototype.addChild = function(child) {
- this.children.push(child);
- };
- Suite.prototype.status = function() {
- if (this.disabled) {
- return 'disabled';
- }
- if (this.markedPending) {
- return 'pending';
- }
- if (this.result.failedExpectations.length > 0) {
- return 'failed';
- } else {
- return 'finished';
- }
- };
- Suite.prototype.isExecutable = function() {
- return !this.disabled;
- };
- Suite.prototype.canBeReentered = function() {
- return this.beforeAllFns.length === 0 && this.afterAllFns.length === 0;
- };
- Suite.prototype.getResult = function() {
- this.result.status = this.status();
- return this.result;
- };
- Suite.prototype.sharedUserContext = function() {
- if (!this.sharedContext) {
- this.sharedContext = {};
- }
- return this.sharedContext;
- };
- Suite.prototype.clonedSharedUserContext = function() {
- return this.sharedUserContext();
- };
- Suite.prototype.onException = function() {
- if (arguments[0] instanceof _expectation_failed2.default) {
- return;
- }
- if (isAfterAll(this.children)) {
- const data = {
- matcherName: '',
- passed: false,
- expected: '',
- actual: '',
- error: arguments[0]
- };
- this.result.failedExpectations.push(
- (0, _expectation_result_factory2.default)(data)
- );
- } else {
- for (let i = 0; i < this.children.length; i++) {
- const child = this.children[i];
- child.onException.apply(child, arguments);
- }
- }
- };
- Suite.prototype.addExpectationResult = function() {
- if (isAfterAll(this.children) && isFailure(arguments)) {
- const data = arguments[1];
- this.result.failedExpectations.push(
- (0, _expectation_result_factory2.default)(data)
- );
- if (this.throwOnExpectationFailure) {
- throw new _expectation_failed2.default();
- }
- } else {
- for (let i = 0; i < this.children.length; i++) {
- const child = this.children[i];
- try {
- child.addExpectationResult.apply(child, arguments);
- } catch (e) {
- // keep going
- }
- }
- }
- };
- function isAfterAll(children) {
- return children && children[0] && children[0].result.status;
- }
- function isFailure(args) {
- return !args[0];
- }
|