-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
46 lines (38 loc) · 879 Bytes
/
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
'use strict'
const test = require('tape')
const proxyquire = require('proxyquire')
const spies = []
const plugin = proxyquire('.', {
'@telemetry-js/processor-ec2-instance-tags': function (...args) {
return spies.shift()(...args)
}
})
test('basic', function (t) {
t.plan(3)
spies.push((options) => {
let m
// Return a mock of @telemetry-js/processor-ec2-instance-tags;
// most of the functionality is tested there.
return {
process: (metric) => {
t.ok(options.filter('name'))
t.notOk(options.filter('other'))
metric.tags.name = 'fake_name'
m = metric
},
on: (event, fn) => {
fn(m)
}
}
})
const p = plugin()
const metric = { tags: {} }
p.process(metric)
p.on('metric', (metric) => {
t.same(metric, {
tags: {
name: 'fake_name'
}
})
})
})