Skip to content

Commit 53343bc

Browse files
committed
Use CARGO_TARGET_TMPDIR in integration tests if available
1 parent 64bfe7f commit 53343bc

File tree

3 files changed

+50
-25
lines changed

3 files changed

+50
-25
lines changed

crates/cargo-test-macro/src/lib.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,12 @@ pub fn cargo_test(attr: TokenStream, item: TokenStream) -> TokenStream {
3131
}
3232
};
3333

34-
let mut new_body =
35-
to_token_stream("let _test_guard = cargo_test_support::paths::init_root();");
34+
let mut new_body = to_token_stream(
35+
r#"let _test_guard = {
36+
let tmp_dir = option_env!("CARGO_TARGET_TMPDIR");
37+
cargo_test_support::paths::init_root(tmp_dir)
38+
};"#,
39+
);
3640

3741
// If this is a `build_std` test (aka `tests/build-std/*.rs`) then they
3842
// only run on nightly and they only run when specifically instructed to

crates/cargo-test-support/src/git.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,12 @@ pub fn init(path: &Path) -> git2::Repository {
132132
}
133133

134134
fn default_search_path() {
135-
use crate::paths::GLOBAL_ROOT;
135+
use crate::paths::global_root;
136136
use git2::{opts::set_search_path, ConfigLevel};
137+
137138
static INIT: Once = Once::new();
138139
INIT.call_once(|| unsafe {
139-
let path = GLOBAL_ROOT.join("blank_git_search_path");
140+
let path = global_root().join("blank_git_search_path");
140141
t!(set_search_path(ConfigLevel::System, &path));
141142
t!(set_search_path(ConfigLevel::Global, &path));
142143
t!(set_search_path(ConfigLevel::XDG, &path));

crates/cargo-test-support/src/paths.rs

+41-21
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,44 @@ use std::sync::Mutex;
1414
static CARGO_INTEGRATION_TEST_DIR: &str = "cit";
1515

1616
lazy_static! {
17-
pub static ref GLOBAL_ROOT: PathBuf = {
18-
let mut path = t!(env::current_exe());
19-
path.pop(); // chop off exe name
20-
path.pop(); // chop off 'debug'
21-
22-
// If `cargo test` is run manually then our path looks like
23-
// `target/debug/foo`, in which case our `path` is already pointing at
24-
// `target`. If, however, `cargo test --target $target` is used then the
25-
// output is `target/$target/debug/foo`, so our path is pointing at
26-
// `target/$target`. Here we conditionally pop the `$target` name.
27-
if path.file_name().and_then(|s| s.to_str()) != Some("target") {
28-
path.pop();
29-
}
30-
31-
path.push(CARGO_INTEGRATION_TEST_DIR);
32-
path.mkdir_p();
33-
path
34-
};
17+
// TODO: Use `SyncOnceCell` when stable
18+
static ref GLOBAL_ROOT: Mutex<Option<PathBuf>> = Mutex::new(None);
3519

3620
static ref TEST_ROOTS: Mutex<HashMap<String, PathBuf>> = Default::default();
3721
}
3822

23+
/// This is used when running cargo is pre-CARGO_TARGET_TMPDIR
24+
/// TODO: Remove when CARGO_TARGET_TMPDIR grows old enough.
25+
fn global_root_legacy() -> PathBuf {
26+
let mut path = t!(env::current_exe());
27+
path.pop(); // chop off exe name
28+
path.pop(); // chop off "deps"
29+
path.push("tmp");
30+
path.mkdir_p();
31+
path
32+
}
33+
34+
fn set_global_root(tmp_dir: Option<&'static str>) {
35+
let mut lock = GLOBAL_ROOT.lock().unwrap();
36+
if lock.is_none() {
37+
let mut root = match tmp_dir {
38+
Some(tmp_dir) => PathBuf::from(tmp_dir),
39+
None => global_root_legacy(),
40+
};
41+
42+
root.push(CARGO_INTEGRATION_TEST_DIR);
43+
*lock = Some(root);
44+
}
45+
}
46+
47+
pub fn global_root() -> PathBuf {
48+
let lock = GLOBAL_ROOT.lock().unwrap();
49+
match lock.as_ref() {
50+
Some(p) => p.clone(),
51+
None => unreachable!("GLOBAL_ROOT not set yet"),
52+
}
53+
}
54+
3955
// We need to give each test a unique id. The test name could serve this
4056
// purpose, but the `test` crate doesn't have a way to obtain the current test
4157
// name.[*] Instead, we used the `cargo-test-macro` crate to automatically
@@ -52,14 +68,15 @@ pub struct TestIdGuard {
5268
_private: (),
5369
}
5470

55-
pub fn init_root() -> TestIdGuard {
71+
pub fn init_root(tmp_dir: Option<&'static str>) -> TestIdGuard {
5672
static NEXT_ID: AtomicUsize = AtomicUsize::new(0);
5773

58-
let id = NEXT_ID.fetch_add(1, Ordering::Relaxed);
74+
let id = NEXT_ID.fetch_add(1, Ordering::SeqCst);
5975
TEST_ID.with(|n| *n.borrow_mut() = Some(id));
6076

6177
let guard = TestIdGuard { _private: () };
6278

79+
set_global_root(tmp_dir);
6380
let r = root();
6481
r.rm_rf();
6582
r.mkdir_p();
@@ -80,7 +97,10 @@ pub fn root() -> PathBuf {
8097
order to be able to use the crate root.",
8198
)
8299
});
83-
GLOBAL_ROOT.join(&format!("t{}", id))
100+
101+
let mut root = global_root();
102+
root.push(&format!("t{}", id));
103+
root
84104
}
85105

86106
pub fn home() -> PathBuf {

0 commit comments

Comments
 (0)