#![allow(unused_imports)] /* * Quick Test: CLI for stress testing in competitive programming * Copyright (C) 2021-present / Luis Miguel Báez * License: MIT (See the LICENSE file in the repository root directory) */ use std::{error::Error, process::Command}; use assert_cmd::assert::OutputAssertExt; use predicates::prelude::predicate; use crate::util::{ test_command_handler::execute_command_cmp, test_constants::{ BINARY, CORRECT_FILE_CPP, FOLDER_CMP, GEN_FILE_CPP, RTE_CPP, TARGET_FILE_CPP, }, test_utilities::create_files_cmp, }; use super::codes::{CORRECT_CPP_CMP, GEN_CPP_CMP, TARGET_CPP_CMP}; // CHECK RTE in Subcommand cmp #[test] #[cfg(not(target_os = "macos"))] // TODO: Fix this test when possible fn cmd_cmp_target_rte_cpp() -> Result<(), Box> { create_files_cmp( TARGET_FILE_CPP, CORRECT_FILE_CPP, GEN_FILE_CPP, RTE_CPP, CORRECT_CPP_CMP, GEN_CPP_CMP, FOLDER_CMP, )?; let cases: usize = 10; let mut cmd = Command::new(BINARY); execute_command_cmp( &mut cmd, TARGET_FILE_CPP, CORRECT_FILE_CPP, GEN_FILE_CPP, cases, ); cmd.assert() .failure() .stdout(predicate::str::contains("[RTE]").count(cases)); Ok(()) } #[test] #[cfg(not(target_os = "macos"))] // TODO: Fix this test when possible fn cmd_cmp_correct_rte_cpp() -> Result<(), Box> { create_files_cmp( TARGET_FILE_CPP, CORRECT_FILE_CPP, GEN_FILE_CPP, TARGET_CPP_CMP, RTE_CPP, GEN_CPP_CMP, FOLDER_CMP, )?; let cases: usize = 10; let mut cmd = Command::new(BINARY); execute_command_cmp( &mut cmd, TARGET_FILE_CPP, CORRECT_FILE_CPP, GEN_FILE_CPP, cases, ); cmd.assert().failure().stderr(predicate::str::contains( "Error: QTEST_RUNTIME_ERROR\nInfo: caused by correct file exited by Runtime Error / label \n", )); Ok(()) } #[test] #[cfg(not(target_os = "macos"))] // TODO: Fix this test when possible fn cmd_cmp_gen_rte_cpp() -> Result<(), Box> { create_files_cmp( TARGET_FILE_CPP, CORRECT_FILE_CPP, GEN_FILE_CPP, TARGET_CPP_CMP, CORRECT_CPP_CMP, RTE_CPP, FOLDER_CMP, )?; let cases: usize = 10; let mut cmd = Command::new(BINARY); execute_command_cmp( &mut cmd, TARGET_FILE_CPP, CORRECT_FILE_CPP, GEN_FILE_CPP, cases, ); cmd.assert().failure().stderr(predicate::str::contains( "Error: QTEST_RUNTIME_ERROR\nInfo: caused by generator file exited by Runtime Error / label \n", )); Ok(()) }