summaryrefslogtreecommitdiff
path: root/vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/Reporter/RemoteReporterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/Reporter/RemoteReporterTest.php')
-rw-r--r--vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/Reporter/RemoteReporterTest.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/Reporter/RemoteReporterTest.php b/vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/Reporter/RemoteReporterTest.php
new file mode 100644
index 000000000..0b85f06d0
--- /dev/null
+++ b/vendor/jonahgeorge/jaeger-client-php/tests/Jaeger/Reporter/RemoteReporterTest.php
@@ -0,0 +1,46 @@
+<?php
+
+namespace Jaeger\Tests\Reporter;
+
+use Jaeger\Reporter\RemoteReporter;
+use Jaeger\Sender\UdpSender;
+use Jaeger\Span;
+use PHPUnit\Framework\TestCase;
+
+class RemoteReporterTest extends TestCase
+{
+ /** @var RemoteReporter */
+ private $reporter;
+
+ /** @var UdpSender|\PHPUnit\Framework\MockObject\MockObject */
+ private $transport;
+
+ /**
+ * {@inheritdoc}
+ */
+ public function setUp(): void
+ {
+ $this->transport = $this->createMock(UdpSender::class);
+ $this->reporter = new RemoteReporter($this->transport);
+ }
+
+ /** @test */
+ public function shouldReportSpan()
+ {
+ /** @var Span|\PHPUnit\Framework\MockObject\MockObject $span */
+ $span = $this->createMock(Span::class);
+
+ $this->transport->expects($this->once())->method('append')->with($span);
+
+ $this->reporter->reportSpan($span);
+ }
+
+ /** @test */
+ public function shouldCloseReporter()
+ {
+ $this->transport->expects($this->once())->method('flush');
+ $this->transport->expects($this->once())->method('close');
+
+ $this->reporter->close();
+ }
+}