-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run conformance tests #2542
Run conformance tests #2542
Conversation
Signed-off-by: Ryan Levick <[email protected]>
Signed-off-by: Ryan Levick <[email protected]>
Signed-off-by: Ryan Levick <[email protected]>
Signed-off-by: Ryan Levick <[email protected]>
Signed-off-by: Ryan Levick <[email protected]>
Signed-off-by: Ryan Levick <[email protected]>
Signed-off-by: Ryan Levick <[email protected]>
tests/conformance-tests/src/main.rs
Outdated
let env_config = SpinCli::config( | ||
spin_binary.clone(), | ||
[], | ||
move |e| { | ||
e.copy_into(&test.manifest, "spin.toml")?; | ||
e.copy_into(&test.component, test.component.file_name().unwrap())?; | ||
Ok(()) | ||
}, | ||
test_environment::services::ServicesConfig::none(), | ||
testing_framework::runtimes::SpinAppType::Http, | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe its just because I'm looking at this without the help of a IDE, but its a bit hard to understand what some of these args mean ([]
, the closure). Could/should this be a struct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've refactored the []
into a struct along wiht the spin_binary
and SpinAppType
since all of these have to do with how Spin is run. Giving a name to the closure has a less clear solution but hopefully with less args that's less of a problem 🤷 ?
services_config, | ||
create_runtime: Box::new(move |env| { | ||
preboot(env)?; | ||
SpinCli::start(&spin_binary, env, spin_up_args, app_type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
...yeah, like that 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great to have all the services moved out of Spin into conformance-testing.
Signed-off-by: Ryan Levick <[email protected]>
Signed-off-by: Ryan Levick <[email protected]>
I've started creating a conformance testing suite in https://github.com/fermyon/conformance-tests. You can read more about the aim of the project in the README of the repo. In short, we are trying to create a set of tests that all Spin compliant runtimes are expected to pass.
We're currently not running these yet in CI, but that will come soon in a follow up.
cc @kate-goldenring for visibility