This is an automated email from the ASF dual-hosted git repository.
xiatian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/eventmesh.git
The following commit(s) were added to refs/heads/master by this push:
new a3ac7f19e [ISSUE #4995] unit tests for TraceUtils.java (#5046)
a3ac7f19e is described below
commit a3ac7f19ebaf1f43d29983ee55a63af34c758092
Author: Abhijit <[email protected]>
AuthorDate: Mon Jul 29 08:46:07 2024 +0530
[ISSUE #4995] unit tests for TraceUtils.java (#5046)
---
.../eventmesh/runtime/util/TraceUtilsTest.java | 90 ++++++++++++++++++++++
1 file changed, 90 insertions(+)
diff --git
a/eventmesh-runtime/src/test/java/org/apache/eventmesh/runtime/util/TraceUtilsTest.java
b/eventmesh-runtime/src/test/java/org/apache/eventmesh/runtime/util/TraceUtilsTest.java
new file mode 100644
index 000000000..34989b644
--- /dev/null
+++
b/eventmesh-runtime/src/test/java/org/apache/eventmesh/runtime/util/TraceUtilsTest.java
@@ -0,0 +1,90 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
+ *
+ * http://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.
+ */
+
+package org.apache.eventmesh.runtime.util;
+
+import org.apache.eventmesh.runtime.boot.EventMeshServer;
+import org.apache.eventmesh.runtime.mock.MockCloudEvent;
+import org.apache.eventmesh.runtime.trace.Trace;
+
+import java.util.Map;
+
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+import org.mockito.MockedStatic;
+import org.mockito.Mockito;
+
+import io.cloudevents.SpecVersion;
+import io.opentelemetry.api.trace.Span;
+
+public class TraceUtilsTest {
+ @Test
+ public void testShouldPrepareClientSpan() throws Exception {
+ Map<String, Object> cloudEventExtensionMap =
EventMeshUtil.getCloudEventExtensionMap(SpecVersion.V1.toString(), new
MockCloudEvent());
+ try (MockedStatic<EventMeshServer> dummyStatic =
Mockito.mockStatic(EventMeshServer.class)) {
+ Trace trace = Trace.getInstance("zipkin", true);
+ trace.init();
+ dummyStatic.when(EventMeshServer::getTrace).thenReturn(trace);
+ Span testClientSpan = TraceUtils.prepareClientSpan(
+ cloudEventExtensionMap,
+ "test client span",
+ false
+ );
+ Assertions.assertNotNull(testClientSpan);
+ }
+ }
+
+ @Test
+ public void testShouldPrepareServerSpan() throws Exception {
+ Map<String, Object> cloudEventExtensionMap =
EventMeshUtil.getCloudEventExtensionMap(SpecVersion.V1.toString(), new
MockCloudEvent());
+ try (MockedStatic<EventMeshServer> dummyStatic =
Mockito.mockStatic(EventMeshServer.class)) {
+ Trace trace = Trace.getInstance("zipkin", true);
+ trace.init();
+ dummyStatic.when(EventMeshServer::getTrace).thenReturn(trace);
+ TraceUtils.prepareClientSpan(
+ cloudEventExtensionMap,
+ "test client span",
+ false
+ );
+ Span testServerSpan = TraceUtils.prepareServerSpan(
+ cloudEventExtensionMap,
+ "test server span",
+ false
+ );
+ Assertions.assertNotNull(testServerSpan);
+ }
+ }
+
+ @Test
+ public void testShouldFinishSpan() throws Exception {
+ MockCloudEvent cloudEvent = new MockCloudEvent();
+ Map<String, Object> cloudEventExtensionMap =
EventMeshUtil.getCloudEventExtensionMap(SpecVersion.V1.toString(), cloudEvent);
+ try (MockedStatic<EventMeshServer> dummyStatic =
Mockito.mockStatic(EventMeshServer.class)) {
+ Trace trace = Trace.getInstance("zipkin", true);
+ trace.init();
+ dummyStatic.when(EventMeshServer::getTrace).thenReturn(trace);
+ Span testClientSpan = TraceUtils.prepareClientSpan(
+ cloudEventExtensionMap,
+ "test client span",
+ false
+ );
+
+ TraceUtils.finishSpan(testClientSpan, cloudEvent);
+ Assertions.assertFalse(testClientSpan.isRecording());
+ }
+ }
+}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]