summaryrefslogtreecommitdiff
path: root/tests/typ/compiler/dict.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/compiler/dict.typ')
-rw-r--r--tests/typ/compiler/dict.typ160
1 files changed, 0 insertions, 160 deletions
diff --git a/tests/typ/compiler/dict.typ b/tests/typ/compiler/dict.typ
deleted file mode 100644
index 552b243c..00000000
--- a/tests/typ/compiler/dict.typ
+++ /dev/null
@@ -1,160 +0,0 @@
-// Test dictionaries.
-// Ref: false
-
----
-// Ref: true
-
-// Empty
-#(:)
-
-// Two pairs and string key.
-#let dict = (normal: 1, "spacy key": 2)
-#dict
-
-#test(dict.normal, 1)
-#test(dict.at("spacy key"), 2)
-
----
-// Test lvalue and rvalue access.
-#{
- let dict = (a: 1, "b b": 1)
- dict.at("b b") += 1
- dict.state = (ok: true, err: false)
- test(dict, (a: 1, "b b": 2, state: (ok: true, err: false)))
- test(dict.state.ok, true)
- dict.at("state").ok = false
- test(dict.state.ok, false)
- test(dict.state.err, false)
-}
-
----
-// Test rvalue missing key.
-#{
- let dict = (a: 1, b: 2)
- // Error: 11-23 dictionary does not contain key "c" and no default value was specified
- let x = dict.at("c")
-}
-
----
-// Test default value.
-#test((a: 1, b: 2).at("b", default: 3), 2)
-#test((a: 1, b: 2).at("c", default: 3), 3)
-
----
-// Test insert.
-#{
- let dict = (a: 1, b: 2)
- dict.insert("b", 3)
- test(dict, (a: 1, b: 3))
- dict.insert("c", 5)
- test(dict, (a: 1, b: 3, c: 5))
-}
-
----
-// Test remove with default value.
-#{
- let dict = (a: 1, b: 2)
- test(dict.remove("b", default: 3), 2)
-}
-
-#{
- let dict = (a: 1, b: 2)
- test(dict.remove("c", default: 3), 3)
-}
-
----
-// Missing lvalue is not automatically none-initialized.
-#{
- let dict = (:)
- // Error: 3-9 dictionary does not contain key "b"
- // Hint: 3-9 use `insert` to add or update values
- dict.b += 1
-}
-
----
-// Test dictionary methods.
-#let dict = (a: 3, c: 2, b: 1)
-#test("c" in dict, true)
-#test(dict.len(), 3)
-#test(dict.values(), (3, 2, 1))
-#test(dict.pairs().map(p => p.first() + str(p.last())).join(), "a3c2b1")
-
-#dict.remove("c")
-#test("c" in dict, false)
-#test(dict, (a: 3, b: 1))
-
----
-// Test dictionary constructor
-#dictionary(sys).at("version")
-#dictionary(sys).at("no_crash", default: none)
-
----
-// Test that removal keeps order.
-#let dict = (a: 1, b: 2, c: 3, d: 4)
-#dict.remove("b")
-#test(dict.keys(), ("a", "c", "d"))
-
----
-// Error: 24-29 duplicate key: first
-#(first: 1, second: 2, first: 3)
-
----
-// Error: 17-20 duplicate key: a
-#(a: 1, "b": 2, "a": 3)
-
----
-// Simple expression after already being identified as a dictionary.
-// Error: 9-10 expected named or keyed pair, found identifier
-#(a: 1, b)
-
-// Identified as dictionary due to initial colon.
-// The boolean key is allowed for now since it will only cause an error at the evaluation stage.
-// Error: 4-5 expected named or keyed pair, found integer
-// Error: 17 expected expression
-#(:1 b:"", true:)
-
----
-// Error: 3-15 cannot mutate a temporary value
-#((key: "val").other = "some")
-
----
-#{
- let dict = (
- call-me: () => 1,
- )
- // Error: 8-15 type dictionary has no method `call-me`
- // Hint: 8-15 to call the function stored in the dictionary, surround the field access with parentheses, e.g. `(dict.call-me)(..)`
- dict.call-me()
-}
-
----
-#{
- let dict = (
- nonfunc: 1
- )
-
- // Error: 8-15 type dictionary has no method `nonfunc`
- // Hint: 8-15 did you mean to access the field `nonfunc`?
- dict.nonfunc()
-}
-
----
-#let a = "hello"
-#let b = "world"
-#let c = "value"
-#let d = "conflict"
-
-#assert.eq(((a): b), ("hello": "world"))
-#assert.eq(((a): 1, (a): 2), ("hello": 2))
-#assert.eq((hello: 1, (a): 2), ("hello": 2))
-#assert.eq((a + b: c, (a + b): d, (a): "value2", a: "value3"), ("helloworld": "conflict", "hello": "value2", "a": "value3"))
-
----
-// Error: 7-10 expected identifier, found group
-// Error: 12-14 expected pattern, found integer
-#let ((a): 10) = "world"
-
----
-// Error: 3-7 expected string, found boolean
-// Error: 16-18 expected string, found integer
-#(true: false, 42: 3)