//! ref: composer/tests/Composer/Test/Util/ProcessExecutorTest.php // These run real subprocesses (capturing output/stderr/timeout) and assert ProcessExecutor's // password hiding, line splitting and argument escaping; the subprocess execution and mocked // IO are not ported. #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_execute_captures_output() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_execute_outputs_if_not_captured() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_use_io_is_not_null_and_if_not_captured() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_execute_captures_stderr() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_timeout() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_hide_passwords() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_doesnt_hide_ports() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_split_lines() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_console_io_does_not_format_symfony_console_style() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_execute_async_cancel() { todo!() } #[test] #[ignore = "not yet ported (runs subprocesses / mocks IO; argument-escaping and split helpers included)"] fn test_escape_argument() { todo!() }