mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00

The sync scenarios script is broken, so i did the updates manually ``` $ ./scripts/sync_scenarios.sh Setting up a temporary environment... Using Python 3.12.1 interpreter at: /home/konsti/projects/uv/.venv/bin/python3 Creating virtualenv at: .venv Activate with: source .venv/bin/activate × No solution found when resolving dependencies: ╰─▶ Because docutils==0.21.post1 is unusable because the package metadata was inconsistent and you require docutils==0.21.post1, we can conclude that the requirements are unsatisfiable. hint: Metadata for docutils==0.21.post1 was inconsistent: Package metadata version `0.21` does not match given version `0.21.post1` ``` --------- Co-authored-by: Zanie Blue <contact@zanie.dev>
547 lines
20 KiB
Rust
547 lines
20 KiB
Rust
// The `unreachable_pub` is to silence false positives in RustRover.
|
|
#![allow(dead_code, unreachable_pub)]
|
|
|
|
use assert_cmd::assert::{Assert, OutputAssertExt};
|
|
use assert_cmd::Command;
|
|
use assert_fs::assert::PathAssert;
|
|
|
|
use assert_fs::fixture::PathChild;
|
|
use regex::Regex;
|
|
use std::borrow::BorrowMut;
|
|
use std::env;
|
|
use std::ffi::OsString;
|
|
use std::path::{Path, PathBuf};
|
|
use std::process::Output;
|
|
use std::str::FromStr;
|
|
use uv_interpreter::find_requested_python;
|
|
|
|
use uv_cache::Cache;
|
|
use uv_fs::Simplified;
|
|
use uv_toolchain::{toolchains_for_version, PythonVersion};
|
|
|
|
// Exclude any packages uploaded after this date.
|
|
pub static EXCLUDE_NEWER: &str = "2024-03-25T00:00:00Z";
|
|
|
|
/// Using a find links url allows using `--index-url` instead of `--extra-index-url` in tests
|
|
/// to prevent dependency confusion attacks against our test suite.
|
|
pub const BUILD_VENDOR_LINKS_URL: &str =
|
|
"https://raw.githubusercontent.com/astral-sh/packse/0.3.14/vendor/links.html";
|
|
|
|
#[doc(hidden)] // Macro and test context only, don't use directly.
|
|
pub const INSTA_FILTERS: &[(&str, &str)] = &[
|
|
(r"--cache-dir [^\s]+", "--cache-dir [CACHE_DIR]"),
|
|
// Operation times
|
|
(r"(\s|\()(\d+m )?(\d+\.)?\d+(ms|s)", "$1[TIME]"),
|
|
// File sizes
|
|
(r"(\s|\()(\d+\.)?\d+([KM]i)?B", "$1[SIZE]"),
|
|
// Rewrite Windows output to Unix output
|
|
(r"\\([\w\d])", "/$1"),
|
|
(r"uv.exe", "uv"),
|
|
// The exact message is host language dependent
|
|
(
|
|
r"Caused by: .* \(os error 2\)",
|
|
"Caused by: No such file or directory (os error 2)",
|
|
),
|
|
];
|
|
|
|
#[derive(Debug)]
|
|
pub struct TestContext {
|
|
pub temp_dir: assert_fs::TempDir,
|
|
pub cache_dir: assert_fs::TempDir,
|
|
pub venv: PathBuf,
|
|
pub python_version: String,
|
|
pub workspace_root: PathBuf,
|
|
|
|
// Standard filters for this test context
|
|
filters: Vec<(String, String)>,
|
|
}
|
|
|
|
impl TestContext {
|
|
pub fn new(python_version: &str) -> Self {
|
|
let temp_dir = assert_fs::TempDir::new().expect("Failed to create temp dir");
|
|
let cache_dir = assert_fs::TempDir::new().expect("Failed to create cache dir");
|
|
let venv = create_venv(&temp_dir, &cache_dir, python_version);
|
|
|
|
// The workspace root directory is not available without walking up the tree
|
|
// https://github.com/rust-lang/cargo/issues/3946
|
|
let workspace_root = Path::new(&std::env::var("CARGO_MANIFEST_DIR").unwrap())
|
|
.parent()
|
|
.expect("CARGO_MANIFEST_DIR should be nested in workspace")
|
|
.parent()
|
|
.expect("CARGO_MANIFEST_DIR should be doubly nested in workspace")
|
|
.to_path_buf();
|
|
|
|
let site_packages = site_packages_path(&venv, format!("python{python_version}"));
|
|
|
|
let python_version =
|
|
PythonVersion::from_str(python_version).expect("Tests must use valid Python versions");
|
|
|
|
let mut filters = Vec::new();
|
|
filters.extend(
|
|
Self::path_patterns(&cache_dir)
|
|
.into_iter()
|
|
.map(|pattern| (pattern, "[CACHE_DIR]/".to_string())),
|
|
);
|
|
filters.extend(
|
|
Self::path_patterns(&site_packages)
|
|
.into_iter()
|
|
.map(|pattern| (pattern, "[SITE_PACKAGES]/".to_string())),
|
|
);
|
|
filters.extend(
|
|
Self::path_patterns(&venv)
|
|
.into_iter()
|
|
.map(|pattern| (pattern, "[VENV]/".to_string())),
|
|
);
|
|
filters.extend(
|
|
Self::path_patterns(&temp_dir)
|
|
.into_iter()
|
|
.map(|pattern| (pattern, "[TEMP_DIR]/".to_string())),
|
|
);
|
|
filters.extend(
|
|
Self::path_patterns(&workspace_root)
|
|
.into_iter()
|
|
.map(|pattern| (pattern, "[WORKSPACE]/".to_string())),
|
|
);
|
|
|
|
// Account for [`Simplified::user_display`] which is relative to the command working directory
|
|
filters.push((
|
|
Self::path_pattern(
|
|
site_packages
|
|
.strip_prefix(&temp_dir)
|
|
.expect("The test site-packages directory is always in the tempdir"),
|
|
),
|
|
"[SITE_PACKAGES]/".to_string(),
|
|
));
|
|
filters.push((
|
|
Self::path_pattern(
|
|
venv.strip_prefix(&temp_dir)
|
|
.expect("The test virtual environment directory is always in the tempdir"),
|
|
),
|
|
"[VENV]/".to_string(),
|
|
));
|
|
|
|
// Filter non-deterministic temporary directory names
|
|
// Note we apply this _after_ all the full paths to avoid breaking their matching
|
|
filters.push((r"(\\|\/)\.tmp.*(\\|\/)".to_string(), "/[TMP]/".to_string()));
|
|
|
|
// Account for platform prefix differences `file://` (Unix) vs `file:///` (Windows)
|
|
filters.push((r"file:///".to_string(), "file://".to_string()));
|
|
|
|
// Destroy any remaining UNC prefixes (Windows only)
|
|
filters.push((r"\\\\\?\\".to_string(), String::new()));
|
|
|
|
// Add Python patch version filtering unless explicitly requested to ensure
|
|
// snapshots are patch version agnostic when it is not a part of the test.
|
|
if python_version.patch().is_none() {
|
|
filters.push((
|
|
format!(
|
|
r"({})\.\d+",
|
|
regex::escape(python_version.to_string().as_str())
|
|
),
|
|
"$1.[X]".to_string(),
|
|
));
|
|
}
|
|
|
|
Self {
|
|
temp_dir,
|
|
cache_dir,
|
|
venv,
|
|
python_version: python_version.to_string(),
|
|
filters,
|
|
workspace_root,
|
|
}
|
|
}
|
|
|
|
/// Set shared defaults between tests:
|
|
/// * Set the current directory to a temporary directory (`temp_dir`).
|
|
/// * Set the cache dir to a different temporary directory (`cache_dir`).
|
|
/// * Set a cutoff for versions used in the resolution so the snapshots don't change after a new release.
|
|
/// * Set the venv to a fresh `.venv` in `temp_dir`.
|
|
pub fn compile(&self) -> std::process::Command {
|
|
let mut command = self.compile_without_exclude_newer();
|
|
command.arg("--exclude-newer").arg(EXCLUDE_NEWER);
|
|
command
|
|
}
|
|
|
|
/// Create a `pip compile` command with no `--exclude-newer` option.
|
|
///
|
|
/// One should avoid using this in tests to the extent possible because
|
|
/// it can result in tests failing when the index state changes. Therefore,
|
|
/// if you use this, there should be some other kind of mitigation in place.
|
|
/// For example, pinning package versions.
|
|
pub fn compile_without_exclude_newer(&self) -> std::process::Command {
|
|
let mut cmd = std::process::Command::new(get_bin());
|
|
cmd.arg("pip")
|
|
.arg("compile")
|
|
.arg("--cache-dir")
|
|
.arg(self.cache_dir.path())
|
|
.env("VIRTUAL_ENV", self.venv.as_os_str())
|
|
.env("UV_NO_WRAP", "1")
|
|
.current_dir(self.temp_dir.path());
|
|
|
|
if cfg!(all(windows, debug_assertions)) {
|
|
// TODO(konstin): Reduce stack usage in debug mode enough that the tests pass with the
|
|
// default windows stack of 1MB
|
|
cmd.env("UV_STACK_SIZE", (8 * 1024 * 1024).to_string());
|
|
}
|
|
|
|
cmd
|
|
}
|
|
|
|
/// Create a `pip install` command with options shared across scenarios.
|
|
pub fn install(&self) -> std::process::Command {
|
|
let mut command = self.install_without_exclude_newer();
|
|
command.arg("--exclude-newer").arg(EXCLUDE_NEWER);
|
|
command
|
|
}
|
|
|
|
/// Create a `pip install` command with no `--exclude-newer` option.
|
|
///
|
|
/// One should avoid using this in tests to the extent possible because
|
|
/// it can result in tests failing when the index state changes. Therefore,
|
|
/// if you use this, there should be some other kind of mitigation in place.
|
|
/// For example, pinning package versions.
|
|
pub fn install_without_exclude_newer(&self) -> std::process::Command {
|
|
let mut command = std::process::Command::new(get_bin());
|
|
command
|
|
.arg("pip")
|
|
.arg("install")
|
|
.arg("--cache-dir")
|
|
.arg(self.cache_dir.path())
|
|
.env("VIRTUAL_ENV", self.venv.as_os_str())
|
|
.env("UV_NO_WRAP", "1")
|
|
.current_dir(&self.temp_dir);
|
|
|
|
if cfg!(all(windows, debug_assertions)) {
|
|
// TODO(konstin): Reduce stack usage in debug mode enough that the tests pass with the
|
|
// default windows stack of 1MB
|
|
command.env("UV_STACK_SIZE", (4 * 1024 * 1024).to_string());
|
|
}
|
|
|
|
command
|
|
}
|
|
|
|
/// Run the given python code and check whether it succeeds.
|
|
pub fn assert_command(&self, command: &str) -> Assert {
|
|
std::process::Command::new(venv_to_interpreter(&self.venv))
|
|
// Our tests change files in <1s, so we must disable CPython bytecode caching or we'll get stale files
|
|
// https://github.com/python/cpython/issues/75953
|
|
.arg("-B")
|
|
.arg("-c")
|
|
.arg(command)
|
|
.current_dir(&self.temp_dir)
|
|
.assert()
|
|
}
|
|
|
|
/// Assert a package is installed with the given version.
|
|
pub fn assert_installed(&self, package: &'static str, version: &'static str) {
|
|
self.assert_command(
|
|
format!("import {package} as package; print(package.__version__, end='')").as_str(),
|
|
)
|
|
.success()
|
|
.stdout(version);
|
|
}
|
|
|
|
/// Generate various escaped regex patterns for the given path.
|
|
fn path_patterns(path: impl AsRef<Path>) -> Vec<String> {
|
|
let mut patterns = Vec::new();
|
|
|
|
// We can only canonicalize paths that exist already
|
|
if path.as_ref().exists() {
|
|
patterns.push(Self::path_pattern(
|
|
path.as_ref()
|
|
.canonicalize()
|
|
.expect("Failed to create canonical path"),
|
|
));
|
|
}
|
|
|
|
// Include a non-canonicalized version
|
|
patterns.push(Self::path_pattern(path));
|
|
|
|
patterns
|
|
}
|
|
|
|
/// Generate an escaped regex pattern for the given path.
|
|
fn path_pattern(path: impl AsRef<Path>) -> String {
|
|
format!(
|
|
// Trim the trailing separator for cross-platform directories filters
|
|
r"{}\\?/?",
|
|
regex::escape(&path.as_ref().simplified_display().to_string())
|
|
// Make separators platform agnostic because on Windows we will display
|
|
// paths with Unix-style separators sometimes
|
|
.replace(r"\\", r"(\\|\/)")
|
|
)
|
|
}
|
|
|
|
/// Standard snapshot filters _plus_ those for this test context.
|
|
pub fn filters(&self) -> Vec<(&str, &str)> {
|
|
// Put test context snapshots before the default filters
|
|
// This ensures we don't replace other patterns inside paths from the test context first
|
|
self.filters
|
|
.iter()
|
|
.map(|(p, r)| (p.as_str(), r.as_str()))
|
|
.chain(INSTA_FILTERS.iter().copied())
|
|
.collect()
|
|
}
|
|
|
|
/// For when we add pypy to the test suite.
|
|
#[allow(clippy::unused_self)]
|
|
pub fn python_kind(&self) -> &str {
|
|
"python"
|
|
}
|
|
|
|
/// Returns the site-packages folder inside the venv.
|
|
pub fn site_packages(&self) -> PathBuf {
|
|
site_packages_path(
|
|
&self.venv,
|
|
format!("{}{}", self.python_kind(), self.python_version),
|
|
)
|
|
}
|
|
}
|
|
|
|
fn site_packages_path(venv: &Path, python: String) -> PathBuf {
|
|
if cfg!(unix) {
|
|
venv.join("lib").join(python).join("site-packages")
|
|
} else if cfg!(windows) {
|
|
venv.join("Lib").join("site-packages")
|
|
} else {
|
|
unimplemented!("Only Windows and Unix are supported")
|
|
}
|
|
}
|
|
|
|
pub fn venv_to_interpreter(venv: &Path) -> PathBuf {
|
|
if cfg!(unix) {
|
|
venv.join("bin").join("python")
|
|
} else if cfg!(windows) {
|
|
venv.join("Scripts").join("python.exe")
|
|
} else {
|
|
unimplemented!("Only Windows and Unix are supported")
|
|
}
|
|
}
|
|
|
|
/// Create a virtual environment named `.venv` in a temporary directory with the given
|
|
/// Python version. Expected format for `python` is "<version>".
|
|
pub fn create_venv<Parent: assert_fs::prelude::PathChild + AsRef<std::path::Path>>(
|
|
temp_dir: &Parent,
|
|
cache_dir: &assert_fs::TempDir,
|
|
python: &str,
|
|
) -> PathBuf {
|
|
let python = toolchains_for_version(
|
|
&PythonVersion::from_str(python).expect("Tests should use a valid Python version"),
|
|
)
|
|
.expect("Tests are run on a supported platform")
|
|
.first()
|
|
.map(uv_toolchain::Toolchain::executable)
|
|
// We'll search for the request Python on the PATH if not found in the toolchain versions
|
|
// We hack this into a `PathBuf` to satisfy the compiler but it's just a string
|
|
.unwrap_or(PathBuf::from(python));
|
|
|
|
let venv = temp_dir.child(".venv");
|
|
Command::new(get_bin())
|
|
.arg("venv")
|
|
.arg(venv.as_os_str())
|
|
.arg("--cache-dir")
|
|
.arg(cache_dir.path())
|
|
.arg("--python")
|
|
.arg(python)
|
|
.current_dir(temp_dir)
|
|
.assert()
|
|
.success();
|
|
venv.assert(predicates::path::is_dir());
|
|
venv.to_path_buf()
|
|
}
|
|
|
|
/// Returns the uv binary that cargo built before launching the tests.
|
|
///
|
|
/// <https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates>
|
|
pub fn get_bin() -> PathBuf {
|
|
PathBuf::from(env!("CARGO_BIN_EXE_uv"))
|
|
}
|
|
|
|
/// Create a `PATH` with the requested Python versions available in order.
|
|
///
|
|
/// Generally this should be used with `UV_TEST_PYTHON_PATH`.
|
|
pub fn python_path_with_versions(
|
|
temp_dir: &assert_fs::TempDir,
|
|
python_versions: &[&str],
|
|
) -> anyhow::Result<OsString> {
|
|
let cache = Cache::from_path(temp_dir.child("cache").to_path_buf())?;
|
|
let selected_pythons = python_versions
|
|
.iter()
|
|
.flat_map(|python_version| {
|
|
let inner = toolchains_for_version(
|
|
&PythonVersion::from_str(python_version)
|
|
.expect("Tests should use a valid Python version"),
|
|
)
|
|
.expect("Tests are run on a supported platform")
|
|
.iter()
|
|
.map(|toolchain| {
|
|
toolchain
|
|
.executable()
|
|
.parent()
|
|
.expect("Executables must exist in a directory")
|
|
.to_path_buf()
|
|
})
|
|
.collect::<Vec<_>>();
|
|
if inner.is_empty() {
|
|
// Fallback to a system lookup if we failed to find one in the toolchain directory
|
|
if let Some(interpreter) = find_requested_python(python_version, &cache).unwrap() {
|
|
vec![interpreter
|
|
.sys_executable()
|
|
.parent()
|
|
.expect("Python executable should always be in a directory")
|
|
.to_path_buf()]
|
|
} else {
|
|
panic!("Could not find Python {python_version} for test");
|
|
}
|
|
} else {
|
|
inner
|
|
}
|
|
})
|
|
.collect::<Vec<_>>();
|
|
|
|
Ok(env::join_paths(selected_pythons)?)
|
|
}
|
|
|
|
/// Execute the command and format its output status, stdout and stderr into a snapshot string.
|
|
///
|
|
/// This function is derived from `insta_cmd`s `spawn_with_info`.
|
|
pub fn run_and_format<T: AsRef<str>>(
|
|
mut command: impl BorrowMut<std::process::Command>,
|
|
filters: impl AsRef<[(T, T)]>,
|
|
function_name: &str,
|
|
windows_filters: bool,
|
|
) -> (String, Output) {
|
|
let program = command
|
|
.borrow_mut()
|
|
.get_program()
|
|
.to_string_lossy()
|
|
.to_string();
|
|
|
|
// Support profiling test run commands with traces.
|
|
if let Ok(root) = env::var("TRACING_DURATIONS_TEST_ROOT") {
|
|
assert!(
|
|
cfg!(feature = "tracing-durations-export"),
|
|
"You need to enable the tracing-durations-export feature to use `TRACING_DURATIONS_TEST_ROOT`"
|
|
);
|
|
command.borrow_mut().env(
|
|
"TRACING_DURATIONS_FILE",
|
|
Path::new(&root).join(function_name).with_extension("jsonl"),
|
|
);
|
|
}
|
|
|
|
let output = command
|
|
.borrow_mut()
|
|
.output()
|
|
.unwrap_or_else(|err| panic!("Failed to spawn {program}: {err}"));
|
|
|
|
let mut snapshot = format!(
|
|
"success: {:?}\nexit_code: {}\n----- stdout -----\n{}\n----- stderr -----\n{}",
|
|
output.status.success(),
|
|
output.status.code().unwrap_or(!0),
|
|
String::from_utf8_lossy(&output.stdout),
|
|
String::from_utf8_lossy(&output.stderr)
|
|
);
|
|
|
|
for (matcher, replacement) in filters.as_ref() {
|
|
// TODO(konstin): Cache regex compilation
|
|
let re = Regex::new(matcher.as_ref()).expect("Do you need to regex::escape your filter?");
|
|
if re.is_match(&snapshot) {
|
|
snapshot = re.replace_all(&snapshot, replacement.as_ref()).to_string();
|
|
}
|
|
}
|
|
|
|
// This is a heuristic filter meant to try and make *most* of our tests
|
|
// pass whether it's on Windows or Unix. In particular, there are some very
|
|
// common Windows-only dependencies that, when removed from a resolution,
|
|
// cause the set of dependencies to be the same across platforms.
|
|
if cfg!(windows) && windows_filters {
|
|
// The optional leading +/- is for install logs, the optional next line is for lock files
|
|
let windows_only_deps = [
|
|
("( [+-] )?colorama==\\d+(\\.[\\d+])+\n( # via .*\n)?"),
|
|
("( [+-] )?colorama==\\d+(\\.[\\d+])+\\s+(# via .*\n)?"),
|
|
("( [+-] )?tzdata==\\d+(\\.[\\d+])+\n( # via .*\n)?"),
|
|
("( [+-] )?tzdata==\\d+(\\.[\\d+])+\\s+(# via .*\n)?"),
|
|
];
|
|
let mut removed_packages = 0;
|
|
for windows_only_dep in windows_only_deps {
|
|
// TODO(konstin): Cache regex compilation
|
|
let re = Regex::new(windows_only_dep).unwrap();
|
|
if re.is_match(&snapshot) {
|
|
snapshot = re.replace(&snapshot, "").to_string();
|
|
removed_packages += 1;
|
|
}
|
|
}
|
|
if removed_packages > 0 {
|
|
for i in 1..20 {
|
|
snapshot = snapshot.replace(
|
|
&format!("{} packages", i + removed_packages),
|
|
&format!("{} package{}", i, if i > 1 { "s" } else { "" }),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
(snapshot, output)
|
|
}
|
|
|
|
/// Recursively copy a directory and its contents.
|
|
pub fn copy_dir_all(src: impl AsRef<Path>, dst: impl AsRef<Path>) -> std::io::Result<()> {
|
|
fs_err::create_dir_all(&dst)?;
|
|
for entry in fs_err::read_dir(src.as_ref())? {
|
|
let entry = entry?;
|
|
let ty = entry.file_type()?;
|
|
if ty.is_dir() {
|
|
copy_dir_all(entry.path(), dst.as_ref().join(entry.file_name()))?;
|
|
} else {
|
|
fs_err::copy(entry.path(), dst.as_ref().join(entry.file_name()))?;
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
/// Utility macro to return the name of the current function.
|
|
///
|
|
/// https://stackoverflow.com/a/40234666/3549270
|
|
#[doc(hidden)]
|
|
#[macro_export]
|
|
macro_rules! function_name {
|
|
() => {{
|
|
fn f() {}
|
|
fn type_name_of_val<T>(_: T) -> &'static str {
|
|
std::any::type_name::<T>()
|
|
}
|
|
let mut name = type_name_of_val(f).strip_suffix("::f").unwrap_or("");
|
|
while let Some(rest) = name.strip_suffix("::{{closure}}") {
|
|
name = rest;
|
|
}
|
|
name
|
|
}};
|
|
}
|
|
|
|
/// Run [`assert_cmd_snapshot!`], with default filters or with custom filters.
|
|
///
|
|
/// By default, the filters will search for the generally windows-only deps colorama and tzdata,
|
|
/// filter them out and decrease the package counts by one for each match.
|
|
#[allow(unused_macros)]
|
|
macro_rules! uv_snapshot {
|
|
($spawnable:expr, @$snapshot:literal) => {{
|
|
uv_snapshot!($crate::common::INSTA_FILTERS.to_vec(), $spawnable, @$snapshot)
|
|
}};
|
|
($filters:expr, $spawnable:expr, @$snapshot:literal) => {{
|
|
// Take a reference for backwards compatibility with the vec-expecting insta filters.
|
|
let (snapshot, output) = $crate::common::run_and_format($spawnable, &$filters, function_name!(), true);
|
|
::insta::assert_snapshot!(snapshot, @$snapshot);
|
|
output
|
|
}};
|
|
($filters:expr, windows_filters=false, $spawnable:expr, @$snapshot:literal) => {{
|
|
// Take a reference for backwards compatibility with the vec-expecting insta filters.
|
|
let (snapshot, output) = $crate::common::run_and_format($spawnable, &$filters, function_name!(), false);
|
|
::insta::assert_snapshot!(snapshot, @$snapshot);
|
|
output
|
|
}};
|
|
}
|
|
|
|
/// <https://stackoverflow.com/a/31749071/3549270>
|
|
#[allow(unused_imports)]
|
|
pub(crate) use uv_snapshot;
|