84 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
/**
 | 
						|
 * 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 types from '@opentelemetry/types';
 | 
						|
import {
 | 
						|
  getTracer,
 | 
						|
  initGlobalTracer,
 | 
						|
} from '../../src/trace/globaltracer-utils';
 | 
						|
import { NoopTracer, NoopSpan } from '../../src';
 | 
						|
import { TraceOptions } from '@opentelemetry/types';
 | 
						|
 | 
						|
describe('globaltracer-utils', () => {
 | 
						|
  const functions = [
 | 
						|
    'getCurrentSpan',
 | 
						|
    'startSpan',
 | 
						|
    'withSpan',
 | 
						|
    'recordSpanData',
 | 
						|
    'getBinaryFormat',
 | 
						|
    'getHttpTextFormat',
 | 
						|
  ];
 | 
						|
 | 
						|
  it('should expose a tracer via getTracer', () => {
 | 
						|
    const tracer = getTracer();
 | 
						|
    assert.ok(tracer);
 | 
						|
    assert.strictEqual(typeof tracer, 'object');
 | 
						|
  });
 | 
						|
 | 
						|
  describe('GlobalTracer', () => {
 | 
						|
    const spanContext = {
 | 
						|
      traceId: 'd4cda95b652f4a1592b449d5929fda1b',
 | 
						|
      spanId: '6e0c63257de34c92',
 | 
						|
      traceOptions: TraceOptions.UNSAMPLED,
 | 
						|
    };
 | 
						|
    const dummySpan = new NoopSpan(spanContext);
 | 
						|
 | 
						|
    afterEach(() => {
 | 
						|
      initGlobalTracer(new NoopTracer());
 | 
						|
    });
 | 
						|
 | 
						|
    it('should not crash', () => {
 | 
						|
      functions.forEach(fn => {
 | 
						|
        const tracer = getTracer();
 | 
						|
        try {
 | 
						|
          ((tracer as unknown) as { [fn: string]: Function })[fn](); // Try to run the function
 | 
						|
          assert.ok(true, fn);
 | 
						|
        } catch (err) {
 | 
						|
          if (err.message !== 'Method not implemented.') {
 | 
						|
            assert.ok(true, fn);
 | 
						|
          }
 | 
						|
        }
 | 
						|
      });
 | 
						|
    });
 | 
						|
 | 
						|
    it('should use the global tracer', () => {
 | 
						|
      const tracer = initGlobalTracer(new TestTracer());
 | 
						|
      const span = tracer.startSpan('test');
 | 
						|
      assert.deepStrictEqual(span, dummySpan);
 | 
						|
    });
 | 
						|
 | 
						|
    class TestTracer extends NoopTracer {
 | 
						|
      startSpan(
 | 
						|
        name: string,
 | 
						|
        options?: types.SpanOptions | undefined
 | 
						|
      ): types.Span {
 | 
						|
        return dummySpan;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  });
 | 
						|
});
 |