From f8d6d04b031a87c56d640fe5a740dd7bbdb7d0ad Mon Sep 17 00:00:00 2001 From: librelois <c@elo.tf> Date: Sun, 22 May 2022 19:21:17 +0200 Subject: [PATCH] fix(cucumber): adapt features path for docker case --- end2end-tests/tests/cucumber_tests.rs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/end2end-tests/tests/cucumber_tests.rs b/end2end-tests/tests/cucumber_tests.rs index f03f7b662..ffe54030a 100644 --- a/end2end-tests/tests/cucumber_tests.rs +++ b/end2end-tests/tests/cucumber_tests.rs @@ -214,10 +214,21 @@ struct CustomOpts { keep_running: bool, } +const DOCKER_FEATURES_PATH: &str = "/var/lib/duniter/cucumber-features"; +const LOCAL_FEATURES_PATH: &str = "cucumber-features"; + #[tokio::main(flavor = "current_thread")] async fn main() { //env_logger::init(); + let features_path = if std::path::Path::new(DOCKER_FEATURES_PATH).exists() { + DOCKER_FEATURES_PATH + } else if std::path::Path::new(LOCAL_FEATURES_PATH).exists() { + LOCAL_FEATURES_PATH + } else { + panic!("cucumber-features folder not found"); + }; + let opts = cucumber::cli::Opts::<_, _, _, CustomOpts>::parsed(); let keep_running = opts.custom.keep_running; @@ -252,7 +263,7 @@ async fn main() { Box::pin(std::future::ready(())) }) .with_cli(opts) - .run_and_exit("cucumber-features") + .run_and_exit(features_path) .await; } -- GitLab