aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala')
-rw-r--r--kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala94
1 files changed, 40 insertions, 54 deletions
diff --git a/kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala b/kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala
index 0875deff..9d7725b7 100644
--- a/kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala
+++ b/kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala
@@ -1,94 +1,80 @@
package kamon.trace
-import akka.actor.ActorSystem
-import akka.testkit.{ ImplicitSender, TestKitBase }
import com.typesafe.config.ConfigFactory
-import org.scalatest.{ Matchers, WordSpecLike }
+import kamon.testkit.BaseKamonSpec
-class TraceContextManipulationSpec extends TestKitBase with WordSpecLike with Matchers with ImplicitSender {
- implicit lazy val system: ActorSystem = ActorSystem("trace-metrics-spec", ConfigFactory.parseString(
- """
- |kamon.metrics {
- | tick-interval = 1 hour
- | filters = [
- | {
- | trace {
- | includes = [ "*" ]
- | excludes = [ "non-tracked-trace"]
- | }
- | }
- | ]
- | precision {
- | default-histogram-precision {
- | highest-trackable-value = 3600000000000
- | significant-value-digits = 2
- | }
- |
- | default-min-max-counter-precision {
- | refresh-interval = 1 second
- | highest-trackable-value = 999999999
- | significant-value-digits = 2
- | }
- | }
- |}
- """.stripMargin))
+class TraceContextManipulationSpec extends BaseKamonSpec("trace-metrics-spec") {
+ override lazy val config =
+ ConfigFactory.parseString(
+ """
+ |kamon.metric {
+ | tick-interval = 1 hour
+ |
+ | filters {
+ | trace {
+ | includes = [ "*" ]
+ | excludes = [ "non-tracked-trace"]
+ | }
+ | }
+ |}
+ """.stripMargin)
- "the TraceRecorder api" should {
+ "the TraceContext api" should {
"allow starting a trace within a specified block of code, and only within that block of code" in {
- val createdContext = TraceRecorder.withNewTraceContext("start-context") {
- TraceRecorder.currentContext should not be empty
- TraceRecorder.currentContext
+ val createdContext = TraceContext.withContext(newContext("start-context")) {
+ TraceContext.currentContext should not be empty
+ TraceContext.currentContext
}
- TraceRecorder.currentContext shouldBe empty
+ TraceContext.currentContext shouldBe empty
createdContext.name shouldBe ("start-context")
}
"allow starting a trace within a specified block of code, providing a trace-token and only within that block of code" in {
- val createdContext = TraceRecorder.withNewTraceContext("start-context-with-token", Some("token-1")) {
- TraceRecorder.currentContext should not be empty
- TraceRecorder.currentContext
+ val createdContext = TraceContext.withContext(newContext("start-context-with-token", "token-1")) {
+ TraceContext.currentContext should not be empty
+ TraceContext.currentContext
}
- TraceRecorder.currentContext shouldBe empty
+ TraceContext.currentContext shouldBe empty
createdContext.name shouldBe ("start-context-with-token")
createdContext.token should be("token-1")
}
"allow providing a TraceContext and make it available within a block of code" in {
- val createdContext = TraceRecorder.withNewTraceContext("manually-provided-trace-context") { TraceRecorder.currentContext }
+ val createdContext = newContext("manually-provided-trace-context")
- TraceRecorder.currentContext shouldBe empty
- TraceRecorder.withTraceContext(createdContext) {
- TraceRecorder.currentContext should be(createdContext)
+ TraceContext.currentContext shouldBe empty
+ TraceContext.withContext(createdContext) {
+ TraceContext.currentContext should be(createdContext)
}
- TraceRecorder.currentContext shouldBe empty
+ TraceContext.currentContext shouldBe empty
}
"allow renaming a trace" in {
- val createdContext = TraceRecorder.withNewTraceContext("trace-before-rename") {
- TraceRecorder.rename("renamed-trace")
- TraceRecorder.currentContext
+ val createdContext = TraceContext.withContext(newContext("trace-before-rename")) {
+ TraceContext.currentContext.rename("renamed-trace")
+ TraceContext.currentContext
}
- TraceRecorder.currentContext shouldBe empty
+ TraceContext.currentContext shouldBe empty
createdContext.name shouldBe ("renamed-trace")
}
"allow creating a segment within a trace" in {
- val createdContext = TraceRecorder.withNewTraceContext("trace-with-segments") {
- val segment = TraceRecorder.currentContext.startSegment("segment-1", "segment-1-category", "segment-library")
- TraceRecorder.currentContext
+ val createdContext = TraceContext.withContext(newContext("trace-with-segments")) {
+ val segment = TraceContext.currentContext.startSegment("segment-1", "segment-1-category", "segment-library")
+ TraceContext.currentContext
}
- TraceRecorder.currentContext shouldBe empty
+ TraceContext.currentContext shouldBe empty
createdContext.name shouldBe ("trace-with-segments")
}
"allow renaming a segment" in {
- TraceRecorder.withNewTraceContext("trace-with-renamed-segment") {
- val segment = TraceRecorder.currentContext.startSegment("original-segment-name", "segment-label", "segment-library")
+ TraceContext.withContext(newContext("trace-with-renamed-segment")) {
+ val segment = TraceContext.currentContext.startSegment("original-segment-name", "segment-label", "segment-library")
segment.name should be("original-segment-name")
segment.rename("new-segment-name")