1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
use anyhow::{Context, Result};
use std::path::Path;
use std::process::Command;
use tempfile::TempDir;
use crate::parser::ParsedTest;
/// Outcome of running a parsed `.test` against the `mozart` binary.
///
/// The temp directory is kept alive in this struct so callers can inspect
/// files written by the run; it is removed when `RunResult` is dropped.
pub struct RunResult {
pub working_dir: TempDir,
pub stdout: String,
pub stderr: String,
pub exit_code: i32,
pub final_lock: Option<String>,
pub final_installed: Option<String>,
}
/// Set up a temp project from the parsed test, invoke `mozart` with the
/// `--RUN--` command, and capture the result.
///
/// `--INSTALLED--` is written verbatim to `vendor/composer/installed.json`.
/// Composer's fixtures use the v1 plain-array shape (`[{...}]`), which
/// `FilesystemRepository::initialize` accepts alongside the v2 object shape;
/// Mozart's reader is expected to do the same. Do not pre-wrap here.
pub fn run_test(test: &ParsedTest, mozart_bin: &Path) -> Result<RunResult> {
let working_dir = TempDir::new().context("failed to create tempdir")?;
let root = working_dir.path();
std::fs::write(root.join("composer.json"), &test.composer)
.context("failed to write composer.json")?;
if let Some(lock) = &test.lock {
std::fs::write(root.join("composer.lock"), lock)
.context("failed to write composer.lock")?;
}
if let Some(installed) = &test.installed {
let vendor_composer = root.join("vendor").join("composer");
std::fs::create_dir_all(&vendor_composer)
.context("failed to create vendor/composer dir")?;
std::fs::write(vendor_composer.join("installed.json"), installed)
.context("failed to write installed.json")?;
}
let args: Vec<&str> = test.run.split_whitespace().collect();
// Force a non-routable proxy so any stray HTTP request from `mozart`
// (e.g. inline `package` fixtures whose dist.url points at example.org)
// fails fast instead of hitting the network. Composer's PHPUnit suite
// uses InstallationManagerMock; we can't mock the binary's HTTP client,
// but `reqwest` honors HTTP(S)_PROXY env vars by default.
let output = Command::new(mozart_bin)
.args(&args)
.current_dir(root)
.env("HTTP_PROXY", "http://127.0.0.1:1")
.env("HTTPS_PROXY", "http://127.0.0.1:1")
.env("NO_PROXY", "")
.output()
.with_context(|| format!("failed to invoke {}", mozart_bin.display()))?;
let final_lock = std::fs::read_to_string(root.join("composer.lock")).ok();
let final_installed =
std::fs::read_to_string(root.join("vendor").join("composer").join("installed.json")).ok();
Ok(RunResult {
working_dir,
stdout: String::from_utf8_lossy(&output.stdout).into_owned(),
stderr: String::from_utf8_lossy(&output.stderr).into_owned(),
exit_code: output.status.code().unwrap_or(-1),
final_lock,
final_installed,
})
}
|