All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.io.kotest.matchers.uri.matchers.kt Maven / Gradle / Ivy

package io.kotest.matchers.uri

import io.kotest.matchers.Matcher
import io.kotest.matchers.MatcherResult
import io.kotest.matchers.should
import io.kotest.matchers.shouldNot
import java.net.URI

fun URI.shouldBeOpaque() = this should beOpaque()
fun URI.shouldNotBeOpaque() = this shouldNot beOpaque()
fun beOpaque() = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.isOpaque,
      { "Uri $value should be opaque" },
      {
         "Uri $value should not be opaque"
      })
}

infix fun URI.shouldHaveScheme(scheme: String) = this should haveScheme(scheme)
infix fun URI.shouldNotHaveScheme(scheme: String) = this shouldNot haveScheme(scheme)
fun haveScheme(scheme: String) = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.scheme == scheme,
      { "Uri $value should have scheme $scheme but was ${value.scheme}" },
      {
         "Uri $value should not have scheme $scheme"
      })
}

infix fun URI.shouldHavePort(port: Int) = this should havePort(port)
infix fun URI.shouldNotHavePort(port: Int) = this shouldNot havePort(port)
fun havePort(port: Int) = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.port == port,
      { "Uri $value should have port $port but was ${value.port}" },
      {
         "Uri $value should not have port $port"
      })
}

infix fun URI.shouldHaveHost(host: String) = this should haveHost(host)
infix fun URI.shouldNotHaveHost(host: String) = this shouldNot haveHost(host)
fun haveHost(host: String) = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.host == host,
      { "Uri $value should have host $host but was ${value.host}" },
      {
         "Uri $value should not have host $host"
      })
}

infix fun URI.shouldHaveQuery(q: String) = this should haveQuery(q)
infix fun URI.shouldNotHaveQuery(q: String) = this shouldNot haveQuery(q)
fun haveQuery(q: String) = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.query == q,
      { "Uri $value should have query $q but was ${value.query}" },
      {
         "Uri $value should not have query $q"
      })
}

infix fun URI.shouldHaveAuthority(authority: String) = this should haveAuthority(authority)
infix fun URI.shouldNotHaveAuthority(authority: String) = this shouldNot haveAuthority(authority)
fun haveAuthority(authority: String) = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.authority == authority,
      { "Uri $value should have authority $authority but was ${value.authority}" },
      {
         "Uri $value should not have authority $authority"
      })
}

infix fun URI.shouldHavePath(path: String) = this should havePath(path)
infix fun URI.shouldNotHavePath(path: String) = this shouldNot havePath(path)
fun havePath(path: String) = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.path == path,
      { "Uri $value should have path $path but was ${value.path}" },
      {
         "Uri $value should not have path $path"
      })
}

infix fun URI.shouldHaveParameter(key: String) = this should haveParameter(key)
infix fun URI.shouldNotHaveParameter(key: String) = this shouldNot haveParameter(key)
fun haveParameter(key: String) = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.query.split("&").any { it.split("=").first() == key },
      { "Uri $value should have query parameter $key" },
      {
         "Uri $value should not have query parameter $key"
      })
}

infix fun URI.shouldHaveFragment(fragment: String) = this should haveFragment(fragment)
infix fun URI.shouldNotHaveFragment(fragment: String) = this shouldNot haveFragment(fragment)
fun haveFragment(fragment: String) = object : Matcher {
   override fun test(value: URI) = MatcherResult(
      value.fragment == fragment,
      { "Uri $value should have fragment $fragment" },
      {
         "Uri $value should not fragment $fragment"
      })
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy