diff --git a/.lighthouse/pipeline-rust-test.yaml b/.lighthouse/pipeline-rust-test.yaml index e5b05bfa..25d1ed3f 100644 --- a/.lighthouse/pipeline-rust-test.yaml +++ b/.lighthouse/pipeline-rust-test.yaml @@ -115,7 +115,7 @@ spec: [ --no-default-features, --features, - compare, + "compare,wasm_test", --no-fail-fast, --lib, --test, diff --git a/Makefile b/Makefile index 532d848e..cece6810 100644 --- a/Makefile +++ b/Makefile @@ -63,6 +63,11 @@ dockertest: > $(MAKE) -C docker/organic_test > docker run --init --rm -i -t --read-only -v "$$(readlink -f ./):/source:ro" --mount type=tmpfs,destination=/tmp --mount source=cargo-cache,target=/usr/local/cargo/registry --mount source=rust-cache,target=/target --env CARGO_TARGET_DIR=/target -w /source organic-test --no-default-features --features compare --no-fail-fast --lib --test test_loader -- --test-threads $(TESTJOBS) +.PHONY: dockerwasmtest +dockerwasmtest: +> $(MAKE) -C docker/organic_test +> docker run --init --rm -i -t --read-only -v "$$(readlink -f ./):/source:ro" --mount type=tmpfs,destination=/tmp --mount source=cargo-cache,target=/usr/local/cargo/registry --mount source=rust-cache,target=/target --env CARGO_TARGET_DIR=/target -w /source organic-test --no-default-features --features compare,wasm_test --no-fail-fast --lib --test test_loader autogen_wasm_ -- --test-threads $(TESTJOBS) + .PHONY: buildtest buildtest: > cargo build --no-default-features diff --git a/tests/test_template b/tests/test_template index e3d7375b..033f0085 100644 --- a/tests/test_template +++ b/tests/test_template @@ -60,3 +60,13 @@ async fn autogen_odd_{name}() -> Result<(), Box> {{ assert!(organic::compare::run_anonymous_compare_with_settings(org_contents.as_str(), &global_settings, false).await?); Ok(()) }} + +#[cfg(feature = "wasm_test")] +{expect_fail} +#[tokio::test] +async fn autogen_wasm_{name}() -> Result<(), Box> {{ + let org_path = "{path}"; + let org_contents = std::fs::read_to_string(org_path).expect("Read org file."); + assert!(organic::wasm_test::wasm_run_anonymous_compare(org_contents.as_str()).await?); + Ok(()) +}}