aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/scala/kamon/trace
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-07-18 10:59:45 +0200
committerIvan Topolnjak <ivantopo@gmail.com>2017-07-18 10:59:45 +0200
commitec01aa2661df31d58b0b894dcae81c982012e3a7 (patch)
tree35798a3b23911e97ba82dbaf3ad922136698842c /kamon-core/src/test/scala/kamon/trace
parent9b6878da2fbfb1328e972a885a6fdc077e08aaf9 (diff)
downloadKamon-ec01aa2661df31d58b0b894dcae81c982012e3a7.tar.gz
Kamon-ec01aa2661df31d58b0b894dcae81c982012e3a7.tar.bz2
Kamon-ec01aa2661df31d58b0b894dcae81c982012e3a7.zip
add a double length trace identifier implementation of IdentityProvider
Diffstat (limited to 'kamon-core/src/test/scala/kamon/trace')
-rw-r--r--kamon-core/src/test/scala/kamon/trace/DoubleLengthTraceIdentityGeneratorSpec.scala86
1 files changed, 86 insertions, 0 deletions
diff --git a/kamon-core/src/test/scala/kamon/trace/DoubleLengthTraceIdentityGeneratorSpec.scala b/kamon-core/src/test/scala/kamon/trace/DoubleLengthTraceIdentityGeneratorSpec.scala
new file mode 100644
index 00000000..54e590ad
--- /dev/null
+++ b/kamon-core/src/test/scala/kamon/trace/DoubleLengthTraceIdentityGeneratorSpec.scala
@@ -0,0 +1,86 @@
+package kamon.trace
+
+import kamon.trace.IdentityProvider.Identifier
+import org.scalactic.TimesOnInt._
+import org.scalatest.{Matchers, OptionValues, WordSpecLike}
+
+class DoubleLengthTraceIdentityGeneratorSpec extends WordSpecLike with Matchers with OptionValues {
+ val idProvider = IdentityProvider.DoubleSizeTraceID()
+ val traceGenerator = idProvider.traceIdentifierGenerator()
+ val spanGenerator = idProvider.spanIdentifierGenerator()
+
+ "The DoubleSizeTraceID identity provider" when {
+ "generating trace identifiers" should {
+ "generate random longs (16 byte) identifiers" in {
+ 100 times {
+ val Identifier(string, bytes) = traceGenerator.generate()
+
+ string.length should be(32)
+ bytes.length should be(16)
+ }
+ }
+
+ "decode the string representation back into a identifier" in {
+ 100 times {
+ val identifier = traceGenerator.generate()
+ val decodedIdentifier = traceGenerator.from(identifier.string)
+
+ identifier.string should equal(decodedIdentifier.string)
+ identifier.bytes should equal(decodedIdentifier.bytes)
+ }
+ }
+
+ "decode the bytes representation back into a identifier" in {
+ 100 times {
+ val identifier = traceGenerator.generate()
+ val decodedIdentifier = traceGenerator.from(identifier.bytes)
+
+ identifier.string should equal(decodedIdentifier.string)
+ identifier.bytes should equal(decodedIdentifier.bytes)
+ }
+ }
+
+ "return IdentityProvider.NoIdentifier if the provided input cannot be decoded into a Identifier" in {
+ traceGenerator.from("zzzz") shouldBe (IdentityProvider.NoIdentifier)
+ traceGenerator.from(Array[Byte](1)) shouldBe (IdentityProvider.NoIdentifier)
+ }
+ }
+
+ "generating span identifiers" should {
+ "generate random longs (8 byte) identifiers" in {
+ 100 times {
+ val Identifier(string, bytes) = spanGenerator.generate()
+
+ string.length should be(16)
+ bytes.length should be(8)
+ }
+ }
+
+ "decode the string representation back into a identifier" in {
+ 100 times {
+ val identifier = spanGenerator.generate()
+ val decodedIdentifier = spanGenerator.from(identifier.string)
+
+ identifier.string should equal(decodedIdentifier.string)
+ identifier.bytes should equal(decodedIdentifier.bytes)
+ }
+ }
+
+ "decode the bytes representation back into a identifier" in {
+ 100 times {
+ val identifier = spanGenerator.generate()
+ val decodedIdentifier = spanGenerator.from(identifier.bytes)
+
+ identifier.string should equal(decodedIdentifier.string)
+ identifier.bytes should equal(decodedIdentifier.bytes)
+ }
+ }
+
+ "return IdentityProvider.NoIdentifier if the provided input cannot be decoded into a Identifier" in {
+ spanGenerator.from("zzzz") shouldBe (IdentityProvider.NoIdentifier)
+ spanGenerator.from(Array[Byte](1)) shouldBe (IdentityProvider.NoIdentifier)
+ }
+ }
+ }
+
+}