1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
<?php
namespace Wikimedia\Tests\Telemetry;
use MediaWikiUnitTestCase;
use Wikimedia\Assert\InvariantException;
use Wikimedia\Telemetry\SpanContext;
use Wikimedia\Telemetry\SpanInterface;
use Wikimedia\Telemetry\TracerState;
/**
* @covers \Wikimedia\Telemetry\TracerState
*/
class TracerStateTest extends MediaWikiUnitTestCase {
private TracerState $tracerState;
protected function setUp(): void {
parent::setUp();
$this->tracerState = new TracerState();
}
public function testShouldMaintainStackOfActiveSpans(): void {
$firstSpanContext = new SpanContext(
'',
str_repeat( 'a', 16 ),
null,
'',
true
);
$secondSpanContext = new SpanContext(
'',
str_repeat( 'b', 16 ),
null,
'',
true
);
$this->assertNull( $this->tracerState->getActiveSpanContext() );
$this->tracerState->activateSpan( $firstSpanContext );
$this->assertSame( $firstSpanContext, $this->tracerState->getActiveSpanContext() );
$this->tracerState->activateSpan( $secondSpanContext );
$this->assertSame( $secondSpanContext, $this->tracerState->getActiveSpanContext() );
$this->tracerState->deactivateSpan( $secondSpanContext );
$this->assertSame( $firstSpanContext, $this->tracerState->getActiveSpanContext() );
$this->tracerState->deactivateSpan( $firstSpanContext );
$this->assertNull( $this->tracerState->getActiveSpanContext() );
}
public function testShouldRejectDeactivatingSpanWhenNoSpanIsActive(): void {
$this->expectException( InvariantException::class );
$this->expectExceptionMessage( 'Attempted to deactivate a span which is not the active span.' );
try {
$span = $this->createMock( SpanInterface::class );
$this->tracerState->deactivateSpan( new SpanContext( '', '', null, '', false ) );
} finally {
$this->assertNull( $this->tracerState->getActiveSpanContext() );
}
}
public function testShouldRejectDeactivatingSpanWhenItIsNotActive(): void {
$this->expectException( InvariantException::class );
$this->expectExceptionMessage( 'Attempted to deactivate a span which is not the active span.' );
$activeSpanContext = new SpanContext(
'',
str_repeat( 'a', 16 ),
null,
'',
true
);
$this->tracerState->activateSpan( $activeSpanContext );
try {
$otherSpanContext = new SpanContext(
'',
str_repeat( 'b', 16 ),
null,
'',
true
);
$this->tracerState->deactivateSpan( $otherSpanContext );
} finally {
$this->assertSame( $activeSpanContext, $this->tracerState->getActiveSpanContext() );
}
}
public function testShouldAddAndReturnSpans(): void {
$firstSpanContext = new SpanContext(
'',
str_repeat( 'a', 16 ),
null,
'',
true
);
$secondSpanContext = new SpanContext(
'',
str_repeat( 'b', 16 ),
null,
'',
true
);
$this->tracerState->addSpanContext( $firstSpanContext );
$this->tracerState->addSpanContext( $secondSpanContext );
$this->assertSame( [ $firstSpanContext, $secondSpanContext ], $this->tracerState->getSpanContexts() );
$this->tracerState->clearSpanContexts();
$this->assertSame( [], $this->tracerState->getSpanContexts() );
}
}
|