summaryrefslogtreecommitdiff
path: root/tests/suite/visualize
diff options
context:
space:
mode:
Diffstat (limited to 'tests/suite/visualize')
-rw-r--r--tests/suite/visualize/image.typ5
-rw-r--r--tests/suite/visualize/path.typ11
-rw-r--r--tests/suite/visualize/tiling.typ2
3 files changed, 18 insertions, 0 deletions
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)