Skip to content

Commit

Permalink
chore: add patch test
Browse files Browse the repository at this point in the history
  • Loading branch information
vmarchaud committed Apr 18, 2022
1 parent 68aa810 commit 0801865
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
"tdd": "npm run tdd:node",
"tdd:node": "npm run test -- --watch-extensions ts --watch",
"tdd:browser": "karma start",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts' --exclude 'test/browser/**/*.ts'",
"test:cjs": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts' --exclude 'test/browser/**/*.ts'",
"test:esm": "nyc node --loader=import-in-the-middle/hook.mjs node_modules/.bin/_mocha test/node/*.test.mjs",
"test": "npm run test:cjs && npm run test:esm",
"test:browser": "nyc karma start --single-run",
"version": "node ../../../scripts/version-update.js",
"watch": "tsc --build --watch tsconfig.all.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,14 @@ export abstract class InstrumentationBase<T = any>
}
}

private _extractPackageVersion(baseDir: string): string | undefined {
private _extractPackage(baseDir: string): { name?: string, version?: string, main?: string } {
try {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const version = require(path.join(baseDir, 'package.json')).version;
return typeof version === 'string' ? version : undefined;
return require(path.join(baseDir, 'package.json'));
} catch (error) {
diag.warn('Failed extracting version', baseDir);
}

return undefined;
return {};
}

private _onRequireOrImport<T>(
Expand All @@ -92,12 +90,13 @@ export abstract class InstrumentationBase<T = any>
return exports;
}

const version = this._extractPackageVersion(baseDir);
module.moduleVersion = version;
if (module.name === name) {
const pkg = this._extractPackage(baseDir);
module.moduleVersion = pkg.version;
// if the targeted module is an esm, the name will be the name of its entrypoint
if (module.name === name || (pkg.main && path.normalize(`${pkg.name}/${pkg.main}`) === name)) {
// main module
if (
isSupported(module.supportedVersions, version, module.includePrerelease)
isSupported(module.supportedVersions, pkg.version, module.includePrerelease)
) {
if (typeof module.patch === 'function') {
module.moduleExports = exports;
Expand All @@ -110,7 +109,7 @@ export abstract class InstrumentationBase<T = any>
// internal file
const files = module.files ?? [];
const file = files.find(f => f.name === name);
if (file && isSupported(file.supportedVersions, version, module.includePrerelease)) {
if (file && isSupported(file.supportedVersions, pkg.version, module.includePrerelease)) {
file.moduleExports = exports;
if (this._enabled) {
return file.patch(exports, module.moduleVersion);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import * as assert from 'assert'
import * as sinon from 'sinon'
import { InstrumentationBase, InstrumentationNodeModuleDefinition } from '../../build/src/index.js';

describe('when loading esm module', () => {
it('should patch module file', async () => {
class TestInstrumentation extends InstrumentationBase {
constructor(onPatch, onUnpatch) {
super('my-esm-instrumentation', '0.1.0');
}

init() {
return [
new InstrumentationNodeModuleDefinition(
'my-esm-module',
['*'],
(exports, version) => {
exports.myConstant = 43;
exports.myFunction = () => 'another';
}
)
];
}
}

const instrumentation = new TestInstrumentation();
instrumentation.enable();
const exported = await import('my-esm-module');
assert.deepEqual(exported.myConstant, 43);
assert.deepEqual(exported.myFunction(), 'another');
});
});
Empty file.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0801865

Please sign in to comment.