forked from newrelic/node-newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshim.test.js
3175 lines (2747 loc) · 89.2 KB
/
shim.test.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
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
'use strict'
const tap = require('tap')
const { EventEmitter } = require('events')
const helper = require('../../lib/agent_helper')
const Shim = require('../../../lib/shim/shim')
const symbols = require('../../../lib/symbols')
const { RecorderSpec } = require('../../../lib/shim/specs')
tap.test('Shim', function (t) {
t.autoend()
let agent = null
let contextManager = null
let shim = null
let wrappable = null
function beforeEach() {
agent = helper.loadMockedAgent()
contextManager = helper.getContextManager()
shim = new Shim(agent, 'test-module')
wrappable = {
name: 'this is a name',
bar: function barsName(unused, params) { return 'bar' }, // eslint-disable-line
fiz: function fizsName() {
return 'fiz'
},
anony: function () {},
getActiveSegment: function () {
return contextManager.getContext()
}
}
}
function afterEach() {
helper.unloadAgent(agent)
agent = null
contextManager = null
shim = null
}
/**
* Helper that verifies the original callback
* and wrapped callback are the same
*/
function checkNotWrapped(cb, wrappedCB) {
this.equal(wrappedCB, cb)
this.notOk(shim.isWrapped(wrappedCB))
this.end()
}
t.test('constructor', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should require an agent parameter', function (t) {
t.throws(function () {
return new Shim()
})
t.end()
})
t.test('should require a module name parameter', function (t) {
t.throws(function () {
return new Shim(agent)
})
t.end()
})
t.test('should assign properties from parent', (t) => {
const mod = 'test-mod'
const name = mod
const version = '1.0.0'
const shim = new Shim(agent, mod, mod, name, version)
t.equal(shim.moduleName, mod)
t.equal(agent, shim._agent)
t.equal(shim.pkgVersion, version)
t.end()
})
})
t.test('.defineProperty', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should create a non-writable property', function (t) {
const foo = {}
Shim.defineProperty(foo, 'bar', 'foobar')
t.equal(foo.bar, 'foobar')
t.isNonWritable({ obj: foo, key: 'bar', value: 'foobar' })
t.end()
})
t.test('should create a getter', function (t) {
const foo = {}
let getterCalled = false
Shim.defineProperty(foo, 'bar', function () {
getterCalled = true
return 'foobar'
})
t.notOk(getterCalled)
t.equal(foo.bar, 'foobar')
t.ok(getterCalled)
t.end()
})
})
t.test('.defineProperties', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should create all the properties specified', function (t) {
const foo = {}
Shim.defineProperties(foo, {
bar: 'foobar',
fiz: function () {
return 'bang'
}
})
t.same(Object.keys(foo), ['bar', 'fiz'])
t.end()
})
})
t.test('#FIRST through #LAST', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
const keys = ['FIRST', 'SECOND', 'THIRD', 'FOURTH', 'LAST']
keys.forEach((key, i) => {
t.test(`${key} should be a non-writable property`, function (t) {
t.isNonWritable({ obj: shim, key })
t.end()
})
t.test(`${key} should be an array index value`, function (t) {
t.equal(shim[key], key === 'LAST' ? -1 : i)
t.end()
})
})
})
t.test('#agent', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should be a non-writable property', function (t) {
t.isNonWritable({ obj: shim, key: 'agent', value: agent })
t.end()
})
t.test('should be the agent handed to the constructor', function (t) {
const foo = {}
const s = new Shim(foo, 'test-module')
t.equal(s.agent, foo)
t.end()
})
})
t.test('#tracer', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should be a non-writable property', function (t) {
t.isNonWritable({ obj: shim, key: 'tracer', value: agent.tracer })
t.end()
})
t.test('should be the tracer from the agent', function (t) {
const foo = { tracer: {} }
const s = new Shim(foo, 'test-module')
t.equal(s.tracer, foo.tracer)
t.end()
})
})
t.test('#moduleName', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should be a non-writable property', function (t) {
t.isNonWritable({ obj: shim, key: 'moduleName', value: 'test-module' })
t.end()
})
t.test('should be the name handed to the constructor', function (t) {
const s = new Shim(agent, 'some-module-name')
t.equal(s.moduleName, 'some-module-name')
t.end()
})
})
t.test('#logger', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should be a non-writable property', function (t) {
t.isNonWritable({ obj: shim, key: 'logger' })
t.end()
})
t.test('should be a logger to use with the shim', function (t) {
t.ok(shim.logger.trace instanceof Function)
t.ok(shim.logger.debug instanceof Function)
t.ok(shim.logger.info instanceof Function)
t.ok(shim.logger.warn instanceof Function)
t.ok(shim.logger.error instanceof Function)
t.end()
})
})
t.test('#wrap', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should call the spec with the to-be-wrapped item', function (t) {
shim.wrap(wrappable, function (_shim, toWrap, name) {
t.equal(_shim, shim)
t.equal(toWrap, wrappable)
t.equal(name, wrappable.name)
t.end()
})
})
t.test('should match the arity and name of the original when specified', function (t) {
// eslint-disable-next-line no-unused-vars
function toWrap(a, b) {}
const wrapped = shim.wrap(toWrap, {
wrapper: function () {
return function wrappedFn() {}
},
matchArity: true
})
t.not(wrapped, toWrap)
t.equal(wrapped.length, toWrap.length)
t.equal(wrapped.name, toWrap.name)
t.end()
})
t.test('should pass items in the `args` parameter to the spec', function (t) {
/* eslint-disable max-params */
shim.wrap(
wrappable,
function (_shim, toWrap, name, arg1, arg2, arg3) {
t.equal(arguments.length, 6)
t.equal(arg1, 'a')
t.equal(arg2, 'b')
t.equal(arg3, 'c')
t.end()
},
['a', 'b', 'c']
)
/* eslint-enable max-params */
})
t.test('should wrap the first parameter', function (t) {
shim.wrap(wrappable, function (_, toWrap) {
t.equal(toWrap, wrappable)
t.end()
})
})
t.test('should wrap the first parameter when properties is `null`', function (t) {
shim.wrap(wrappable, null, function (_, toWrap) {
t.equal(toWrap, wrappable)
t.end()
})
})
t.test('should mark the first parameter as wrapped', function (t) {
const wrapped = shim.wrap(wrappable, function (_, toWrap) {
return { wrappable: toWrap }
})
t.not(wrapped, wrappable)
t.equal(wrapped.wrappable, wrappable)
t.ok(shim.isWrapped(wrapped))
t.end()
})
})
t.test('#wrap with properties', function (t) {
let barTestWrapper = null
let originalBar = null
let ret = null
t.autoend()
t.beforeEach(function () {
beforeEach()
barTestWrapper = function () {}
originalBar = wrappable.bar
ret = shim.wrap(wrappable, 'bar', function () {
return barTestWrapper
})
})
t.afterEach(afterEach)
t.test('should accept a single property', function (t) {
const originalFiz = wrappable.fiz
shim.wrap(wrappable, 'fiz', function (_, toWrap, name) {
t.equal(toWrap, wrappable.fiz)
t.equal(name, 'fiz', 'should use property as name')
})
t.equal(ret, wrappable)
t.equal(wrappable.fiz, originalFiz, 'should not replace unwrapped')
t.end()
})
t.test('should accept an array of properties', function (t) {
let specCalled = 0
shim.wrap(wrappable, ['fiz', 'anony'], function (_, toWrap, name) {
++specCalled
if (specCalled === 1) {
t.equal(toWrap, wrappable.fiz)
t.equal(name, 'fiz')
} else if (specCalled === 2) {
t.equal(toWrap, wrappable.anony)
t.equal(name, 'anony')
}
})
t.equal(specCalled, 2)
t.end()
})
t.test('should replace wrapped properties on the original object', function (t) {
t.not(wrappable.bar, originalBar)
t.end()
})
t.test('should mark wrapped properties as such', function (t) {
t.ok(shim.isWrapped(wrappable, 'bar'))
t.end()
})
t.test('should not mark unwrapped properties as wrapped', function (t) {
t.notOk(shim.isWrapped(wrappable, 'fiz'))
t.end()
})
})
t.test('with a function', function (t) {
t.autoend()
let wrapper = null
t.beforeEach(function () {
beforeEach()
wrapper = function wrapperFunc() {
return function wrapped() {}
}
shim.wrap(wrappable, 'bar', wrapper)
})
t.afterEach(afterEach)
t.test('should not maintain the name', function (t) {
t.equal(wrappable.bar.name, 'wrapped')
t.end()
})
t.test('should not maintain the arity', function (t) {
t.equal(wrappable.bar.length, 0)
t.end()
})
})
t.test('#bindSegment', function (t) {
t.autoend()
let segment
let startingSegment
t.beforeEach(function () {
beforeEach()
segment = {
started: false,
touched: false,
probed: false,
start: function () {
this.started = true
},
touch: function () {
this.touched = true
},
probe: function () {
this.probed = true
}
}
startingSegment = contextManager.getContext()
})
t.afterEach(afterEach)
t.test('should not wrap non-functions', function (t) {
shim.bindSegment(wrappable, 'name')
t.notOk(shim.isWrapped(wrappable, 'name'))
t.end()
})
t.test('should not error if `nodule` is `null`', function (t) {
t.doesNotThrow(function () {
shim.bindSegment(null, 'foobar', segment)
})
t.end()
})
t.test('should wrap the first parameter if `property` is not given', function (t) {
const wrapped = shim.bindSegment(wrappable.getActiveSegment, segment)
t.not(wrapped, wrappable.getActiveSegment)
t.ok(shim.isWrapped(wrapped))
t.equal(shim.unwrap(wrapped), wrappable.getActiveSegment)
t.end()
})
t.test('should wrap the first parameter if `property` is `null`', function (t) {
const wrapped = shim.bindSegment(wrappable.getActiveSegment, null, segment)
t.not(wrapped, wrappable.getActiveSegment)
t.ok(shim.isWrapped(wrapped))
t.equal(shim.unwrap(wrapped), wrappable.getActiveSegment)
t.end()
})
t.test('should not wrap the function at all with no segment', function (t) {
const wrapped = shim.bindSegment(wrappable.getActiveSegment)
t.equal(wrapped, wrappable.getActiveSegment)
t.notOk(shim.isWrapped(wrapped))
t.end()
})
t.test('should be safe to pass a full param with not segment', function (t) {
const wrapped = shim.bindSegment(wrappable.getActiveSegment, null, true)
t.equal(wrapped, wrappable.getActiveSegment)
t.notOk(shim.isWrapped(wrapped))
t.doesNotThrow(wrapped)
t.end()
})
t.test('should make the given segment active while executing', function (t) {
t.not(startingSegment, segment, 'test should start in clean condition')
shim.bindSegment(wrappable, 'getActiveSegment', segment)
t.equal(contextManager.getContext(), startingSegment)
t.equal(wrappable.getActiveSegment(), segment)
t.equal(contextManager.getContext(), startingSegment)
t.end()
})
t.test('should not require any arguments except a function', function (t) {
t.not(startingSegment, segment, 'test should start in clean condition')
// bindSegment will not wrap if there is no segment active and
// no segment is passed in. To get around this we set the
// active segment to an object known not to be null then do the
// wrapping.
contextManager.setContext(segment)
const wrapped = shim.bindSegment(wrappable.getActiveSegment)
contextManager.setContext(startingSegment)
t.equal(wrapped(), segment)
t.equal(contextManager.getContext(), startingSegment)
t.end()
})
t.test('should default `full` to false', function (t) {
shim.bindSegment(wrappable, 'getActiveSegment', segment)
wrappable.getActiveSegment()
t.notOk(segment.started)
t.notOk(segment.touched)
t.end()
})
t.test('should start and touch the segment if `full` is `true`', function (t) {
shim.bindSegment(wrappable, 'getActiveSegment', segment, true)
wrappable.getActiveSegment()
t.ok(segment.started)
t.ok(segment.touched)
t.end()
})
t.test('should default to the current segment', function (t) {
contextManager.setContext(segment)
shim.bindSegment(wrappable, 'getActiveSegment')
const activeSegment = wrappable.getActiveSegment()
t.equal(activeSegment, segment)
t.end()
})
})
t.test('#wrapReturn', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should not wrap non-function objects', function (t) {
shim.wrapReturn(wrappable, 'name', function () {})
t.notOk(shim.isWrapped(wrappable, 'name'))
t.end()
})
t.test('should not blow up when wrapping a non-object prototype', function (t) {
function noProto() {}
noProto.prototype = undefined
const instance = shim.wrapReturn(noProto, function () {}).bind({})
t.doesNotThrow(instance)
t.end()
})
t.test('should not blow up when wrapping a non-object prototype, null bind', function (t) {
function noProto() {}
noProto.prototype = undefined
const instance = shim.wrapReturn(noProto, function () {}).bind(null)
t.doesNotThrow(instance)
t.end()
})
t.test('should wrap the first parameter if no properties are given', function (t) {
const wrapped = shim.wrapReturn(wrappable.bar, function () {})
t.not(wrapped, wrappable.bar)
t.ok(shim.isWrapped(wrapped))
t.equal(shim.unwrap(wrapped), wrappable.bar)
t.end()
})
t.test('should wrap the first parameter if `null` is given for properties', function (t) {
const wrapped = shim.wrapReturn(wrappable.bar, null, function () {})
t.not(wrapped, wrappable.bar)
t.ok(shim.isWrapped(wrapped))
t.equal(shim.unwrap(wrapped), wrappable.bar)
t.end()
})
t.test('should replace wrapped properties on the original object', function (t) {
const original = wrappable.bar
shim.wrapReturn(wrappable, 'bar', function () {})
t.not(wrappable.bar, original)
t.ok(shim.isWrapped(wrappable, 'bar'))
t.equal(shim.unwrap(wrappable.bar), original)
t.end()
})
t.test('should wrap child instance properly', function (t) {
class ParentTest {
constructor() {
this.parent = true
}
parentMethod() {
return 'hello world'
}
}
const WrappedParent = shim.wrapReturn(ParentTest, function () {})
class ChildTest extends WrappedParent {
childMethod() {
return 'child method'
}
}
const child = new ChildTest()
t.ok(typeof child.childMethod === 'function', 'should have child methods')
t.ok(typeof child.parentMethod === 'function', 'should have parent methods')
t.end()
})
})
t.test('#wrapReturn wrapper', function (t) {
t.autoend()
let executed
let toWrap
let returned
t.beforeEach(function () {
beforeEach()
executed = false
toWrap = {
foo: function () {
executed = true
returned = {
context: this,
args: shim.toArray(arguments)
}
return returned
}
}
})
t.afterEach(afterEach)
t.test('should execute the wrapped function', function (t) {
shim.wrapReturn(toWrap, 'foo', function () {})
const res = toWrap.foo('a', 'b', 'c')
t.ok(executed)
t.equal(res.context, toWrap)
t.same(res.args, ['a', 'b', 'c'])
t.end()
})
t.test('should pass properties through', function (t) {
const original = toWrap.foo
original.testSymbol = Symbol('test')
shim.wrapReturn(toWrap, 'foo', function () {})
// wrapper is not the same function reference
t.not(original, toWrap.foo)
// set on original
t.equal(toWrap.foo.testSymbol, original.testSymbol)
t.end()
})
t.test('should pass assignments to the wrapped method', function (t) {
const original = toWrap.foo
shim.wrapReturn(toWrap, 'foo', function () {})
toWrap.foo.testProp = 1
// wrapper is not the same function reference
t.not(original, toWrap.foo)
// set via wrapper
t.equal(original.testProp, 1)
t.end()
})
t.test('should pass defined properties to the wrapped method', function (t) {
const original = toWrap.foo
shim.wrapReturn(toWrap, 'foo', function () {})
Object.defineProperty(toWrap.foo, 'testDefProp', { value: 4 })
// wrapper is not the same function reference
t.not(original, toWrap.foo)
// set with defineProperty via wrapper
t.equal(original.testDefProp, 4)
t.end()
})
t.test('should have the same key enumeration', function (t) {
const original = toWrap.foo
original.testSymbol = Symbol('test')
shim.wrapReturn(toWrap, 'foo', function () {})
toWrap.foo.testProp = 1
// wrapper is not the same function reference
t.not(original, toWrap.foo)
// should have the same keys
t.same(Object.keys(original), Object.keys(toWrap.foo))
t.end()
})
t.test('should call the spec with returned value', function (t) {
let specExecuted = false
shim.wrapReturn(toWrap, 'foo', function (_, fn, name, ret) {
specExecuted = true
t.equal(ret, returned)
})
toWrap.foo()
t.ok(specExecuted)
t.end()
})
t.test('should invoke the spec in the context of the wrapped function', function (t) {
shim.wrapReturn(toWrap, 'foo', function () {
t.equal(this, toWrap)
})
toWrap.foo()
t.end()
})
t.test('should invoke the spec with `new` if itself is invoked with `new`', function (t) {
function Foo() {
t.ok(this instanceof Foo)
}
Foo.prototype.method = function () {}
const WrappedFoo = shim.wrapReturn(Foo, function () {
t.ok(this instanceof Foo)
})
const foo = new WrappedFoo()
t.ok(foo instanceof Foo)
t.ok(foo instanceof WrappedFoo)
t.ok(typeof foo.method === 'function')
t.end()
})
t.test('should pass items in the `args` parameter to the spec', function (t) {
/* eslint-disable max-params */
shim.wrapReturn(
toWrap,
'foo',
function (_, fn, name, ret, a, b, c) {
t.equal(arguments.length, 7)
t.equal(a, 'a')
t.equal(b, 'b')
t.equal(c, 'c')
},
['a', 'b', 'c']
)
/* eslint-enable max-params */
toWrap.foo()
t.end()
})
})
t.test('#wrapClass', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should not wrap non-function objects', function (t) {
shim.wrapClass(wrappable, 'name', function () {})
t.notOk(shim.isWrapped(wrappable, 'name'))
t.end()
})
t.test('should wrap the first parameter if no properties are given', function (t) {
const wrapped = shim.wrapClass(wrappable.bar, function () {})
t.not(wrapped, wrappable.bar)
t.ok(shim.isWrapped(wrapped))
t.equal(shim.unwrap(wrapped), wrappable.bar)
t.end()
})
t.test('should wrap the first parameter if `null` is given for properties', function (t) {
const wrapped = shim.wrapClass(wrappable.bar, null, function () {})
t.not(wrapped, wrappable.bar)
t.ok(shim.isWrapped(wrapped))
t.equal(shim.unwrap(wrapped), wrappable.bar)
t.end()
})
t.test('should replace wrapped properties on the original object', function (t) {
const original = wrappable.bar
shim.wrapClass(wrappable, 'bar', function () {})
t.not(wrappable.bar, original)
t.ok(shim.isWrapped(wrappable, 'bar'))
t.equal(shim.unwrap(wrappable.bar), original)
t.end()
})
})
t.test('#wrapClass wrapper', function (t) {
t.autoend()
let executed = null
let toWrap = null
let original = null
t.beforeEach(function () {
beforeEach()
executed = false
toWrap = {
Foo: function () {
this.executed = executed = true
this.context = this
this.args = shim.toArray(arguments)
}
}
original = toWrap.Foo
})
t.afterEach(afterEach)
t.test('should execute the wrapped function', function (t) {
shim.wrapClass(toWrap, 'Foo', function () {})
const res = new toWrap.Foo('a', 'b', 'c')
t.ok(executed)
t.equal(res.context, res)
t.same(res.args, ['a', 'b', 'c'])
t.end()
})
t.test('should call the hooks in the correct order', function (t) {
let preExecuted = false
let postExecuted = false
shim.wrapClass(toWrap, 'Foo', {
pre: function () {
preExecuted = true
t.not(this)
},
post: function () {
postExecuted = true
t.ok(this.executed)
t.ok(this instanceof toWrap.Foo)
t.ok(this instanceof original)
}
})
const foo = new toWrap.Foo()
t.ok(preExecuted)
t.ok(foo.executed)
t.ok(postExecuted)
t.end()
})
t.test('should pass items in the `args` parameter to the spec', function (t) {
/* eslint-disable max-params */
shim.wrapClass(
toWrap,
'Foo',
function (_, fn, name, args, a, b, c) {
t.equal(arguments.length, 7)
t.equal(a, 'a')
t.equal(b, 'b')
t.equal(c, 'c')
},
['a', 'b', 'c']
)
/* eslint-enable max-params */
const foo = new toWrap.Foo()
t.ok(foo)
t.end()
})
})
t.test('#wrapExport', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should execute the given wrap function', function (t) {
let executed = false
shim.wrapExport({}, function () {
executed = true
})
t.ok(executed)
t.end()
})
t.test('should store the wrapped version for later retrival', function (t) {
const original = {}
const wrapped = shim.wrapExport(original, function () {
return {}
})
const xport = shim.getExport()
t.equal(xport, wrapped)
t.not(xport, original)
t.end()
})
})
t.test('#record', function (t) {
t.autoend()
t.beforeEach(beforeEach)
t.afterEach(afterEach)
t.test('should not wrap non-function objects', function (t) {
const wrapped = shim.record(wrappable, function () {})
t.equal(wrapped, wrappable)
t.notOk(shim.isWrapped(wrapped))
t.end()
})
t.test('should wrap the first parameter if no properties are given', function (t) {
const wrapped = shim.record(wrappable.bar, function () {})
t.not(wrapped, wrappable.bar)
t.ok(shim.isWrapped(wrapped))
t.equal(shim.unwrap(wrapped), wrappable.bar)
t.end()
})
t.test('should wrap the first parameter if `null` is given for properties', function (t) {
const wrapped = shim.record(wrappable.bar, null, function () {})
t.not(wrapped, wrappable.bar)
t.ok(shim.isWrapped(wrapped))
t.equal(shim.unwrap(wrapped), wrappable.bar)
t.end()
})
t.test('should replace wrapped properties on the original object', function (t) {
const original = wrappable.bar
shim.record(wrappable, 'bar', function () {})
t.not(wrappable.bar, original)
t.ok(shim.isWrapped(wrappable.bar))
t.equal(shim.unwrap(wrappable.bar), original)
t.end()
})
t.test('should not mark unwrapped properties as wrapped', function (t) {
shim.record(wrappable, 'name', function () {})
t.notOk(shim.isWrapped(wrappable.name))
t.end()
})
t.test('should not create a child segment', function (t) {
shim.record(wrappable, 'getActiveSegment', function () {
return new RecorderSpec({ name: 'internal test segment', internal: true })
})
helper.runInTransaction(agent, function (tx) {
const startingSegment = contextManager.getContext()
startingSegment.internal = true
startingSegment.shim = shim
const segment = wrappable.getActiveSegment()
t.equal(segment, startingSegment)
t.equal(segment.transaction, tx)
t.equal(segment.name, 'ROOT')
t.equal(contextManager.getContext(), startingSegment)
t.end()
})
})
t.test('should still bind the callback', function (t) {
const wrapped = shim.record(
function (cb) {
t.ok(shim.isWrapped(cb))
t.end()
},
function () {
return new RecorderSpec({ name: 'test segment', internal: true, callback: shim.LAST })
}
)
helper.runInTransaction(agent, function () {
const startingSegment = contextManager.getContext()
startingSegment.internal = true
startingSegment.shim = shim
wrapped(function () {})
})
})
t.test('should not throw when using an ended segment as parent', function (t) {
helper.runInTransaction(agent, function (tx) {
tx.end()
const wrapped = shim.record(
function (cb) {
t.notOk(shim.isWrapped(cb))
t.equal(agent.getTransaction(), null)
},
function () {
return new RecorderSpec({
name: 'test segment',
internal: true,
callback: shim.LAST,
parent: tx.trace.root
})
}
)
t.doesNotThrow(function () {
wrapped(function () {})
})
t.end()
})
})
t.test('should call after hook on record when function is done executing', function (t) {
helper.runInTransaction(agent, function () {
function testAfter() {
return 'result'
}
const wrapped = shim.record(testAfter, function () {
return new RecorderSpec({
name: 'test segment',
callback: shim.LAST,
after(args) {
t.equal(Object.keys(args).length, 6, 'should have 6 args to after hook')
const { fn, name, error, result, segment } = args
t.equal(segment.name, 'test segment')
t.not(error)
t.same(fn, testAfter)
t.equal(name, testAfter.name)
t.equal(result, 'result')
}
})
})
t.doesNotThrow(function () {
wrapped()
})
t.end()
})
})