Skip to content

Commit

Permalink
Add spancontext-utils tests (open-telemetry#108)
Browse files Browse the repository at this point in the history
* Add spancontext-utils tests

* Remove constant values check test
  • Loading branch information
mayurkale22 authored Jul 22, 2019
1 parent 435e4a0 commit ef64b73
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions packages/opentelemetry-core/test/trace/spancontext-utils.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/**
* Copyright 2019, 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 context from '../../src/trace/spancontext-utils';

describe('spancontext-utils', () => {
it('should return true for valid spancontext', () => {
const spanContext = {
traceId: 'd4cda95b652f4a1592b449d5929fda1b',
spanId: '6e0c63257de34c92',
};
assert.ok(context.isValid(spanContext));
});

it('should return false when traceId is invalid', () => {
const spanContext = {
traceId: context.INVALID_TRACEID,
spanId: '6e0c63257de34c92',
};
assert.ok(!context.isValid(spanContext));
});

it('should return false when spanId is invalid', () => {
const spanContext = {
traceId: 'd4cda95b652f4a1592b449d5929fda1b',
spanId: context.INVALID_SPANID,
};
assert.ok(!context.isValid(spanContext));
});

it('should return false when traceId & spanId is invalid', () => {
const spanContext = {
traceId: context.INVALID_TRACEID,
spanId: context.INVALID_SPANID,
};
assert.ok(!context.isValid(spanContext));
});
});

0 comments on commit ef64b73

Please sign in to comment.