From 1427c101f98c72e551fcc72671ab3cde0991bb6d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 4 May 2026 10:35:58 +0900 Subject: test(resolver): scaffold PoolBuilder fixture suite from Composer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Port the 31 .test fixtures under composer/tests/Composer/Test/DependencyResolver/Fixtures/poolbuilder/ as #[ignore]'d cases in mozart-registry/tests/poolbuilder.rs. Each fixture is parsed eagerly so format-level regressions surface immediately, while the runner itself is unimplemented\!() — removing #[ignore] from a case will force the missing pool-build entry point into existence rather than silently mis-run. Generalize mozart-test-harness's split_sections to take a per-format valid-section list and add a poolbuilder parser alongside the installer one. --- crates/mozart-test-harness/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'crates/mozart-test-harness/src/lib.rs') diff --git a/crates/mozart-test-harness/src/lib.rs b/crates/mozart-test-harness/src/lib.rs index f8fa2b3..ea125cc 100644 --- a/crates/mozart-test-harness/src/lib.rs +++ b/crates/mozart-test-harness/src/lib.rs @@ -6,7 +6,11 @@ //! runner; actual `.test` fixtures and tests live elsewhere. mod parser; +mod pool_builder_parser; mod runner; pub use parser::{ParsedTest, parse_test_file, parse_test_str}; +pub use pool_builder_parser::{ + ParsedPoolBuilderTest, parse_pool_builder_test_file, parse_pool_builder_test_str, +}; pub use runner::{RunResult, run_test}; -- cgit v1.3.1