-
Notifications
You must be signed in to change notification settings - Fork 326
/
Copy pathbasic.spec.js
578 lines (489 loc) · 20.8 KB
/
basic.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
'use strict'
const os = require('os')
const { assert } = require('chai')
const { pollInterval, setup } = require('./utils')
const { assertObjectContains, assertUUID } = require('../helpers')
const { ACKNOWLEDGED, ERROR } = require('../../packages/dd-trace/src/appsec/remote_config/apply_states')
const { version } = require('../../package.json')
describe('Dynamic Instrumentation', function () {
describe('Default env', function () {
const t = setup()
it('base case: target app should work as expected if no test probe has been added', async function () {
const response = await t.axios.get(t.breakpoint.url)
assert.strictEqual(response.status, 200)
assert.deepStrictEqual(response.data, { hello: 'bar' })
})
describe('diagnostics messages', function () {
it('should send expected diagnostics messages if probe is received and triggered', function (done) {
let receivedAckUpdate = false
const probeId = t.rcConfig.config.id
const expectedPayloads = [{
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 0, status: 'RECEIVED' } }
}, {
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 0, status: 'INSTALLED' } }
}, {
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 0, status: 'EMITTING' } }
}]
t.agent.on('remote-config-ack-update', (id, version, state, error) => {
assert.strictEqual(id, t.rcConfig.id)
assert.strictEqual(version, 1)
assert.strictEqual(state, ACKNOWLEDGED)
assert.notOk(error) // falsy check since error will be an empty string, but that's an implementation detail
receivedAckUpdate = true
endIfDone()
})
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
const expected = expectedPayloads.shift()
assertObjectContains(event, expected)
assertUUID(event.debugger.diagnostics.runtimeId)
if (event.debugger.diagnostics.status === 'INSTALLED') {
t.axios.get(t.breakpoint.url)
.then((response) => {
assert.strictEqual(response.status, 200)
assert.deepStrictEqual(response.data, { hello: 'bar' })
})
.catch(done)
} else {
endIfDone()
}
})
})
t.agent.addRemoteConfig(t.rcConfig)
function endIfDone () {
if (receivedAckUpdate && expectedPayloads.length === 0) done()
}
})
it('should send expected diagnostics messages if probe is first received and then updated', function (done) {
let receivedAckUpdates = 0
const probeId = t.rcConfig.config.id
const expectedPayloads = [{
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 0, status: 'RECEIVED' } }
}, {
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 0, status: 'INSTALLED' } }
}, {
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 1, status: 'RECEIVED' } }
}, {
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 1, status: 'INSTALLED' } }
}]
const triggers = [
() => {
t.rcConfig.config.version++
t.agent.updateRemoteConfig(t.rcConfig.id, t.rcConfig.config)
},
() => {}
]
t.agent.on('remote-config-ack-update', (id, version, state, error) => {
assert.strictEqual(id, t.rcConfig.id)
assert.strictEqual(version, ++receivedAckUpdates)
assert.strictEqual(state, ACKNOWLEDGED)
assert.notOk(error) // falsy check since error will be an empty string, but that's an implementation detail
endIfDone()
})
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
const expected = expectedPayloads.shift()
assertObjectContains(event, expected)
assertUUID(event.debugger.diagnostics.runtimeId)
if (event.debugger.diagnostics.status === 'INSTALLED') triggers.shift()()
endIfDone()
})
})
t.agent.addRemoteConfig(t.rcConfig)
function endIfDone () {
if (receivedAckUpdates === 2 && expectedPayloads.length === 0) done()
}
})
it('should send expected diagnostics messages if probe is first received and then deleted', function (done) {
let receivedAckUpdate = false
let payloadsProcessed = false
const probeId = t.rcConfig.config.id
const expectedPayloads = [{
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 0, status: 'RECEIVED' } }
}, {
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { probeId, probeVersion: 0, status: 'INSTALLED' } }
}]
t.agent.on('remote-config-ack-update', (id, version, state, error) => {
assert.strictEqual(id, t.rcConfig.id)
assert.strictEqual(version, 1)
assert.strictEqual(state, ACKNOWLEDGED)
assert.notOk(error) // falsy check since error will be an empty string, but that's an implementation detail
receivedAckUpdate = true
endIfDone()
})
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
const expected = expectedPayloads.shift()
assertObjectContains(event, expected)
assertUUID(event.debugger.diagnostics.runtimeId)
if (event.debugger.diagnostics.status === 'INSTALLED') {
t.agent.removeRemoteConfig(t.rcConfig.id)
// Wait a little to see if we get any follow-up `debugger-diagnostics` messages
setTimeout(() => {
payloadsProcessed = true
endIfDone()
}, pollInterval * 2 * 1000) // wait twice as long as the RC poll interval
}
})
})
t.agent.addRemoteConfig(t.rcConfig)
function endIfDone () {
if (receivedAckUpdate && payloadsProcessed) done()
}
})
const unsupporedOrInvalidProbes = [[
'should send expected error diagnostics messages if probe doesn\'t conform to expected schema',
'bad config!!!',
{ status: 'ERROR' }
], [
'should send expected error diagnostics messages if probe type isn\'t supported',
t.generateProbeConfig({ type: 'INVALID_PROBE' })
], [
'should send expected error diagnostics messages if it isn\'t a line-probe',
t.generateProbeConfig({ where: { foo: 'bar' } }) // TODO: Use valid schema for method probe instead
]]
for (const [title, config, customErrorDiagnosticsObj] of unsupporedOrInvalidProbes) {
it(title, function (done) {
let receivedAckUpdate = false
t.agent.on('remote-config-ack-update', (id, version, state, error) => {
assert.strictEqual(id, `logProbe_${config.id}`)
assert.strictEqual(version, 1)
assert.strictEqual(state, ERROR)
assert.strictEqual(error.slice(0, 6), 'Error:')
receivedAckUpdate = true
endIfDone()
})
const probeId = config.id
const expectedPayloads = [{
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: { status: 'RECEIVED' } }
}, {
ddsource: 'dd_debugger',
service: 'node',
debugger: { diagnostics: customErrorDiagnosticsObj ?? { probeId, probeVersion: 0, status: 'ERROR' } }
}]
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
const expected = expectedPayloads.shift()
assertObjectContains(event, expected)
const { diagnostics } = event.debugger
assertUUID(diagnostics.runtimeId)
if (diagnostics.status === 'ERROR') {
assert.property(diagnostics, 'exception')
assert.hasAllKeys(diagnostics.exception, ['message', 'stacktrace'])
assert.typeOf(diagnostics.exception.message, 'string')
assert.typeOf(diagnostics.exception.stacktrace, 'string')
}
endIfDone()
})
})
t.agent.addRemoteConfig({
product: 'LIVE_DEBUGGING',
id: `logProbe_${config.id}`,
config
})
function endIfDone () {
if (receivedAckUpdate && expectedPayloads.length === 0) done()
}
})
}
})
describe('input messages', function () {
it(
'should capture and send expected payload when a log line probe is triggered',
testBasicInputWithDD.bind(null, t)
)
it('should respond with updated message if probe message is updated', function (done) {
const expectedMessages = ['Hello World!', 'Hello Updated World!']
const triggers = [
async () => {
await t.axios.get(t.breakpoint.url)
t.rcConfig.config.version++
t.rcConfig.config.template = 'Hello Updated World!'
t.agent.updateRemoteConfig(t.rcConfig.id, t.rcConfig.config)
},
async () => {
await t.axios.get(t.breakpoint.url)
}
]
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
if (event.debugger.diagnostics.status === 'INSTALLED') triggers.shift()().catch(done)
})
})
t.agent.on('debugger-input', ({ payload: [payload] }) => {
assert.strictEqual(payload.message, expectedMessages.shift())
if (expectedMessages.length === 0) done()
})
t.agent.addRemoteConfig(t.rcConfig)
})
it('should not trigger if probe is deleted', function (done) {
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
if (event.debugger.diagnostics.status === 'INSTALLED') {
t.agent.once('remote-confg-responded', async () => {
await t.axios.get(t.breakpoint.url)
// We want to wait enough time to see if the client triggers on the breakpoint so that the test can fail
// if it does, but not so long that the test times out.
// TODO: Is there some signal we can use instead of a timer?
setTimeout(done, pollInterval * 2 * 1000) // wait twice as long as the RC poll interval
})
t.agent.removeRemoteConfig(t.rcConfig.id)
}
})
})
t.agent.on('debugger-input', () => {
assert.fail('should not capture anything when the probe is deleted')
})
t.agent.addRemoteConfig(t.rcConfig)
})
})
describe('sampling', function () {
it('should respect sampling rate for single probe', function (done) {
let prev, timer
const rcConfig = t.generateRemoteConfig({ sampling: { snapshotsPerSecond: 1 } })
function triggerBreakpointContinuously () {
t.axios.get(t.breakpoint.url).catch(done)
timer = setTimeout(triggerBreakpointContinuously, 10)
}
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
if (event.debugger.diagnostics.status === 'INSTALLED') triggerBreakpointContinuously()
})
})
t.agent.on('debugger-input', ({ payload }) => {
payload.forEach(({ 'debugger.snapshot': { timestamp } }) => {
if (prev !== undefined) {
const duration = timestamp - prev
clearTimeout(timer)
// Allow for a variance of +50ms (time will tell if this is enough)
assert.isAtLeast(duration, 1000)
assert.isBelow(duration, 1050)
// Wait at least a full sampling period, to see if we get any more payloads
timer = setTimeout(done, 1250)
}
prev = timestamp
})
})
t.agent.addRemoteConfig(rcConfig)
})
it('should adhere to individual probes sample rate', function (done) {
const rcConfig1 = t.breakpoints[0].generateRemoteConfig({ sampling: { snapshotsPerSecond: 1 } })
const rcConfig2 = t.breakpoints[1].generateRemoteConfig({ sampling: { snapshotsPerSecond: 1 } })
const state = {
[rcConfig1.config.id]: {
tiggerBreakpointContinuously () {
t.axios.get(t.breakpoints[0].url).catch(done)
this.timer = setTimeout(this.tiggerBreakpointContinuously.bind(this), 10)
}
},
[rcConfig2.config.id]: {
tiggerBreakpointContinuously () {
t.axios.get(t.breakpoints[1].url).catch(done)
this.timer = setTimeout(this.tiggerBreakpointContinuously.bind(this), 10)
}
}
}
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
const { probeId, status } = event.debugger.diagnostics
if (status === 'INSTALLED') state[probeId].tiggerBreakpointContinuously()
})
})
t.agent.on('debugger-input', ({ payload }) => {
payload.forEach((result) => {
const _state = state[result['debugger.snapshot'].probe.id]
const { timestamp } = result['debugger.snapshot']
if (_state.prev !== undefined) {
const duration = timestamp - _state.prev
clearTimeout(_state.timer)
// Allow for a variance of +50ms (time will tell if this is enough)
assert.isAtLeast(duration, 1000)
assert.isBelow(duration, 1050)
// Wait at least a full sampling period, to see if we get any more payloads
_state.timer = setTimeout(doneWhenCalledTwice, 1250)
}
_state.prev = timestamp
})
})
t.agent.addRemoteConfig(rcConfig1)
t.agent.addRemoteConfig(rcConfig2)
function doneWhenCalledTwice () {
if (doneWhenCalledTwice.calledOnce) return done()
doneWhenCalledTwice.calledOnce = true
}
})
})
describe('race conditions', function () {
it('should remove the last breakpoint completely before trying to add a new one', function (done) {
const rcConfig2 = t.generateRemoteConfig()
t.agent.on('debugger-diagnostics', ({ payload }) => {
payload.forEach((event) => {
const { probeId, status } = event.debugger.diagnostics
if (status !== 'INSTALLED') return
if (probeId === t.rcConfig.config.id) {
// First INSTALLED payload: Try to trigger the race condition.
t.agent.removeRemoteConfig(t.rcConfig.id)
t.agent.addRemoteConfig(rcConfig2)
} else {
// Second INSTALLED payload: Perform an HTTP request to see if we successfully handled the race condition.
let finished = false
// If the race condition occurred, the debugger will have been detached from the main thread and the new
// probe will never trigger. If that's the case, the following timer will fire:
const timer = setTimeout(() => {
done(new Error('Race condition occurred!'))
}, 2000)
// If we successfully handled the race condition, the probe will trigger, we'll get a probe result and the
// following event listener will be called:
t.agent.once('debugger-input', () => {
clearTimeout(timer)
finished = true
done()
})
// Perform HTTP request to try and trigger the probe
t.axios.get(t.breakpoint.url).catch((err) => {
// If the request hasn't fully completed by the time the tests ends and the target app is destroyed,
// Axios will complain with a "socket hang up" error. Hence this sanity check before calling
// `done(err)`. If we later add more tests below this one, this shouuldn't be an issue.
if (!finished) done(err)
})
}
})
})
t.agent.addRemoteConfig(t.rcConfig)
})
})
})
describe('DD_TRACING_ENABLED=true, DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED=true', function () {
const t = setup({ env: { DD_TRACING_ENABLED: true, DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED: true } })
describe('input messages', function () {
it(
'should capture and send expected payload when a log line probe is triggered',
testBasicInputWithDD.bind(null, t)
)
})
})
describe('DD_TRACING_ENABLED=true, DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED=false', function () {
const t = setup({ env: { DD_TRACING_ENABLED: true, DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED: false } })
describe('input messages', function () {
it(
'should capture and send expected payload when a log line probe is triggered',
testBasicInputWithDD.bind(null, t)
)
})
})
describe('DD_TRACING_ENABLED=false', function () {
const t = setup({ env: { DD_TRACING_ENABLED: false } })
describe('input messages', function () {
it(
'should capture and send expected payload when a log line probe is triggered',
testBasicInputWithoutDD.bind(null, t)
)
})
})
})
function testBasicInputWithDD (t, done) {
let traceId, spanId, dd
t.triggerBreakpoint()
t.agent.on('message', ({ payload }) => {
const span = payload.find((arr) => arr[0].name === 'fastify.request')?.[0]
if (!span) return
traceId = span.trace_id.toString()
spanId = span.span_id.toString()
assertDD()
})
t.agent.on('debugger-input', ({ payload }) => {
assertBasicInputPayload(t, payload)
payload = payload[0]
assert.isObject(payload.dd)
assert.hasAllKeys(payload.dd, ['trace_id', 'span_id'])
assert.typeOf(payload.dd.trace_id, 'string')
assert.typeOf(payload.dd.span_id, 'string')
assert.isAbove(payload.dd.trace_id.length, 0)
assert.isAbove(payload.dd.span_id.length, 0)
dd = payload.dd
assertDD()
})
t.agent.addRemoteConfig(t.rcConfig)
function assertDD () {
if (!traceId || !spanId || !dd) return
assert.strictEqual(dd.trace_id, traceId)
assert.strictEqual(dd.span_id, spanId)
done()
}
}
function testBasicInputWithoutDD (t, done) {
t.triggerBreakpoint()
t.agent.on('debugger-input', ({ payload }) => {
assertBasicInputPayload(t, payload)
assert.doesNotHaveAnyKeys(payload[0], ['dd'])
done()
})
t.agent.addRemoteConfig(t.rcConfig)
}
function assertBasicInputPayload (t, payload) {
assert.isArray(payload)
assert.lengthOf(payload, 1)
payload = payload[0]
const expected = {
ddsource: 'dd_debugger',
hostname: os.hostname(),
service: 'node',
message: 'Hello World!',
logger: {
name: t.breakpoint.deployedFile,
method: 'fooHandler',
version,
thread_name: 'MainThread'
},
'debugger.snapshot': {
probe: {
id: t.rcConfig.config.id,
version: 0,
location: { file: t.breakpoint.deployedFile, lines: [String(t.breakpoint.line)] }
},
language: 'javascript'
}
}
assertObjectContains(payload, expected)
assert.match(payload.logger.thread_id, /^pid:\d+$/)
assertUUID(payload['debugger.snapshot'].id)
assert.isNumber(payload['debugger.snapshot'].timestamp)
assert.isTrue(payload['debugger.snapshot'].timestamp > Date.now() - 1000 * 60)
assert.isTrue(payload['debugger.snapshot'].timestamp <= Date.now())
assert.isArray(payload['debugger.snapshot'].stack)
assert.isAbove(payload['debugger.snapshot'].stack.length, 0)
for (const frame of payload['debugger.snapshot'].stack) {
assert.isObject(frame)
assert.hasAllKeys(frame, ['fileName', 'function', 'lineNumber', 'columnNumber'])
assert.isString(frame.fileName)
assert.isString(frame.function)
assert.isAbove(frame.lineNumber, 0)
assert.isAbove(frame.columnNumber, 0)
}
const topFrame = payload['debugger.snapshot'].stack[0]
// path seems to be prefeixed with `/private` on Mac
assert.match(topFrame.fileName, new RegExp(`${t.appFile}$`))
assert.strictEqual(topFrame.function, 'fooHandler')
assert.strictEqual(topFrame.lineNumber, t.breakpoint.line)
assert.strictEqual(topFrame.columnNumber, 3)
}