2022-12-05 17:47:13 +00:00
|
|
|
use harmonic::InstallPlan;
|
|
|
|
|
|
|
|
const LINUX_MULTI: &str = include_str!("./fixtures/linux/linux-multi.json");
|
|
|
|
const STEAM_DECK: &str = include_str!("./fixtures/linux/steam-deck.json");
|
|
|
|
const DARWIN_MULTI: &str = include_str!("./fixtures/darwin/darwin-multi.json");
|
|
|
|
|
|
|
|
// Ensure existing plans still parse
|
2022-12-07 16:22:24 +00:00
|
|
|
// If this breaks and you need to update the fixture, disable these tests, bump harmonic to a new version, and update the plans.
|
2022-12-05 17:47:13 +00:00
|
|
|
#[test]
|
|
|
|
fn plan_compat_linux_multi() -> eyre::Result<()> {
|
|
|
|
let _: InstallPlan = serde_json::from_str(LINUX_MULTI)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure existing plans still parse
|
2022-12-07 16:22:24 +00:00
|
|
|
// If this breaks and you need to update the fixture, disable these tests, bump harmonic to a new version, and update the plans.
|
2022-12-05 17:47:13 +00:00
|
|
|
#[test]
|
|
|
|
fn plan_compat_steam_deck() -> eyre::Result<()> {
|
|
|
|
let _: InstallPlan = serde_json::from_str(STEAM_DECK)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure existing plans still parse
|
2022-12-07 16:22:24 +00:00
|
|
|
// If this breaks and you need to update the fixture, disable these tests, bump harmonic to a new version, and update the plans.
|
2022-12-05 17:47:13 +00:00
|
|
|
#[test]
|
|
|
|
fn plan_compat_darwin_multi() -> eyre::Result<()> {
|
|
|
|
let _: InstallPlan = serde_json::from_str(DARWIN_MULTI)?;
|
|
|
|
Ok(())
|
|
|
|
}
|