aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-12-21 14:05:44 -0300
committerDiego <diegolparra@gmail.com>2014-12-24 18:58:12 -0300
commit5635149af76a85b167ca6f6ad45767bc45da31ba (patch)
tree650e0bae447016fa74f3e7681f1f61bea60b3cc1 /kamon-core/src/test
parent8e62230ad7250b522997dc910aa46de5ce99768a (diff)
downloadKamon-5635149af76a85b167ca6f6ad45767bc45da31ba.tar.gz
Kamon-5635149af76a85b167ca6f6ad45767bc45da31ba.tar.bz2
Kamon-5635149af76a85b167ca6f6ad45767bc45da31ba.zip
+ core: introduce simplified version of GlobPathFilter and resolve exact actor metric filter issue
Diffstat (limited to 'kamon-core/src/test')
-rw-r--r--kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala43
1 files changed, 43 insertions, 0 deletions
diff --git a/kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala b/kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala
new file mode 100644
index 00000000..0611e169
--- /dev/null
+++ b/kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala
@@ -0,0 +1,43 @@
+/*
+ * =========================================================================================
+ * Copyright © 2013-2014 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.util
+
+import org.scalatest.{Matchers, WordSpecLike}
+
+class GlobPathFilterSpec extends WordSpecLike with Matchers {
+ "The GlobPathFilter" should {
+
+ "match a single expression" in {
+ val filter = GlobPathFilter("/user/actor")
+
+ filter.accept("/user/actor") should be (true)
+
+ filter.accept("/user/actor/something") should be (false)
+ filter.accept("/user/actor/somethingElse") should be (false)
+ }
+
+ "match all expressions in the same level" in {
+ val filter = GlobPathFilter("/user/*")
+
+ filter.accept("/user/actor") should be (true)
+ filter.accept("/user/otherActor") should be (true)
+
+ filter.accept("/user/something/actor") should be (false)
+ filter.accept("/user/something/otherActor") should be (false)
+ }
+ }
+}