aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/scala/kamon/trace/DoubleLengthTraceIdentityGeneratorSpec.scala
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-08-15 00:06:26 +0200
committerIvan Topolnjak <ivantopo@gmail.com>2017-08-15 00:06:26 +0200
commit6721d325d018756296213ac8f9129bc304a21afb (patch)
treee08a5ce92802f521be228beae0ddb4ef258d0066 /kamon-core/src/test/scala/kamon/trace/DoubleLengthTraceIdentityGeneratorSpec.scala
parentac3b72e27765ceec4cc3958b0fa7eaba0299f017 (diff)
parenta949c875684d78818224cd2ca7aaf79aa7878724 (diff)
downloadKamon-6721d325d018756296213ac8f9129bc304a21afb.tar.gz
Kamon-6721d325d018756296213ac8f9129bc304a21afb.tar.bz2
Kamon-6721d325d018756296213ac8f9129bc304a21afb.zip
Merge remote-tracking branch 'ivantopo/wip/moving-ot-support-to-a-separeate-project' into kamon-1.0-develop
Diffstat (limited to 'kamon-core/src/test/scala/kamon/trace/DoubleLengthTraceIdentityGeneratorSpec.scala')
-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..b22f17e1
--- /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.traceIdGenerator()
+ val spanGenerator = idProvider.spanIdGenerator()
+
+ "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)
+ }
+ }
+ }
+
+}