-
-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathmocha.spec.js
1240 lines (1074 loc) · 38.7 KB
/
mocha.spec.js
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
var sinon = require('sinon');
var EventEmitter = require('events').EventEmitter;
var Mocha = require('../../lib/mocha');
var utils = require('../../lib/utils');
const errors = require('../../lib/errors');
describe('Mocha', function () {
/**
* Options for `Mocha` constructor
*/
var opts;
/**
* Stub `Runner` constructor; returns a stubbed `EventEmitter`
*/
var Runner;
/**
* Stub `Suite` constructor; returns a stubbed `EventEmitter`
*/
var Suite;
/**
* Stub `Suite` instance (root suite in our case)
*/
var suite;
/**
* Stub `Runner` (`EventEmitter`) instance
*/
var runner;
/**
* Stub `Base` reporter constructor
*/
var Base;
/**
* Instance of a hypothetical reporter
*/
var reporterInstance;
beforeEach(function () {
reporterInstance = {};
opts = {reporter: sinon.stub().returns(reporterInstance)};
// NOTE: calling `stub(someObject, someFunction)` where `someFunction` has
// its own static properties WILL NOT blast those static properties!
Base = sinon.stub(Mocha.reporters, 'Base').returns({});
sinon.stub(Mocha.reporters, 'base').returns({});
sinon.stub(Mocha.reporters, 'spec').returns({});
runner = {
...sinon.createStubInstance(EventEmitter),
runAsync: sinon.stub().resolves(0),
globals: sinon.stub(),
grep: sinon.stub(),
dispose: sinon.stub()
};
Runner = sinon.stub(Mocha, 'Runner').returns(runner);
// the Runner constructor is the main export, and constants is a static prop.
// we don't need the constants themselves, but the object cannot be undefined
Runner.constants = {};
suite = {
...sinon.createStubInstance(EventEmitter),
slow: sinon.stub(),
timeout: sinon.stub(),
bail: sinon.stub(),
dispose: sinon.stub(),
reset: sinon.stub(),
beforeAll: sinon.stub(),
beforeEach: sinon.stub(),
afterAll: sinon.stub(),
afterEach: sinon.stub()
};
Suite = sinon.stub(Mocha, 'Suite').returns(suite);
Suite.constants = {};
sinon.stub(errors, 'warn');
sinon.stub(utils, 'isString');
sinon.stub(utils, 'noop');
});
afterEach(function () {
sinon.restore();
});
describe('constructor', function () {
var mocha;
beforeEach(function () {
mocha = sinon.createStubInstance(Mocha);
mocha.timeout.returnsThis();
mocha.retries.returnsThis();
sinon.stub(Mocha.prototype, 'timeout').returnsThis();
sinon.stub(Mocha.prototype, 'global').returnsThis();
sinon.stub(Mocha.prototype, 'retries').returnsThis();
sinon.stub(Mocha.prototype, 'rootHooks').returnsThis();
sinon.stub(Mocha.prototype, 'parallelMode').returnsThis();
sinon.stub(Mocha.prototype, 'globalSetup').returnsThis();
sinon.stub(Mocha.prototype, 'globalTeardown').returnsThis();
sinon.stub(Mocha.prototype, 'enableGlobalSetup').returnsThis();
sinon.stub(Mocha.prototype, 'enableGlobalTeardown').returnsThis();
});
it('should set _cleanReferencesAfterRun to true', function () {
expect(new Mocha()._cleanReferencesAfterRun, 'to be', true);
});
describe('when `timeout` option is `undefined`', function () {
it('should not attempt to set timeout', function () {
// eslint-disable-next-line no-new
new Mocha({timeout: undefined});
expect(Mocha.prototype.timeout, 'was not called');
});
});
describe('when `timeout` option is `false`', function () {
it('should attempt to set timeout', function () {
// eslint-disable-next-line no-new
new Mocha({timeout: false});
expect(Mocha.prototype.timeout, 'to have a call satisfying', [0]).and(
'was called once'
);
});
});
describe('when `global` option is an `Array`', function () {
it('should attempt to set globals', function () {
// eslint-disable-next-line no-new
new Mocha({global: ['singular']});
expect(Mocha.prototype.global, 'to have a call satisfying', [
['singular']
]).and('was called once');
});
});
describe('when `retries` option is present', function () {
it('should attempt to set retries`', function () {
// eslint-disable-next-line no-new
new Mocha({retries: 1});
expect(Mocha.prototype.retries, 'to have a call satisfying', [1]).and(
'was called once'
);
});
});
describe('when `retries` option is not present', function () {
it('should not attempt to set retries', function () {
// eslint-disable-next-line no-new
new Mocha({});
expect(Mocha.prototype.retries, 'was not called');
});
});
describe('when `rootHooks` option is truthy', function () {
it('shouid attempt to set root hooks', function () {
// eslint-disable-next-line no-new
new Mocha({rootHooks: ['a root hook']});
expect(Mocha.prototype.rootHooks, 'to have a call satisfying', [
['a root hook']
]).and('was called once');
});
});
describe('when `parallel` option is true', function () {
describe('and `jobs` option > 1', function () {
it('should enable parallel mode', function () {
// eslint-disable-next-line no-new
new Mocha({parallel: true, jobs: 2});
expect(Mocha.prototype.parallelMode, 'to have a call satisfying', [
true
]).and('was called once');
});
});
describe('and `jobs` option <= 1', function () {
it('should not enable parallel mode', function () {
// eslint-disable-next-line no-new
new Mocha({parallel: true, jobs: 1});
expect(Mocha.prototype.parallelMode, 'was not called');
});
});
describe('when `globalSetup` option is present', function () {
it('should configure global setup fixtures', function () {
const globalSetup = [() => {}];
const mocha = new Mocha({globalSetup});
expect(mocha.globalSetup, 'to have a call satisfying', [
globalSetup
]).and('was called once');
});
});
describe('when `globalTeardown` option is present', function () {
it('should configure global teardown fixtures', function () {
const globalTeardown = [() => {}];
const mocha = new Mocha({globalTeardown});
expect(mocha.globalTeardown, 'to have a call satisfying', [
globalTeardown
]).and('was called once');
});
});
describe('when `enableGlobalSetup` option is present', function () {
it('should toggle global setup fixtures', function () {
const mocha = new Mocha({enableGlobalSetup: 1});
expect(mocha.enableGlobalSetup, 'to have a call satisfying', [1]).and(
'was called once'
);
});
});
describe('when `enableGlobalTeardown` option is present', function () {
it('should configure global teardown fixtures', function () {
const mocha = new Mocha({enableGlobalTeardown: 1});
expect(mocha.enableGlobalTeardown, 'to have a call satisfying', [
1
]).and('was called once');
});
});
});
});
describe('instance method', function () {
var mocha;
beforeEach(function () {
mocha = new Mocha(opts);
});
describe('allowUncaught()', function () {
it('should set the allowUncaught option to true', function () {
mocha.allowUncaught();
expect(mocha.options, 'to have property', 'allowUncaught', true);
});
it('should set the allowUncaught option to false', function () {
mocha.allowUncaught(false);
expect(mocha.options, 'to have property', 'allowUncaught', false);
});
it('should be chainable', function () {
expect(mocha.allowUncaught(), 'to be', mocha);
});
});
describe('asyncOnly()', function () {
it('should set the asyncOnly option to true', function () {
mocha.asyncOnly();
expect(mocha.options, 'to have property', 'asyncOnly', true);
});
it('should set the asyncOnly option to false', function () {
mocha.asyncOnly(false);
expect(mocha.options, 'to have property', 'asyncOnly', false);
});
it('should be chainable', function () {
expect(mocha.asyncOnly(), 'to be', mocha);
});
});
describe('bail()', function () {
it('should set the "bail" flag on the root suite', function () {
mocha.bail();
expect(suite.bail, 'to have a call satisfying', [true]).and(
'was called once'
);
});
it('should unset the "bail" flag on the root suite', function () {
mocha.bail(false);
expect(suite.bail, 'to have a call satisfying', [false]).and(
'was called once'
);
});
it('should be chainable', function () {
expect(mocha.bail(), 'to be', mocha);
});
});
describe('checkLeaks()', function () {
it('should set the checkLeaks option to true', function () {
mocha.checkLeaks();
expect(mocha.options, 'to have property', 'checkLeaks', true);
});
});
describe('cleanReferencesAfterRun()', function () {
it('should set the _cleanReferencesAfterRun attribute', function () {
mocha.cleanReferencesAfterRun();
expect(mocha._cleanReferencesAfterRun, 'to be', true);
});
it('should set the _cleanReferencesAfterRun attribute to false', function () {
mocha.cleanReferencesAfterRun(false);
expect(mocha._cleanReferencesAfterRun, 'to be', false);
});
it('should be chainable', function () {
expect(mocha.cleanReferencesAfterRun(), 'to be', mocha);
});
});
describe('color()', function () {
it('should set the color option to true', function () {
mocha.color();
expect(mocha.options, 'to have property', 'color', true);
});
it('should set the color option to false', function () {
mocha.color(false);
expect(mocha.options, 'to have property', 'color', false);
});
it('should be chainable', function () {
expect(mocha.color(), 'to be', mocha);
});
});
describe('delay()', function () {
it('should set the delay option to true', function () {
mocha.delay();
expect(mocha.options, 'to have property', 'delay', true);
});
it('should be chainable', function () {
expect(mocha.delay(), 'to be', mocha);
});
});
describe('diff()', function () {
it('should set the diff option to true', function () {
mocha.diff();
expect(mocha.options, 'to have property', 'diff', true);
});
it('should set the diff option to false', function () {
mocha.diff(false);
expect(mocha.options, 'to have property', 'diff', false);
});
});
describe('dispose()', function () {
it('should dispose the root suite', function () {
mocha.dispose();
expect(suite.dispose, 'was called once');
});
it('should dispose previous test runner', function () {
mocha._previousRunner = runner;
mocha.dispose();
expect(runner.dispose, 'was called once');
});
it('should unload the files', function () {
var unloadFilesStub = sinon.stub(mocha, 'unloadFiles');
mocha.dispose();
expect(unloadFilesStub, 'was called once');
});
});
describe('dryRun()', function () {
it('should set the dryRun option to true', function () {
mocha.dryRun();
expect(mocha.options, 'to have property', 'dryRun', true);
});
it('should set the dryRun option to false', function () {
mocha.dryRun(false);
expect(mocha.options, 'to have property', 'dryRun', false);
});
});
describe('passOnFailingTestSuite()', function() {
it('should set the passOnFailingTestSuite option to false', function() {
mocha.passOnFailingTestSuite();
expect(
mocha.options,
'to have property',
'passOnFailingTestSuite',
false
);
});
it('should set the passOnFailingTestSuite option to true', function() {
mocha.passOnFailingTestSuite(true);
expect(
mocha.options,
'to have property',
'passOnFailingTestSuite',
true
);
});
});
describe('failZero()', function () {
it('should set the failZero option to true', function () {
mocha.failZero();
expect(mocha.options, 'to have property', 'failZero', true);
});
it('should set the failZero option to false', function () {
mocha.failZero(false);
expect(mocha.options, 'to have property', 'failZero', false);
});
});
describe('forbidOnly()', function () {
it('should set the forbidOnly option to true', function () {
mocha.forbidOnly();
expect(mocha.options, 'to have property', 'forbidOnly', true);
});
it('should set the forbidOnly option to false', function () {
mocha.forbidOnly(false);
expect(mocha.options, 'to have property', 'forbidOnly', false);
});
it('should be chainable', function () {
expect(mocha.forbidOnly(), 'to be', mocha);
});
});
describe('forbidPending()', function () {
it('should set the forbidPending option to true', function () {
mocha.forbidPending();
expect(mocha.options, 'to have property', 'forbidPending', true);
});
it('should set the forbidPending option to false', function () {
mocha.forbidPending(false);
expect(mocha.options, 'to have property', 'forbidPending', false);
});
it('should be chainable', function () {
expect(mocha.forbidPending(), 'to be', mocha);
});
});
describe('fullTrace()', function () {
it('should set the fullTrace option to true', function () {
mocha.fullTrace();
expect(mocha.options, 'to have property', 'fullTrace', true);
});
it('should set the fullTrace option to false', function () {
mocha.fullTrace(false);
expect(mocha.options, 'to have property', 'fullTrace', false);
});
it('should be chainable', function () {
expect(mocha.fullTrace(), 'to be', mocha);
});
});
describe('global()', function () {
it('should be an empty array initially', function () {
expect(mocha.options.global, 'to be empty');
});
it('should be chainable', function () {
expect(mocha.global(), 'to be', mocha);
});
describe('when argument is invalid', function () {
it('should not modify the whitelist when given empty string', function () {
mocha.global('');
expect(mocha.options.global, 'to be empty');
});
it('should not modify the whitelist when given empty array', function () {
mocha.global([]);
expect(mocha.options.global, 'to be empty');
});
});
describe('when argument is valid', function () {
var elem = 'foo';
var elem2 = 'bar';
var elem3 = 'baz';
it('should add string to the whitelist', function () {
mocha.global(elem);
expect(mocha.options.global, 'to contain', elem);
expect(mocha.options.global, 'to have length', 1);
});
it('should add contents of string array to the whitelist', function () {
var elems = [elem, elem2];
mocha.global(elems);
expect(mocha.options.global, 'to contain', elem, elem2);
expect(mocha.options.global, 'to have length', elems.length);
});
it('should not have duplicates', function () {
var mocha = new Mocha({global: [elem, elem2]});
var elems = [elem, elem2, elem3];
mocha.global(elems);
expect(mocha.options.global, 'to contain', elem, elem2, elem3);
expect(mocha.options.global, 'to have length', elems.length);
});
});
});
describe('inlineDiffs()', function () {
it('should set the inlineDiffs option to true', function () {
mocha.inlineDiffs();
expect(mocha.options, 'to have property', 'inlineDiffs', true);
});
it('should set the inlineDiffs option to false', function () {
mocha.inlineDiffs(false);
expect(mocha.options, 'to have property', 'inlineDiffs', false);
});
it('should be chainable', function () {
expect(mocha.inlineDiffs(), 'to be', mocha);
});
});
describe('invert()', function () {
it('should set the invert option to true', function () {
mocha.invert();
expect(mocha.options, 'to have property', 'invert', true);
});
it('should be chainable', function () {
expect(mocha.invert(), 'to be', mocha);
});
});
describe('noHighlighting()', function () {
// :NOTE: Browser-only option...
it('should set the noHighlighting option to true', function () {
mocha.noHighlighting();
expect(mocha.options, 'to have property', 'noHighlighting', true);
});
it('should be chainable', function () {
expect(mocha.noHighlighting(), 'to be', mocha);
});
});
describe('reporter()', function () {
it('should be chainable', function () {
expect(mocha.reporter(), 'to be', mocha);
});
it('should keep reporterOption on options', function () {
var mocha = new Mocha({
reporter: 'spec',
reporterOption: {
foo: 'bar'
}
});
expect(mocha.options.reporterOption, 'to have property', 'foo', 'bar');
// To support the legacy property name that can be used by reporters
expect(mocha.options.reporterOptions, 'to have property', 'foo', 'bar');
});
it('should support legacy reporterOptions', function () {
var mocha = new Mocha({
reporter: 'spec',
reporterOptions: {
foo: 'bar'
}
});
expect(mocha.options.reporterOption, 'to have property', 'foo', 'bar');
// To support the legacy property name that can be used by reporters
expect(mocha.options.reporterOptions, 'to have property', 'foo', 'bar');
});
});
describe('run()', function () {
let globalFixtureContext;
beforeEach(function () {
globalFixtureContext = {};
sinon.stub(mocha, 'runGlobalSetup').returns(globalFixtureContext);
sinon.stub(mocha, 'runGlobalTeardown').returns(globalFixtureContext);
});
describe('when files have been added to the Mocha instance', function () {
beforeEach(function () {
sinon.stub(mocha, 'loadFiles');
mocha.addFile('some-file.js');
});
describe('when Mocha is set to eagerly load files', function () {
it('should eagerly load files', function (done) {
mocha.run(function () {
expect(mocha.loadFiles, 'was called once');
done();
});
});
});
describe('when Mocha is set to lazily load files', function () {
beforeEach(function () {
mocha.lazyLoadFiles(true);
});
it('should not eagerly load files', function (done) {
mocha.run(function () {
expect(mocha.loadFiles, 'was not called');
done();
});
});
});
});
describe('Runner initialization', function () {
it('should instantiate a Runner', function (done) {
mocha.run(function () {
expect(Runner, 'to have a call satisfying', {
calledWithNew: true,
args: [
mocha.suite,
{
delay: mocha.options.delay,
cleanReferencesAfterRun: mocha.options.cleanReferencesAfterRun
}
]
}).and('was called once');
done();
});
});
describe('when "grep" option is present', function () {
beforeEach(function () {
mocha.options.grep = /foo/;
mocha.options.invert = false;
});
it('should configure "grep"', function (done) {
mocha.run(function () {
expect(runner.grep, 'to have a call satisfying', [
mocha.options.grep,
mocha.options.invert
]).and('was called once');
done();
});
});
});
describe('when "global" option is present', function () {
beforeEach(function () {
mocha.options.global = ['foo', 'bar'];
});
it('should configure global vars', function (done) {
mocha.run(function () {
expect(runner.globals, 'to have a call satisfying', [
mocha.options.global
]).and('was called once');
done();
});
});
});
});
describe('Base reporter initialization', function () {
beforeEach(function () {
mocha.options.inlineDiffs = 'some value';
mocha.options.diff = false;
});
describe('when "color" options is set', function () {
beforeEach(function () {
mocha.options.color = 'truthy';
});
it('should configure the Base reporter', function (done) {
mocha.run(function () {
expect(Base, 'to satisfy', {
inlineDiffs: 'some value',
hideDiff: true,
useColors: 'truthy'
});
done();
});
});
});
it('should configure the Base reporter', function (done) {
mocha.run(function () {
expect(Base, 'to satisfy', {
inlineDiffs: 'some value',
hideDiff: true
});
done();
});
});
});
it('should instantiate a reporter', function (done) {
mocha.run(function () {
expect(opts.reporter, 'to have a call satisfying', {
calledWithNew: true,
args: [runner, mocha.options]
}).and('was called once');
done();
});
});
// TODO: figure out how to stub the stats collector
it('should initialize the stats collector');
describe('when a reporter instance has a "done" method', function () {
beforeEach(function () {
reporterInstance.done = sinon.stub().callsArgAsync(1);
});
it('should call the reporter "done" method', function (done) {
mocha.run(function () {
expect(reporterInstance.done, 'was called once');
done();
});
});
});
it('should execute the callback when complete', function (done) {
mocha.run(done);
});
describe('when a run is in progress', function () {
it('should throw', function (done) {
mocha.run(done); // this is async!
expect(
function () {
mocha.run();
},
'to throw',
{
code: 'ERR_MOCHA_INSTANCE_ALREADY_RUNNING',
instance: mocha
}
);
});
it('should not call `Runner#runAsync`', function (done) {
mocha.run(done); // this is async!
try {
mocha.run();
} catch (ignored) {
} finally {
// it'll be 0 or 1, depending on timing.
expect(runner.runAsync.callCount, 'to be less than', 2);
}
});
});
describe('when the `Mocha` instance is already disposed', function () {
beforeEach(function () {
mocha.dispose();
});
it('should throw', function () {
expect(
function () {
mocha.run();
},
'to throw',
{
code: 'ERR_MOCHA_INSTANCE_ALREADY_DISPOSED',
cleanReferencesAfterRun: true,
instance: mocha
}
);
});
it('should not call `Runner#runAsync`', function () {
try {
mocha.run();
} catch (ignored) {
} finally {
expect(runner.runAsync, 'was not called');
}
});
});
describe('when a run has finished and is called again', function () {
beforeEach(function (done) {
mocha.run(function () {
runner.runAsync.reset();
done();
});
});
it('should throw', function () {
expect(
function () {
mocha.run();
},
'to throw',
{
code: 'ERR_MOCHA_INSTANCE_ALREADY_DISPOSED',
instance: mocha
}
);
});
it('should not call `Runner#runAsync()`', function () {
try {
mocha.run();
} catch (ignored) {
} finally {
expect(runner.runAsync, 'was not called');
}
});
});
describe('when Mocha configured for multiple runs and multiple runs are attempted', function () {
beforeEach(function () {
mocha.cleanReferencesAfterRun(false);
});
it('should not throw', function (done) {
mocha.run(function () {
mocha.run(done);
});
});
it('should call `Runner#runAsync` for each call', function (done) {
mocha.run(function () {
mocha.run(function () {
expect(runner.runAsync, 'was called twice');
done();
});
});
});
it('should reset the root Suite between runs', function (done) {
mocha.run(function () {
mocha.run(function () {
expect(suite.reset, 'was called once');
done();
});
});
});
it('should dispose the previous runner', function (done) {
mocha.run(function () {
mocha.run(function () {
expect(runner.dispose, 'was called once');
done();
});
});
});
});
describe('when global setup fixtures enabled', function () {
beforeEach(function () {
mocha.options.enableGlobalSetup = true;
});
describe('when global setup fixtures not present', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalSetupFixtures').returns(false);
});
it('should not run global setup fixtures', function (done) {
mocha.run(() => {
expect(mocha.runGlobalSetup, 'was not called');
done();
});
});
});
describe('when global setup fixtures are present', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalSetupFixtures').returns(true);
});
it('should run global setup fixtures', function (done) {
mocha.run(() => {
expect(mocha.runGlobalSetup, 'to have a call satisfying', {
args: [expect.it('to be', runner)]
}).and('was called once');
done();
});
});
});
});
describe('when global setup fixtures disabled', function () {
beforeEach(function () {
mocha.options.enableGlobalSetup = false;
});
describe('when global setup fixtures not present', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalSetupFixtures').returns(false);
});
it('should not run global setup fixtures', function (done) {
mocha.run(() => {
expect(mocha.runGlobalSetup, 'was not called');
done();
});
});
});
describe('when global setup fixtures are present', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalSetupFixtures').returns(true);
});
it('should not run global setup fixtures', function (done) {
mocha.run(() => {
expect(mocha.runGlobalSetup, 'was not called');
done();
});
});
});
});
describe('when global teardown fixtures enabled', function () {
beforeEach(function () {
mocha.options.enableGlobalTeardown = true;
});
describe('when global teardown fixtures not present', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalTeardownFixtures').returns(false);
});
it('should not run global teardown fixtures', function (done) {
mocha.run(() => {
expect(mocha.runGlobalTeardown, 'was not called');
done();
});
});
});
describe('when global teardown fixtures are present', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalTeardownFixtures').returns(true);
});
it('should run global teardown fixtures', function (done) {
mocha.run(() => {
expect(mocha.runGlobalTeardown, 'to have a call satisfying', {
args: [expect.it('to be', runner), {context: {}}]
}).and('was called once');
done();
});
});
describe('when global setup fixtures are present and enabled', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalSetupFixtures').returns(true);
mocha.options.enableGlobalSetup = true;
});
it('should use the same context as returned by `runGlobalSetup`', function (done) {
mocha.run(() => {
expect(mocha.runGlobalTeardown, 'to have a call satisfying', {
args: [
expect.it('to be', runner),
{context: globalFixtureContext}
]
}).and('was called once');
done();
});
});
});
});
});
describe('when global teardown fixtures disabled', function () {
beforeEach(function () {
mocha.options.enableGlobalTeardown = false;
});
describe('when global teardown fixtures not present', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalTeardownFixtures').returns(false);
});
it('should not run global teardown fixtures', function (done) {
mocha.run(() => {
expect(mocha.runGlobalTeardown, 'was not called');
done();
});
});
});
describe('when global teardown fixtures are present', function () {
beforeEach(function () {
sinon.stub(mocha, 'hasGlobalTeardownFixtures').returns(true);
});
it('should not run global teardown fixtures', function (done) {
mocha.run(() => {
expect(mocha.runGlobalTeardown, 'was not called');
done();
});
});