Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some clojure.string tests #70

Merged
merged 52 commits into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
980e75e
clojure.string test stubs
frenchy64 Feb 6, 2025
2314ed5
fill in
frenchy64 Feb 6, 2025
f9fccde
fix
frenchy64 Feb 6, 2025
1b7f3e5
upgrade bb new-test, add deps.edn
frenchy64 Feb 6, 2025
2bd8ec1
rm
frenchy64 Feb 6, 2025
c8548a3
wip
frenchy64 Feb 6, 2025
2806fe6
clean up
frenchy64 Feb 6, 2025
8466c7b
captialize corner cases
frenchy64 Feb 6, 2025
41c9b36
wip
frenchy64 Feb 6, 2025
edb2686
jank compatible
frenchy64 Feb 6, 2025
53ec1a7
Merge branch 'jank-lang:main' into clojure-string
frenchy64 Feb 7, 2025
e845ff8
Merge branch 'main' of github.com:frenchy64/clojure-test-suite into c…
frenchy64 Feb 7, 2025
05a43a3
rm jank workaround
frenchy64 Feb 7, 2025
428a717
Merge branch 'clojure-string' of github.com:frenchy64/clojure-test-su…
frenchy64 Feb 7, 2025
27ae141
add subs cases
frenchy64 Feb 8, 2025
a0fe39d
auto
frenchy64 Feb 8, 2025
73dff22
undo
frenchy64 Feb 8, 2025
d76831c
subs
frenchy64 Feb 8, 2025
f21c832
update build
frenchy64 Feb 8, 2025
0877a23
simplify
frenchy64 Feb 8, 2025
27a1af1
update
frenchy64 Feb 8, 2025
226cb42
tests
frenchy64 Feb 8, 2025
58a00f7
wip
frenchy64 Feb 8, 2025
8561855
try cache
frenchy64 Feb 8, 2025
b5c7ff9
Merge branch 'main' into clojure-string
frenchy64 Feb 24, 2025
27fe23f
move unrelated changes to another pr
frenchy64 Feb 24, 2025
34a6e8c
wip
frenchy64 Feb 24, 2025
2de4dd1
try
frenchy64 Feb 24, 2025
8240485
try
frenchy64 Feb 24, 2025
2c23802
more
frenchy64 Feb 24, 2025
3c24bb2
wip
frenchy64 Feb 24, 2025
8b4c8ce
wip
frenchy64 Feb 24, 2025
4722dbe
test return
frenchy64 Feb 24, 2025
d0f0503
try
frenchy64 Feb 24, 2025
0bdbd6c
stuff
frenchy64 Feb 24, 2025
2409201
more
frenchy64 Feb 24, 2025
ef84223
fix
frenchy64 Feb 24, 2025
e2d247e
nil
frenchy64 Feb 24, 2025
b471614
wip
frenchy64 Feb 24, 2025
a0ad826
wip
frenchy64 Feb 24, 2025
73e0fcf
wip
frenchy64 Feb 24, 2025
3946677
wip
frenchy64 Feb 24, 2025
d558584
wip
frenchy64 Feb 24, 2025
b8217a8
wip
frenchy64 Feb 24, 2025
07622ee
junk
frenchy64 Feb 24, 2025
3aa8907
unicode
frenchy64 Feb 24, 2025
4fd588d
unicode
frenchy64 Feb 24, 2025
0881a49
unicode
frenchy64 Feb 24, 2025
d91512b
whitespace
frenchy64 Feb 24, 2025
1ca7f15
unicode
frenchy64 Feb 24, 2025
202df84
wip
frenchy64 Feb 24, 2025
1ba1a6d
reader cond
frenchy64 Feb 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions test/clojure/core_test/subs.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,26 @@

(when-var-exists clojure.core/subs
(deftest test-subs
(is (= "abcde" (subs "abcde" 0)))
(is (= "abcde" (subs "abcde" 0 5)))
(is (= "ab֎de" (subs "ab֎de" 0)))
(is (= "ab֎de" (subs "ab֎de" 0 5)))
(is (= "bcde" (subs "abcde" 1)))
(is (= "bcde" (subs "֎bcde" 1)))
(is (= "bcd" (subs "abcde" 1 4)))
(is (= "bcd" (subs "֎bcde" 1 4)))
(is (= "abc" (subs "abcde" 0 3)))
(is (= "ab֎" (subs "ab֎de" 0 3)))
(is (= "" (subs "" 0 0)))
(is (= "" (subs "" 0)))
(is (= "" (subs "abcde" 0 0)))
(is (= "" (subs "֎bcde" 0 0)))
(is (= "" (subs "abcde" 5)))
(is (= "" (subs "abcd֎" 5)))
(is (= "" (subs "abcde" 5 5)))
(is (= "" (subs "abcd֎" 5 5)))
(is (= "" (subs "abcde" 4 4)))
(is (= "" (subs "abc֎e" 4 4)))
#?@(:cljs
[(is (= "b" (subs "abcde" 2 1)))
(is (= "bcde" (subs "abcde" 1 6)))
Expand Down
28 changes: 28 additions & 0 deletions test/clojure/string_test/blank_qmark.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
(ns clojure.string-test.blank-qmark
(:require [clojure.string :as str]
[clojure.test :as t :refer [deftest testing is are]]
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))

(when-var-exists str/blank?
(deftest test-blank?
(is (true? (str/blank? "")))
(is (true? (str/blank? nil)))
(is (false? (str/blank? "֎")))
(testing "U+2007"
(is (#?(:cljs true? :default false?) (str/blank? " ")))
(is (#?(:cljs true? :default false?) (str/blank? "\u2007"))))
(is (true? (str/blank? " ")))
(is (true? (str/blank? " \t ")))
#?(:cljs (do (is (true? (str/blank? (symbol ""))))
(is (false? (str/blank? 'a))))
:default (is (thrown? #?(:clj Exception) (str/blank? (symbol "")))))
#?(:cljs (do (is (false? (str/blank? (keyword ""))))
(is (false? (str/blank? :a))))
:default (is (thrown? #?(:clj Exception) (str/blank? (keyword "")))))
#?(:cljs (is (false? (str/blank? 1)))
:default (is (thrown? #?(:clj Exception) (str/blank? 1))))
#?(:cljs (do (is (true? (str/blank? \space)))
(is (false? (str/blank? \a))))
:default (is (thrown? #?(:clj Exception) (str/blank? \space))))
(is (false? (str/blank? "nil")))
(is (false? (str/blank? " as df ")))))
23 changes: 23 additions & 0 deletions test/clojure/string_test/capitalize.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
(ns clojure.string-test.capitalize
(:require [clojure.string :as str]
[clojure.test :as t :refer [deftest testing is are]]
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))

(when-var-exists str/capitalize
(deftest test-capitalize
(is (thrown? #?(:cljs :default :clj Exception) (str/capitalize nil)))
#?(:cljs (do (is (thrown? :default (str/capitalize 1)))
(is (thrown? :default (str/capitalize 'a)))
(is (thrown? :default (str/capitalize 'a/a)))
(is (thrown? :default (str/capitalize :a)))
(is (thrown? :default (str/capitalize :a/a))))
:default (do (is (= "1" (str/capitalize 1)))
(is (= "Asdf" (str/capitalize 'Asdf)))
(is (= "Asdf/asdf" (str/capitalize 'asDf/aSdf)))
(is (= ":asdf/asdf" (str/capitalize :asDf/aSdf)))))
(is (= "" (str/capitalize "")))
(is (= "A" (str/capitalize "a")))
(is (= "֎" (str/capitalize "֎")))
(is (= "A thing" (str/capitalize "a Thing")))
(is (= "A thing" (str/capitalize "A THING")))
(is (= "A thing" (str/capitalize "A thing")))))
26 changes: 26 additions & 0 deletions test/clojure/string_test/ends_with_qmark.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
(ns clojure.string-test.ends-with-qmark
(:require [clojure.string :as str]
[clojure.test :as t :refer [deftest testing is are]]
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))

(when-var-exists str/ends-with?
(deftest test-ends-with?
(is (true? (str/ends-with? "" "")))
(is (thrown? #?(:cljs :default :clj Exception) (str/ends-with? "" nil)))
(is (thrown? #?(:cljs :default :clj Exception) (str/ends-with? nil "")))
#?(:cljs (do (is (false? (str/ends-with? "ab" :b)))
(is (false? (str/ends-with? "ab" :a))))
:default (is (thrown? #?(:clj Exception) (str/ends-with? "ab" :b))))
#?(:cljs (is (false? (str/ends-with? "ab" 'b)))
:default (is (thrown? #?(:clj Exception) (str/ends-with? "ab" 'b))))
(is (#?(:cljs false? :default true?) (str/ends-with? 'ab "b")))
(is (false? (str/ends-with? 'ab "a")))
(is (#?(:cljs false? :default true?) (str/ends-with? :ab "b")))
(is (false? (str/ends-with? :ab "a")))
(is (false? (str/ends-with? "" "a")))
(is (true? (str/ends-with? "a-test" "")))
(is (true? (str/ends-with? "a-test֎" "֎")))
(is (true? (str/ends-with? "a-test" "t")))
(is (true? (str/ends-with? "a-test" "a-test")))
(is (false? (str/ends-with? "a-test" "s")))
(is (false? (str/ends-with? "a-test" "a")))))
17 changes: 17 additions & 0 deletions test/clojure/string_test/escape.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
(ns clojure.string-test.escape
(:require [clojure.string :as str]
[clojure.test :as t :refer [deftest testing is are]]
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))

(when-var-exists str/escape
(deftest test-escape
(is (= "" (str/escape "" {})))
(is (= "" (str/escape "" {\c "C_C"})))
(is (= "A_Abc" (str/escape "abc" {\a "A_A"})))
(is (= "A_AbC_C" (str/escape "abc" {\a "A_A" \c "C_C"})))
(is (= "A_AbC_C" (str/escape "abc" {\a "A_A" \c "C_C" (int \a) 1 nil 'junk :garbage 42.42})))
(is (= "A_AbC_C" (str/escape "abc" {\a "A_A" \c "C_C"})))
(is (thrown? #?(:cljs :default :clj Exception) (str/escape nil {\a "A_A" \c "C_C"})))
(is (thrown? #?(:cljs :default :clj Exception) (str/escape 1 {\a "A_A" \c "C_C"})))
(is (thrown? #?(:cljs :default :clj Exception) (str/escape 'a {\a "A_A" \c "C_C"})))
(is (thrown? #?(:cljs :default :clj Exception) (str/escape :a {\a "A_A" \c "C_C"})))))
21 changes: 21 additions & 0 deletions test/clojure/string_test/lower_case.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
(ns clojure.string-test.lower-case
(:require [clojure.string :as str]
[clojure.test :as t :refer [deftest testing is are]]
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))

(when-var-exists str/lower-case
(deftest test-lower-case
(is (thrown? #?(:cljs :default :clj Exception) (str/lower-case nil)))
(is (= "" (str/lower-case "")))
(is (= "֎" (str/lower-case "֎")))
(is (= "asdf" (str/lower-case "AsdF")))
(is (= "asdf" (str/lower-case "asdf")))
(let [s "ASDF"]
(is (= "asdf" (str/lower-case "ASDF")))
(is (= "ASDF" s) "original string mutated"))
#?(:cljs (is (thrown? :default (str/lower-case :ASDF)))
:default (is (= ":asdf" (str/lower-case :ASDF))))
#?(:cljs (is (thrown? :default (str/lower-case :ASDF/ASDF)))
:default (is (= ":asdf/asdf" (str/lower-case :ASDF/ASDF))))
#?(:cljs (is (thrown? :default (str/lower-case 'ASDF)))
:default (is (= "asdf" (str/lower-case 'ASDF))))))
15 changes: 15 additions & 0 deletions test/clojure/string_test/reverse.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
(ns clojure.string-test.reverse
(:require [clojure.string :as str]
[clojure.test :as t :refer [deftest testing is are]]
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))

(when-var-exists str/reverse
(deftest test-reverse
(is (= "" (str/reverse "")))
(is (= "֎" (str/reverse "֎")))
(is (= "a֎" (str/reverse "֎a")))
(is (= "tset-a" (str/reverse "a-test")))
(is (thrown? #?(:cljs :default :clj Exception) (str/reverse nil)))
(is (thrown? #?(:cljs :default :clj Exception) (str/reverse 1)))
(is (thrown? #?(:cljs :default :clj Exception) (str/reverse 'a-test)))
(is (thrown? #?(:cljs :default :clj Exception) (str/reverse :a-test)))))
38 changes: 38 additions & 0 deletions test/clojure/string_test/starts_with_qmark.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
(ns clojure.string-test.starts-with-qmark
(:require [clojure.string :as str]
[clojure.test :as t :refer [deftest testing is are]]
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))

(when-var-exists str/starts-with?
(deftest test-starts-with?
(is (true? (str/starts-with? "" "")))
#?(:cljs (is (false? (str/starts-with? "" nil)))
:default (is (thrown? #?(:clj Exception) (str/starts-with? "" nil))))
(is (thrown? #?(:cljs :default :clj Exception) (str/starts-with? nil "")))
#?(:cljs (do (is (false? (str/starts-with? "ab" :a)))
(is (true? (str/starts-with? ":ab" :a)))
(is (false? (str/starts-with? "ab" :b))))
:default (is (thrown? #?(:clj Exception) (str/starts-with? "ab" :a))))
#?(:cljs (is (true? (str/starts-with? "ab" 'a)))
:default (is (thrown? #?(:clj Exception) (str/starts-with? "a" 'a))))
(is (false? (str/starts-with? "" "a")))
(is (true? (str/starts-with? "a-test" "")))
(is (true? (str/starts-with? "֎a-test" "֎")))
(is (true? (str/starts-with? "a-test" "a")))
(is (true? (str/starts-with? "a-test" "a-test")))
(is (false? (str/starts-with? "a-test" "-")))
(is (false? (str/starts-with? "a-test" "t")))
#?(:cljs (is (thrown? :default (str/starts-with? 'ab ":a")))
:default (do (is (false? (str/starts-with? 'ab "b")))
(is (true? (str/starts-with? 'ab "a")))))
#?(:cljs (is (thrown? :default (str/starts-with? :ab ":a")))
:default (do (is (false? (str/starts-with? :ab "b")))
(is (false? (str/starts-with? :ab "a")))
(is (true? (str/starts-with? :ab ":a")))))
#?(:cljs (is (thrown? :default (str/starts-with? 'a/b ":a")))
:default (do (is (false? (str/starts-with? 'a/b "b")))
(is (true? (str/starts-with? 'a/b "a")))))
#?(:cljs (is (thrown? :default (str/starts-with? :a/b ":a")))
:default (do (is (false? (str/starts-with? :a/b "b")))
(is (false? (str/starts-with? :a/b "a")))
(is (true? (str/starts-with? :a/b ":a")))))))
23 changes: 23 additions & 0 deletions test/clojure/string_test/upper_case.cljc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
(ns clojure.string-test.upper-case
(:require [clojure.string :as str]
[clojure.test :as t :refer [deftest testing is are]]
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))

(when-var-exists str/upper-case
(deftest test-upper-case
(is (thrown? #?(:cljs :default :clj Exception) (str/upper-case nil)))
(is (= "" (str/upper-case "")))
(is (= "֎" (str/upper-case "֎")))
(is (= "ASDF" (str/upper-case "aSDf")))
(is (= "ASDF" (str/upper-case "ASDF")))
(let [s "asdf"]
(is (= "ASDF" (str/upper-case "asdf")))
(is (= "asdf" s) "original string mutated"))
#?(:cljs (is (thrown? :default (str/upper-case :asdf)))
:default (is (= ":ASDF" (str/upper-case :asdf))))
#?(:cljs (is (thrown? :default (str/upper-case :asdf/asdf)))
:default (is (= ":ASDF/ASDF" (str/upper-case :asdf/asdf))))
#?(:cljs (is (thrown? :default (str/upper-case 'asdf)))
:default (is (= "ASDF" (str/upper-case 'asdf))))
#?(:cljs (is (thrown? :default (str/upper-case 'asdf/asdf)))
:default (is (= "ASDF/ASDF" (str/upper-case 'asdf/asdf))))))