aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/scala/kamon/metric/instrument/CounterSpec.scala
blob: 1a93e1f61791d97d836fb14bb6b5134426d0b8e1 (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
package kamon.metric.instrument

import java.nio.LongBuffer

import kamon.metric.CollectionContext
import org.scalatest.{ Matchers, WordSpec }

class CounterSpec extends WordSpec with Matchers {

  "a Counter" should {
    "allow increment only operations" in new CounterFixture {
      counter.increment()
      counter.increment(10)

      intercept[UnsupportedOperationException] {
        counter.increment(-10)
      }
    }

    "reset to zero when a snapshot is taken" in new CounterFixture {
      counter.increment(100)
      takeSnapshotFrom(counter).count should be(100)
      takeSnapshotFrom(counter).count should be(0)
      takeSnapshotFrom(counter).count should be(0)

      counter.increment(50)
      takeSnapshotFrom(counter).count should be(50)
      takeSnapshotFrom(counter).count should be(0)
    }

    "produce a snapshot that can be merged with others" in new CounterFixture {
      val counterA = Counter()
      val counterB = Counter()
      counterA.increment(100)
      counterB.increment(200)

      val counterASnapshot = takeSnapshotFrom(counterA)
      val counterBSnapshot = takeSnapshotFrom(counterB)

      counterASnapshot.merge(counterBSnapshot, collectionContext).count should be(300)
      counterBSnapshot.merge(counterASnapshot, collectionContext).count should be(300)
    }

  }

  trait CounterFixture {
    val counter = Counter()

    val collectionContext = new CollectionContext {
      val buffer: LongBuffer = LongBuffer.allocate(1)
    }

    def takeSnapshotFrom(counter: Counter): Counter.Snapshot = counter.collect(collectionContext)
  }
}