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

feat(test-utils): runTestFixture utility for running out-of-process tests #1735

Merged
merged 18 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from 7 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
4 changes: 2 additions & 2 deletions packages/opentelemetry-test-utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ This package:

By using this package, testing instrumentation code can be shorter, and good practices for writing tests are more easily applied.

### Supporter Version
### Supported Version

Since [root hook plugin](https://mochajs.org/#root-hook-plugins) are used, this package is compatible to mocha v8.0.0 and above.
Since [root hook plugin](https://mochajs.org/#root-hook-plugins) are used, this package is compatible to mocha v7.2.0 and above.

### Usage

Expand Down
3 changes: 2 additions & 1 deletion packages/opentelemetry-test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@
"@opentelemetry/core": "^1.0.0",
"@opentelemetry/exporter-jaeger": "^1.3.1",
"@opentelemetry/instrumentation": "^0.44.0",
"@opentelemetry/sdk-trace-node": "^1.8.0",
"@opentelemetry/resources": "^1.8.0",
"@opentelemetry/sdk-node": "^0.44.0",
"@opentelemetry/sdk-trace-base": "^1.8.0",
"@opentelemetry/sdk-trace-node": "^1.8.0",
"@opentelemetry/semantic-conventions": "^1.0.0"
}
}
1 change: 1 addition & 0 deletions packages/opentelemetry-test-utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
*/

export * from './resource-assertions';
export * from './test-fixtures';
export * from './test-utils';
export * from './instrumentations';
257 changes: 257 additions & 0 deletions packages/opentelemetry-test-utils/src/test-fixtures.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,257 @@
/*
* 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.
*/

// Utilities for running test files out-of-process. See `runTestFixture()` below.

import { execFile } from 'child_process';
import { EventEmitter } from 'stream';
import { IncomingMessage, ServerResponse, createServer } from 'http';
import type { AddressInfo } from 'net';
import { URL } from 'url';
import { createGunzip } from 'zlib';

import {
IInstrumentationScope,
IResource,
ISpan,
} from '@opentelemetry/otlp-transformer';
import { NodeSDK, tracing } from '@opentelemetry/sdk-node';
import type { InstrumentationOption } from '@opentelemetry/instrumentation';

/**
* A utility for scripts that will be run with `runTestFixture()` to create an
* appropriately configured NodeSDK.
*
* Typically, when run via `runTestFixture`, OTEL_EXPORTER_OTLP_ENDPOINT will be
* set to export to a test collector. When that envvar is not set, this falls
* back to exporting to the console for dev convenience.
*/
export function createTestNodeSdk(opts: {
serviceName?: string;
instrumentations: InstrumentationOption[];
}) {
const spanProcessor = process.env.OTEL_EXPORTER_OTLP_ENDPOINT
? undefined
: new tracing.SimpleSpanProcessor(new tracing.ConsoleSpanExporter());
const sdk = new NodeSDK({
serviceName: opts.serviceName || 'test-service',
spanProcessor,
instrumentations: opts.instrumentations,
});
return sdk;
}

// TestSpan is an OTLP span plus references to `resource` and
// `instrumentationScope` that are shared between multiple spans in the
// protocol.
export type TestSpan = ISpan & {
resource: IResource;
instrumentationScope: IInstrumentationScope;
};

/**
* A minimal HTTP server that can act as an OTLP HTTP/JSON protocol collector.
* It stores the received data for later test assertions.
*
* Limitations: This only supports traces so far, no metrics or logs.
* There is little error checking here; we are assuming valid OTLP.
Comment on lines +70 to +71
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd say this is likely fine. We can expand this later if necessary.
Little error checking also sounds okay to me, since it's for testing.

*/
export class TestCollector {
endpointUrl?: string;
spans: Array<TestSpan> = [];
private _http;

constructor() {
this.clear();
this._http = createServer(this._onRequest.bind(this));
}

clear(): void {
this.spans = [];
}

// Start listening and set address to `endpointUrl`.
async start(): Promise<void> {
return new Promise(resolve => {
this._http.listen(() => {
this.endpointUrl = `http://localhost:${
(this._http.address() as AddressInfo).port
}`;
resolve();
});
});
}

close() {
this.endpointUrl = undefined;
return this._http.close();
}

// Return the spans sorted by start time for testing convenience.
get sortedSpans(): Array<TestSpan> {
this.spans[0].resource;
return this.spans.slice().sort((a, b) => {
if (a.startTimeUnixNano.high < b.startTimeUnixNano.high) {
return -1;
} else if (a.startTimeUnixNano.high > b.startTimeUnixNano.high) {
return 1;
} else if (a.startTimeUnixNano.low < b.startTimeUnixNano.low) {
return -1;
} else if (a.startTimeUnixNano.low > b.startTimeUnixNano.low) {
return 1;
} else {
return 0;
}
});
}

_onRequest(req: IncomingMessage, res: ServerResponse) {
const parsedUrl = new URL(req.url as string, this.endpointUrl);
let instream: EventEmitter;
if (req.headers['content-encoding'] === 'gzip') {
instream = req.pipe(createGunzip());
} else {
req.setEncoding('utf8');
instream = req;
}

let body = '';
instream.on('data', (chunk: Buffer) => {
body += chunk;
});

instream.on('end', () => {
let resStatusCode;
const resHeaders = { 'content-type': 'application/json' };
let resBody = '';
if (req.method === 'POST' && parsedUrl.pathname === '/v1/traces') {
if (req.headers['content-type'] !== 'application/json') {
resStatusCode = 415;
resBody = JSON.stringify({ message: 'invalid content-type' });
} else {
this._ingestTraces(body);
resStatusCode = 200;
// TODO: I'm not sure what the ExportTraceServiceResponse form should be.
// https://github.com/open-telemetry/opentelemetry-proto/blob/v1.0.0/opentelemetry/proto/collector/trace/v1/trace_service.proto
resBody = '{}';
trentm marked this conversation as resolved.
Show resolved Hide resolved
}
} else {
resStatusCode = 404;
}

res.writeHead(resStatusCode, resHeaders);
res.end(resBody);
});
}

_ingestTraces(body: string) {
const data = JSON.parse(body);
// Read an OTLP `resourceSpans` body into `this.spans`.
for (const resourceSpan of data.resourceSpans) {
for (const scopeSpan of resourceSpan.scopeSpans) {
for (const span of scopeSpan.spans) {
span.resource = resourceSpan.resource;
span.instrumentationScope = scopeSpan.scope;
this.spans.push(span);
}
}
}
}
}

export type RunTestFixtureOptions = {
/** Arguments to `node` executable. */
argv: Array<string>;
cwd?: string;
env?: Record<string, string>;
/** Timeout for the executed process in milliseconds. Defaults to 10s. */
timeoutMs?: number;
/** Check the process result. */
checkResult?: (err: Error | null, stdout: string, stderr: string) => void;
/** Check the collected results, e.g. via `collector.sortedSpans`. */
checkCollector?: (collector: TestCollector) => void;
};

/**
* Run a script that uses otel tracing and check the results.
*
* This starts a test collector that is capable of receiving HTTP/JSON OTLP,
* and sets OTEL_EXPORTER_OTLP_ENDPOINT and OTEL_EXPORTER_OTLP_PROTOCOL
* appropriately so that scripts using `NodeSDK` will by default send traces
* to this collector. (See `createTestNodeSdk()` as a convenience for these
* scripts.)
*
* Then the script (given in `argv`) is executed and the optional `opts.check*`
* callbacks are called so the caller can assert expected process output and
* collected spans.
*
* For example:
* await runTestFixture({
* argv: ['fixtures/some-esm-script.mjs'],
* cwd: __dirname,
* env: {
* NODE_OPTIONS: '--experimental-loader=@opentelemetry/instrumentation/hook.mjs',
* NODE_NO_WARNINGS: '1',
* },
* checkResult: (err, stdout, stderr) => {
* assert.ifError(err);
* },
* checkCollector: (collector: TestCollector) => {
* const spans = collector.sortedSpans;
* assert.strictEqual(spans[0].name, 'manual');
* // ...
* },
* });
*/
export async function runTestFixture(
opts: RunTestFixtureOptions
): Promise<void> {
const collector = new TestCollector();
await collector.start();

return new Promise(resolve => {
execFile(
process.execPath,
opts.argv,
{
cwd: opts.cwd || process.cwd(),
timeout: opts.timeoutMs || 10000, // sanity guard on hanging
env: Object.assign(
{},
process.env,
{
OTEL_EXPORTER_OTLP_ENDPOINT: collector.endpointUrl,
OTEL_EXPORTER_OTLP_PROTOCOL: 'http/json',
},
opts.env
),
},
async function done(err, stdout, stderr) {
try {
if (opts.checkResult) {
await opts.checkResult(err, stdout, stderr);
}
if (opts.checkCollector) {
await opts.checkCollector(collector);
}
} finally {
collector.close();
resolve();
}
}
);
});
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*
* 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.
*/

// Use ioredis from an ES module:
// node --experimental-loader=@opentelemetry/instrumentation/hook.mjs use-ioredis.mjs [REDIS_URL]

import { trace } from '@opentelemetry/api';
import { createTestNodeSdk } from '@opentelemetry/contrib-test-utils';

import { IORedisInstrumentation } from '../../build/src/index.js';

const sdk = createTestNodeSdk({
serviceName: 'use-ioredis',
instrumentations: [
new IORedisInstrumentation()
]
})
sdk.start();

import assert from 'assert';
import Redis from 'ioredis';

const REDIS_URL = process.argv[2] || '';
const redis = new Redis(REDIS_URL);

// Randomize the key to avoid collisions with parallel testing.
const randomId = ((Math.random() * 2 ** 32) >>> 0).toString(16);
const testKeyName = `test-${randomId}`;

const tracer = trace.getTracer();
await tracer.startActiveSpan('manual', async (span) => {
redis.set(testKeyName, 'bar');
let val = await redis.get(testKeyName);
assert(val === 'bar');
span.end();
});

await redis.quit();
await sdk.shutdown();
Loading
Loading