summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-02-04 10:38:31 +0100
committerGitHub <noreply@github.com>2025-02-04 09:38:31 +0000
commit50ccd7d60f078f3617bfed5c4e8e1fd7d45ec340 (patch)
tree22c12abf76d2b2c20b49b569167ddf60fbe5b348 /tests
parent5b3593e571826ae44a3aeb0e0f6f09face7291ac (diff)
Scope deprecations (#5798)
Diffstat (limited to 'tests')
-rw-r--r--tests/suite/loading/cbor.typ3
-rw-r--r--tests/suite/loading/csv.typ4
-rw-r--r--tests/suite/loading/json.typ4
-rw-r--r--tests/suite/loading/toml.typ4
-rw-r--r--tests/suite/loading/xml.typ4
-rw-r--r--tests/suite/loading/yaml.typ4
-rw-r--r--tests/suite/visualize/image.typ5
-rw-r--r--tests/suite/visualize/path.typ11
-rw-r--r--tests/suite/visualize/tiling.typ2
9 files changed, 41 insertions, 0 deletions
diff --git a/tests/suite/loading/cbor.typ b/tests/suite/loading/cbor.typ
new file mode 100644
index 00000000..4b50bb9c
--- /dev/null
+++ b/tests/suite/loading/cbor.typ
@@ -0,0 +1,3 @@
+--- cbor-decode-deprecated ---
+// Warning: 15-21 `cbor.decode` is deprecated, directly pass bytes to `cbor` instead
+#let _ = cbor.decode
diff --git a/tests/suite/loading/csv.typ b/tests/suite/loading/csv.typ
index 93545fc4..6f57ec45 100644
--- a/tests/suite/loading/csv.typ
+++ b/tests/suite/loading/csv.typ
@@ -29,3 +29,7 @@
--- csv-invalid-delimiter ---
// Error: 41-51 delimiter must be an ASCII character
#csv("/assets/data/zoo.csv", delimiter: "\u{2008}")
+
+--- csv-decode-deprecated ---
+// Warning: 14-20 `csv.decode` is deprecated, directly pass bytes to `csv` instead
+#let _ = csv.decode
diff --git a/tests/suite/loading/json.typ b/tests/suite/loading/json.typ
index 3ebeaf2f..c8df1ff6 100644
--- a/tests/suite/loading/json.typ
+++ b/tests/suite/loading/json.typ
@@ -9,6 +9,10 @@
// Error: 7-30 failed to parse JSON (expected value at line 3 column 14)
#json("/assets/data/bad.json")
+--- json-decode-deprecated ---
+// Warning: 15-21 `json.decode` is deprecated, directly pass bytes to `json` instead
+#let _ = json.decode
+
--- issue-3363-json-large-number ---
// Big numbers (larger than what i64 can store) should just lose some precision
// but not overflow
diff --git a/tests/suite/loading/toml.typ b/tests/suite/loading/toml.typ
index 855ca995..a4318a01 100644
--- a/tests/suite/loading/toml.typ
+++ b/tests/suite/loading/toml.typ
@@ -39,3 +39,7 @@
--- toml-invalid ---
// Error: 7-30 failed to parse TOML (expected `.`, `=` at line 1 column 16)
#toml("/assets/data/bad.toml")
+
+--- toml-decode-deprecated ---
+// Warning: 15-21 `toml.decode` is deprecated, directly pass bytes to `toml` instead
+#let _ = toml.decode
diff --git a/tests/suite/loading/xml.typ b/tests/suite/loading/xml.typ
index 41cd20e7..933f3c48 100644
--- a/tests/suite/loading/xml.typ
+++ b/tests/suite/loading/xml.typ
@@ -26,3 +26,7 @@
--- xml-invalid ---
// Error: 6-28 failed to parse XML (found closing tag 'data' instead of 'hello' in line 3)
#xml("/assets/data/bad.xml")
+
+--- xml-decode-deprecated ---
+// Warning: 14-20 `xml.decode` is deprecated, directly pass bytes to `xml` instead
+#let _ = xml.decode
diff --git a/tests/suite/loading/yaml.typ b/tests/suite/loading/yaml.typ
index bbfea41c..a8089052 100644
--- a/tests/suite/loading/yaml.typ
+++ b/tests/suite/loading/yaml.typ
@@ -15,3 +15,7 @@
--- yaml-invalid ---
// Error: 7-30 failed to parse YAML (did not find expected ',' or ']' at line 2 column 1, while parsing a flow sequence at line 1 column 18)
#yaml("/assets/data/bad.yaml")
+
+--- yaml-decode-deprecated ---
+// Warning: 15-21 `yaml.decode` is deprecated, directly pass bytes to `yaml` instead
+#let _ = yaml.decode
diff --git a/tests/suite/visualize/image.typ b/tests/suite/visualize/image.typ
index 6f6e1a15..e37932f2 100644
--- a/tests/suite/visualize/image.typ
+++ b/tests/suite/visualize/image.typ
@@ -161,22 +161,27 @@ A #box(image("/assets/images/tiger.jpg", height: 1cm, width: 80%)) B
--- image-decode-svg ---
// Test parsing from svg data
+// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
#image.decode(`<svg xmlns="http://www.w3.org/2000/svg" height="140" width="500"><ellipse cx="200" cy="80" rx="100" ry="50" style="fill:yellow;stroke:purple;stroke-width:2" /></svg>`.text, format: "svg")
--- image-decode-bad-svg ---
// Error: 2-168 failed to parse SVG (missing root node)
+// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
#image.decode(`<svg height="140" width="500"><ellipse cx="200" cy="80" rx="100" ry="50" style="fill:yellow;stroke:purple;stroke-width:2" /></svg>`.text, format: "svg")
--- image-decode-detect-format ---
// Test format auto detect
+// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
#image.decode(read("/assets/images/tiger.jpg", encoding: none), width: 80%)
--- image-decode-specify-format ---
// Test format manual
+// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
#image.decode(read("/assets/images/tiger.jpg", encoding: none), format: "jpg", width: 80%)
--- image-decode-specify-wrong-format ---
// Error: 2-91 failed to decode image (Format error decoding Png: Invalid PNG signature.)
+// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
#image.decode(read("/assets/images/tiger.jpg", encoding: none), format: "png", width: 80%)
--- image-pixmap-empty ---
diff --git a/tests/suite/visualize/path.typ b/tests/suite/visualize/path.typ
index 55c0f534..e44b2270 100644
--- a/tests/suite/visualize/path.typ
+++ b/tests/suite/visualize/path.typ
@@ -6,6 +6,7 @@
columns: (1fr, 1fr),
rows: (1fr, 1fr, 1fr),
align: center + horizon,
+ // Warning: 3-7 the `path` function is deprecated, use `curve` instead
path(
fill: red,
closed: true,
@@ -14,6 +15,7 @@
((0%, 50%), (4%, 4%)),
((50%, 0%), (4%, 4%)),
),
+ // Warning: 3-7 the `path` function is deprecated, use `curve` instead
path(
fill: purple,
stroke: 1pt,
@@ -22,6 +24,7 @@
(0pt, 30pt),
(30pt, 0pt),
),
+ // Warning: 3-7 the `path` function is deprecated, use `curve` instead
path(
fill: blue,
stroke: 1pt,
@@ -30,6 +33,7 @@
((30%, 60%), (-20%, 0%), (0%, 0%)),
((50%, 30%), (60%, -30%), (60%, 0%)),
),
+ // Warning: 3-7 the `path` function is deprecated, use `curve` instead
path(
stroke: 5pt,
closed: true,
@@ -37,6 +41,7 @@
(30pt, 30pt),
(15pt, 0pt),
),
+ // Warning: 3-7 the `path` function is deprecated, use `curve` instead
path(
fill: red,
fill-rule: "non-zero",
@@ -47,6 +52,7 @@
(0pt, 20pt),
(40pt, 50pt),
),
+ // Warning: 3-7 the `path` function is deprecated, use `curve` instead
path(
fill: red,
fill-rule: "even-odd",
@@ -61,18 +67,22 @@
--- path-bad-vertex ---
// Error: 7-9 path vertex must have 1, 2, or 3 points
+// Warning: 2-6 the `path` function is deprecated, use `curve` instead
#path(())
--- path-bad-point-count ---
// Error: 7-47 path vertex must have 1, 2, or 3 points
+// Warning: 2-6 the `path` function is deprecated, use `curve` instead
#path(((0%, 0%), (0%, 0%), (0%, 0%), (0%, 0%)))
--- path-bad-point-array ---
// Error: 7-31 point array must contain exactly two entries
+// Warning: 2-6 the `path` function is deprecated, use `curve` instead
#path(((0%, 0%), (0%, 0%, 0%)))
--- path-infinite-length ---
// Error: 2-42 cannot create path with infinite length
+// Warning: 2-6 the `path` function is deprecated, use `curve` instead
#path((0pt, 0pt), (float.inf * 1pt, 0pt))
--- issue-path-in-sized-container ---
@@ -82,6 +92,7 @@
fill: aqua,
width: 20pt,
height: 15pt,
+ // Warning: 3-7 the `path` function is deprecated, use `curve` instead
path(
(0pt, 0pt),
(10pt, 10pt),
diff --git a/tests/suite/visualize/tiling.typ b/tests/suite/visualize/tiling.typ
index 5e61aa43..90413341 100644
--- a/tests/suite/visualize/tiling.typ
+++ b/tests/suite/visualize/tiling.typ
@@ -159,5 +159,7 @@
--- tiling-pattern-compatibility ---
#set page(width: auto, height: auto, margin: 0pt)
+
+// Warning: 10-17 the name `pattern` is deprecated, use `tiling` instead
#let t = pattern(size: (10pt, 10pt), line(stroke: 4pt, start: (0%, 0%), end: (100%, 100%)))
#rect(width: 50pt, height: 50pt, fill: t)