summaryrefslogtreecommitdiffstats
path: root/addon-sdk/source/test/test-test-utils-sync.js
blob: 5c0fef56e7c62cc6ac476de0ae75aedbacbf5a32 (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
'use strict';

const { defer: async } = require('sdk/lang/functional');
const { before, after } = require('sdk/test/utils');
const { resolve } = require('sdk/core/promise');

var AFTER_RUN = 0;
var BEFORE_RUN = 0;

/*
 * Tests are dependent on ordering, as the before and after functions
 * are called outside of each test, and sometimes checked in the next test
 * (like in the `after` tests)
 */
exports.testABeforeAsync = function (assert, done) {
  assert.equal(BEFORE_RUN, 1, 'before function was called');
  BEFORE_RUN = 0;
  AFTER_RUN = 0;
  async(done)();
};

exports.testABeforeNameAsync = function (assert, done) {
  assert.equal(BEFORE_RUN, 2, 'before function was called with name');
  BEFORE_RUN = 0;
  AFTER_RUN = 0;
  async(done)();
};

exports.testAfterAsync = function (assert, done) {
  assert.equal(AFTER_RUN, 1, 'after function was called previously');
  BEFORE_RUN = 0;
  AFTER_RUN = 0;
  async(done)();
};

exports.testAfterNameAsync = function (assert, done) {
  assert.equal(AFTER_RUN, 2, 'after function was called with name');
  BEFORE_RUN = 0;
  AFTER_RUN = 0;
  async(done)();
};

exports.testSyncABefore = function (assert) {
  assert.equal(BEFORE_RUN, 1, 'before function was called for sync test');
  BEFORE_RUN = 0;
  AFTER_RUN = 0;
};

exports.testSyncAfter = function (assert) {
  assert.equal(AFTER_RUN, 1, 'after function was called for sync test');
  BEFORE_RUN = 0;
  AFTER_RUN = 0;
};

exports.testGeneratorBefore = function*(assert) {
  assert.equal(BEFORE_RUN, 1, 'before function was called for generator test');
  BEFORE_RUN = 0;
  AFTER_RUN = 0;
  yield resolve();
}

exports.testGeneratorAfter = function*(assert) {
  assert.equal(AFTER_RUN, 1, 'after function was called for generator test');
  BEFORE_RUN = 0;
  AFTER_RUN = 0;
  yield resolve();
};

before(exports, (name, assert) => {
  BEFORE_RUN = (name === 'testABeforeNameAsync') ? 2 : 1;
  assert.pass('assert passed into before function');
});

after(exports, (name, assert) => {
  // testAfterName runs after testAfter, which is where this
  // check occurs in the assertation
  AFTER_RUN = (name === 'testAfterAsync') ? 2 : 1;
  assert.pass('assert passed into after function');
});

require('sdk/test').run(exports);