Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Migrated test/unit/shim to node:test #2599

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 44 additions & 2 deletions test/lib/custom-assertions.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,13 @@ function isNonWritable({ obj, key, value }) {
}, new RegExp("(read only property '" + key + "'|Cannot set property " + key + ')'))

if (value) {
assert.equal(obj[key], value)
assert.strictEqual(obj[key], value)
} else {
assert.ok(!obj[key], 'testNonWritable test value', 'should not set value when non-writable')
assert.notStrictEqual(
obj[key],
'testNonWritable test value',
'should not set value when non-writable'
)
}
}

Expand Down Expand Up @@ -323,12 +327,50 @@ function assertMetricValues(transaction, expected, exact) {
}
}

/**
* Asserts the wrapped callback is wrapped and the unwrapped version is the original.
* It also verifies it does not throw an error
*
* @param {object} shim shim lib
* @param {Function} original callback
*/
function checkWrappedCb(shim, cb) {
// The wrapped callback is always the last argument
const wrappedCB = arguments[arguments.length - 1]
assert.notStrictEqual(wrappedCB, cb)
assert.ok(shim.isWrapped(wrappedCB))
assert.equal(shim.unwrap(wrappedCB), cb)

assert.doesNotThrow(function () {
wrappedCB()
})
}

/**
* Helper that verifies the original callback
* and wrapped callback are the same
*
* @param {object} shim shim lib
* @param {Function} original callback
*/
function checkNotWrappedCb(shim, cb) {
// The callback is always the last argument
const wrappedCB = arguments[arguments.length - 1]
assert.equal(wrappedCB, cb)
assert.equal(shim.isWrapped(wrappedCB), false)
assert.doesNotThrow(function () {
wrappedCB()
})
}

module.exports = {
assertCLMAttrs,
assertExactClmAttrs,
assertMetrics,
assertMetricValues,
assertSegments,
checkWrappedCb,
checkNotWrappedCb,
compareSegments,
isNonWritable,
match
Expand Down
99 changes: 50 additions & 49 deletions test/unit/shim/conglomerate-shim.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*/

'use strict'

const { test } = require('tap')
const assert = require('node:assert')
const test = require('node:test')
const ConglomerateShim = require('../../../lib/shim/conglomerate-shim')
const DatastoreShim = require('../../../lib/shim/datastore-shim')
const helper = require('../../lib/agent_helper')
Expand All @@ -15,72 +15,73 @@ const Shim = require('../../../lib/shim/shim')
const TransactionShim = require('../../../lib/shim/transaction-shim')
const WebFrameworkShim = require('../../../lib/shim/webframework-shim')

test('ConglomerateShim', (t) => {
t.autoend()
let agent = null
let shim = null

t.beforeEach(() => {
agent = helper.loadMockedAgent()
shim = new ConglomerateShim(agent, 'test-module')
test('ConglomerateShim', async (t) => {
t.beforeEach((ctx) => {
ctx.nr = {}
const agent = helper.loadMockedAgent()
ctx.nr.shim = new ConglomerateShim(agent, 'test-module')
ctx.nr.agent = agent
})

t.afterEach(() => {
helper.unloadAgent(agent)
agent = null
shim = null
t.afterEach((ctx) => {
helper.unloadAgent(ctx.nr.agent)
})

t.test('should require an agent parameter', (t) => {
t.throws(() => new ConglomerateShim(), /^Shim must be initialized with .*? agent/)
t.end()
await t.test('should require an agent parameter', () => {
assert.throws(
() => new ConglomerateShim(),
'Error: Shim must be initialized with an agent and module name.'
)
})
t.test('should require a module name parameter', (t) => {
t.throws(() => new ConglomerateShim(agent), /^Shim must be initialized with .*? module name/)
t.end()
await t.test('should require a module name parameter', (t) => {
const { agent } = t.nr
assert.throws(
() => new ConglomerateShim(agent),
'Error: Shim must be initialized with an agent and module name.'
)
})

t.test('should exist for each shim type', (t) => {
t.ok(shim.GENERIC, 'generic')
t.ok(shim.DATASTORE, 'datastore')
t.ok(shim.MESSAGE, 'message')
t.ok(shim.PROMISE, 'promise')
t.ok(shim.TRANSACTION, 'transaction')
t.ok(shim.WEB_FRAMEWORK, 'web-framework')
t.end()
await t.test('should exist for each shim type', (t) => {
const { shim } = t.nr
assert.equal(shim.GENERIC, 'generic')
assert.equal(shim.DATASTORE, 'datastore')
assert.equal(shim.MESSAGE, 'message')
assert.equal(shim.PROMISE, 'promise')
assert.equal(shim.TRANSACTION, 'transaction')
assert.equal(shim.WEB_FRAMEWORK, 'web-framework')
})

t.test('should construct a new shim', (t) => {
await t.test('should construct a new shim', (t) => {
const { shim } = t.nr
const specialShim = shim.makeSpecializedShim(shim.GENERIC, 'foobar')
t.ok(specialShim instanceof Shim)
t.not(specialShim, shim)
t.end()
assert.ok(specialShim instanceof Shim)
assert.notEqual(specialShim, shim)
})

t.test('should be an instance of the correct class', (t) => {
t.ok(shim.makeSpecializedShim(shim.GENERIC, 'foobar') instanceof Shim)
t.ok(shim.makeSpecializedShim(shim.DATASTORE, 'foobar') instanceof DatastoreShim)
t.ok(shim.makeSpecializedShim(shim.MESSAGE, 'foobar') instanceof MessageShim)
t.ok(shim.makeSpecializedShim(shim.PROMISE, 'foobar') instanceof PromiseShim)
t.ok(shim.makeSpecializedShim(shim.TRANSACTION, 'foobar') instanceof TransactionShim)
t.ok(shim.makeSpecializedShim(shim.WEB_FRAMEWORK, 'foobar') instanceof WebFrameworkShim)
t.end()
await t.test('should be an instance of the correct class', (t) => {
const { shim } = t.nr
assert.ok(shim.makeSpecializedShim(shim.GENERIC, 'foobar') instanceof Shim)
assert.ok(shim.makeSpecializedShim(shim.DATASTORE, 'foobar') instanceof DatastoreShim)
assert.ok(shim.makeSpecializedShim(shim.MESSAGE, 'foobar') instanceof MessageShim)
assert.ok(shim.makeSpecializedShim(shim.PROMISE, 'foobar') instanceof PromiseShim)
assert.ok(shim.makeSpecializedShim(shim.TRANSACTION, 'foobar') instanceof TransactionShim)
assert.ok(shim.makeSpecializedShim(shim.WEB_FRAMEWORK, 'foobar') instanceof WebFrameworkShim)
})

t.test('should assign properties from parent', (t) => {
await t.test('should assign properties from parent', (t) => {
const { agent } = t.nr
const mod = 'test-mod'
const name = mod
const version = '1.0.0'
const shim = new ConglomerateShim(agent, mod, mod, name, version)
t.equal(shim.moduleName, mod)
t.equal(agent, shim._agent)
t.equal(shim.pkgVersion, version)
assert.equal(shim.moduleName, mod)
assert.equal(agent, shim._agent)
assert.equal(shim.pkgVersion, version)
function childFn() {}
const childShim = shim.makeSpecializedShim(shim.DATASTORE, childFn)
t.same(shim._agent, childShim._agent)
t.equal(shim.moduleName, childShim.moduleName)
t.equal(shim.pkgVersion, childShim.pkgVersion)
t.equal(shim.id, childShim.id)
t.end()
assert.deepEqual(shim._agent, childShim._agent)
assert.equal(shim.moduleName, childShim.moduleName)
assert.equal(shim.pkgVersion, childShim.pkgVersion)
assert.equal(shim.id, childShim.id)
})
})
Loading
Loading