-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmonkeypatching.tap.js
More file actions
69 lines (49 loc) · 2.14 KB
/
monkeypatching.tap.js
File metadata and controls
69 lines (49 loc) · 2.14 KB
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
'use strict';
var test = require('tap').test;
if (!process.addAsyncListener) {
test("overwriting startup.processNextTick", function (t) {
t.plan(2);
t.doesNotThrow(function () { require('../bootstrap.js'); });
t.ok(process.nextTick.__wrapped, "should wrap process.nextTick()");
});
test("overwriting domain helpers", function (t) {
// domain helpers were only in 0.10.x
if (!(process._nextDomainTick ||
process._tickDomainCallback)) {
return t.end();
}
t.plan(2);
t.ok(process._nextDomainTick.__wrapped,
"should wrap process._nextDomainTick()");
t.ok(process._tickDomainCallback.__wrapped,
"should wrap process._tickDomainCallback()");
});
test("overwriting timers", function (t) {
t.plan(6);
t.ok(setTimeout.__wrapped, "should wrap setTimeout()");
t.ok(setInterval.__wrapped, "should wrap setInterval()");
t.ok(global.setTimeout.__wrapped, "should also wrap global setTimeout()");
t.ok(global.setInterval.__wrapped, "should also wrap global setInterval()");
var timers = require('timers');
t.ok(timers.setTimeout.__wrapped, "should wrap setTimeout()");
t.ok(timers.setInterval.__wrapped, "should wrap setInterval()");
/* It would be nice to test that monkeypatching preserves the status quo
* ante, but assert thinks setTimeout !== global.setTimeout (why?) and both of
* those are a wrapper around NativeModule.require("timers").setTimeout,
* presumably to try to prevent the kind of "fun" I'm having here.
*/
});
test("overwriting setImmediate", function (t) {
// setTimeout's a johnny-come-lately
if (!global.setImmediate) return t.end();
t.plan(3);
t.ok(setImmediate.__wrapped, "should wrap setImmediate()");
t.ok(global.setImmediate.__wrapped, "should also wrap global setImmediate()");
t.ok(require('timers').setImmediate.__wrapped, "should wrap setImmediate()");
/* It would be nice to test that monkeypatching preserves the status quo
* ante, but assert thinks setTimeout !== global.setTimeout (why?) and both of
* those are a wrapper around NativeModule.require("timers").setTimeout,
* presumably to try to prevent the kind of "fun" I'm having here.
*/
});
}