aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/xyz/driver/restquery/utils/StringOpsSuite.scala
blob: 97a432f85638b7b5d06f4a63ca0d4d1ca54451af (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
package xyz.driver.restquery.utils

import org.scalatest.FreeSpecLike

class StringOpsSuite extends FreeSpecLike {

  "safeTrim" - {
    "empty string" in {
      assert(Utils.safeTrim("") == "")
    }

    "string with whitespace symbols" in {
      assert(Utils.safeTrim("\u2002\u3000\r\u0085\u200A\u2005\u2000\u3000") == "")
    }

    "string with control symbols" in {
      assert(Utils.safeTrim("\u001f\u007f\t\n") == "")
    }

    "whitespaces and control symbols from the left side" in {
      assert(Utils.safeTrim("\u001f\u2002\u007f\nfoo") == "foo")
    }

    "whitespaces and control symbols from the right side" in {
      assert(Utils.safeTrim("foo\u001f\u2002\u007f\n") == "foo")
    }

    "already trimmed string" in {
      assert(Utils.safeTrim("foo") == "foo")
    }
  }
}