aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/scala/kamon/trace/TraceContextManipulationSpec.scala
blob: 58b51a7327ce157894eb7debbec73b27a922d998 (plain) (blame)
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
/*
 * =========================================================================================
 * Copyright © 2013-2015 the kamon project <http://kamon.io/>
 *
 * Licensed 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 kamon.trace

import kamon.testkit.BaseKamonSpec

class TraceContextManipulationSpec extends BaseKamonSpec("trace-metrics-spec") {

  "the TraceContext api" should {
    "allow starting a trace within a specified block of code, and only within that block of code" in {
      val createdContext = Tracer.withContext(newContext("start-context")) {
        Tracer.currentContext should not be empty
        Tracer.currentContext
      }

      Tracer.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 = Tracer.withContext(newContext("start-context-with-token", "token-1")) {
        Tracer.currentContext should not be empty
        Tracer.currentContext
      }

      Tracer.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 = newContext("manually-provided-trace-context")

      Tracer.currentContext shouldBe empty
      Tracer.withContext(createdContext) {
        Tracer.currentContext should be(createdContext)
      }

      Tracer.currentContext shouldBe empty
    }

    "allow renaming a trace" in {
      val createdContext = Tracer.withContext(newContext("trace-before-rename")) {
        Tracer.currentContext.rename("renamed-trace")
        Tracer.currentContext
      }

      Tracer.currentContext shouldBe empty
      createdContext.name shouldBe "renamed-trace"
    }

    "allow tagging and untagging a trace" in {
      val createdContext = Tracer.withContext(newContext("trace-before-rename")) {
        Tracer.currentContext.addTag("trace-tag", "tag-1")
        Tracer.currentContext
      }

      Tracer.currentContext shouldBe empty
      createdContext.tags shouldBe Map("trace-tag" -> "tag-1")

      createdContext.removeTag("trace-tag", "tag-1")

      createdContext.tags shouldBe Map.empty
    }

    "allow creating a segment within a trace" in {
      val createdContext = Tracer.withContext(newContext("trace-with-segments")) {
        Tracer.currentContext.startSegment("segment-1", "segment-1-category", "segment-library")
        Tracer.currentContext
      }

      Tracer.currentContext shouldBe empty
      createdContext.name shouldBe "trace-with-segments"
    }

    "allow renaming a segment" in {
      Tracer.withContext(newContext("trace-with-renamed-segment")) {
        val segment = Tracer.currentContext.startSegment("original-segment-name", "segment-label", "segment-library")
        segment.name should be("original-segment-name")

        segment.rename("new-segment-name")
        segment.name should be("new-segment-name")
      }
    }

    "allow tagging and untagging a segment" in {
      Tracer.withContext(newContext("trace-with-renamed-segment")) {
        val segment = Tracer.currentContext.startSegment("segment-name", "segment-label", "segment-library")
        segment.tags should be(Map.empty)

        segment.addTag("segment-tag", "tag-1")
        segment.tags should be(Map("segment-tag" -> "tag-1"))

        segment.removeTag("segment-tag", "tag-1")
        segment.tags should be(Map.empty)
      }
    }
  }
}