summaryrefslogtreecommitdiff
path: root/vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/ScopeTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/ScopeTest.php')
-rw-r--r--vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/ScopeTest.php58
1 files changed, 58 insertions, 0 deletions
diff --git a/vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/ScopeTest.php b/vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/ScopeTest.php
new file mode 100644
index 000000000..e36a8de3d
--- /dev/null
+++ b/vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/ScopeTest.php
@@ -0,0 +1,58 @@
+<?php
+
+namespace Jaeger\Tests;
+
+use Jaeger\Scope;
+use Jaeger\ScopeManager;
+use Jaeger\Span;
+use PHPUnit\Framework\TestCase;
+
+class ScopeTest extends TestCase
+{
+ /**
+ * @var ScopeManager|\PHPUnit\Framework\MockObject\MockObject
+ */
+ private $scopeManager;
+
+ /**
+ * @var Span|\PHPUnit\Framework\MockObject\MockObject
+ */
+ private $span;
+
+ function setUp(): void
+ {
+ $this->scopeManager = $this->createMock(ScopeManager::class);
+ $this->span = $this->createMock(Span::class);
+ }
+
+ function testCloseDoNotFinishSpanOnClose()
+ {
+ $scope = new Scope($this->scopeManager, $this->span, false);
+
+ $this->scopeManager->method('getActive')->willReturn($scope);
+ $this->scopeManager->expects($this->once())->method('getActive');
+ $this->span->expects($this->never())->method('finish');
+ $this->scopeManager->expects($this->once())->method('setActive');
+
+ $scope->close();
+ }
+
+ function testCloseFinishSpanOnClose()
+ {
+ $scope = new Scope($this->scopeManager, $this->span, true);
+
+ $this->scopeManager->method('getActive')->willReturn($scope);
+ $this->scopeManager->expects($this->once())->method('getActive');
+ $this->span->expects($this->once())->method('finish');
+ $this->scopeManager->expects($this->once())->method('setActive');
+
+ $scope->close();
+ }
+
+ function testGetSpan()
+ {
+ $scope = new Scope($this->scopeManager, $this->span, false);
+
+ $this->assertEquals($this->span, $scope->getSpan());
+ }
+}