Skip to content

Commit 78d14ef

Browse files
authored
Revamp test suite. (#59)
- General cleanup of tests (remove unused reference images, remove test cases that don't exist in resvg, add all remaining resvg test cases without reference images) - Instead of using a custom test runner, we generate tests using Python. While it removes some flexibility in how we run the tests, it allows us to use cargo's native test runner, which has many advantages, such as being more consistent overall and also not quitting instantly if a test case panics.
1 parent 476bb0c commit 78d14ef

File tree

191 files changed

+3841
-814
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+3841
-814
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
shell: bash
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Get Rust toolchain
2020
uses: dtolnay/rust-toolchain@stable
@@ -27,7 +27,7 @@ jobs:
2727
curl -LO https://github.com/bblanchon/pdfium-binaries/releases/download/chromium%2F5880/pdfium-linux-x64.tgz
2828
mkdir pdfium-linux-x64
2929
tar -xvzf ./pdfium-linux-x64.tgz -C pdfium-linux-x64
30-
mv ./pdfium-linux-x64/lib/libpdfium.so ./tests/pdfium_lib
30+
mv ./pdfium-linux-x64/lib/libpdfium.so ./tests/pdfium
3131
3232
- name: Build svg2pdf
3333
run: cargo build --all --release
@@ -46,7 +46,7 @@ jobs:
4646
name: Check clippy, formatting, and documentation
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050
- uses: dtolnay/rust-toolchain@stable
5151
- uses: Swatinem/rust-cache@v2
5252
- run: cargo clippy --all-targets

Cargo.lock

+1-150
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-4
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,13 @@ clap_complete = "4.4.3"
1818
clap_mangen = "0.2.14"
1919
fontdb = "0.16.0"
2020
image = { version = "0.24", default-features = false, features = ["jpeg", "png", "gif"] }
21-
indicatif = "0.17.5"
22-
lazy_static = "1.4.0"
2321
miniz_oxide = "0.7"
2422
once_cell = "1.18.0"
2523
oxipng = { version = "9", default-features = false, features = ["filetime", "parallel", "zopfli"] }
2624
pdf-writer = "0.9"
2725
pdfium-render = "0.8.6"
28-
regex = "1.8.4"
2926
termcolor = "1.2"
3027
usvg = { version = "0.38.0", default-features = false, features = ["text"] }
31-
walkdir = "2.3.3"
3228
tiny-skia = "0.11.3"
3329
resvg = { version = "0.38.0" }
3430

tests/Cargo.toml

+2-26
Original file line numberDiff line numberDiff line change
@@ -8,36 +8,12 @@ repository.workspace = true
88
license.workspace = true
99
publish = false
1010

11-
[lib]
12-
test = false
13-
doctest = false
14-
15-
[[test]]
16-
name = "tests"
17-
path = "src/tests.rs"
18-
harness = false
19-
20-
[[bin]]
21-
name = "generate"
22-
path = "src/generate.rs"
23-
test = false
24-
25-
[[bin]]
26-
name = "typst"
27-
path = "src/typst.rs"
28-
test = false
29-
3011
[dependencies]
3112
fontdb = { workspace = true }
3213
svg2pdf = { workspace = true }
3314
usvg = { workspace = true }
34-
pdfium-render = { workspace = true }
35-
walkdir = { workspace = true }
36-
lazy_static = { workspace = true }
15+
pdfium-render = { workspace = true, features = ["sync"] }
3716
pdf-writer = { workspace = true }
3817
image = { workspace = true }
39-
indicatif = { workspace = true }
4018
oxipng = { workspace = true }
41-
clap = { workspace = true }
42-
termcolor = { workspace = true }
43-
regex = { workspace = true }
19+
once_cell = { workspace = true }

0 commit comments

Comments
 (0)