63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
/*
|
|
* 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 {
|
|
SpanStatusCode,
|
|
INVALID_SPANID,
|
|
INVALID_TRACEID,
|
|
TraceFlags,
|
|
} from '../../../src';
|
|
import { NonRecordingSpan } from '../../../src/trace/NonRecordingSpan';
|
|
|
|
describe('NonRecordingSpan', function () {
|
|
it('do not crash', function () {
|
|
const span = new NonRecordingSpan();
|
|
span.setAttribute('my_string_attribute', 'foo');
|
|
span.setAttribute('my_number_attribute', 123);
|
|
span.setAttribute('my_boolean_attribute', false);
|
|
span.setAttribute('my_obj_attribute', { a: true });
|
|
span.setAttribute('my_sym_attribute', Symbol('a'));
|
|
span.setAttributes({
|
|
my_string_attribute: 'foo',
|
|
my_number_attribute: 123,
|
|
});
|
|
|
|
const linkContext = {
|
|
traceId: 'e4cda95b652f4a1592b449d5929fda1b',
|
|
spanId: '7e0c63257de34c92',
|
|
traceFlags: TraceFlags.SAMPLED,
|
|
};
|
|
span.addLink({ context: linkContext });
|
|
span.addLinks([{ context: linkContext }]);
|
|
|
|
span.addEvent('sent');
|
|
span.addEvent('sent', { id: '42', key: 'value' });
|
|
|
|
span.setStatus({ code: SpanStatusCode.ERROR });
|
|
|
|
span.updateName('my-span');
|
|
|
|
assert.ok(!span.isRecording());
|
|
assert.deepStrictEqual(span.spanContext(), {
|
|
traceId: INVALID_TRACEID,
|
|
spanId: INVALID_SPANID,
|
|
traceFlags: TraceFlags.NONE,
|
|
});
|
|
span.end();
|
|
});
|
|
});
|