mirror of
https://github.com/astral-sh/uv.git
synced 2025-09-06 18:50:36 +00:00

## Summary These were moved as part of a broader refactor to create a single integration test module. That "single integration test module" did indeed have a big impact on compile times, which is great! But we aren't seeing any benefit from moving these tests into their own files (despite the claim in [this blog post](https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html), I see the same compilation pattern regardless of where the tests are located). Plus, we don't have many of these, and same-file tests is such a strong Rust convention.
123 lines
3.7 KiB
Rust
123 lines
3.7 KiB
Rust
//! Generate the environment variables reference from `uv_static::EnvVars`.
|
|
|
|
use anyhow::bail;
|
|
use pretty_assertions::StrComparison;
|
|
use std::collections::BTreeSet;
|
|
use std::path::PathBuf;
|
|
|
|
use uv_static::EnvVars;
|
|
|
|
use crate::generate_all::Mode;
|
|
use crate::ROOT_DIR;
|
|
|
|
#[derive(clap::Args)]
|
|
pub(crate) struct Args {
|
|
#[arg(long, default_value_t, value_enum)]
|
|
pub(crate) mode: Mode,
|
|
}
|
|
|
|
pub(crate) fn main(args: &Args) -> anyhow::Result<()> {
|
|
let reference_string = generate();
|
|
let filename = "environment.md";
|
|
let reference_path = PathBuf::from(ROOT_DIR)
|
|
.join("docs")
|
|
.join("configuration")
|
|
.join(filename);
|
|
|
|
match args.mode {
|
|
Mode::DryRun => {
|
|
anstream::println!("{reference_string}");
|
|
}
|
|
Mode::Check => match fs_err::read_to_string(reference_path) {
|
|
Ok(current) => {
|
|
if current == reference_string {
|
|
anstream::println!("Up-to-date: {filename}");
|
|
} else {
|
|
let comparison = StrComparison::new(¤t, &reference_string);
|
|
bail!("{filename} changed, please run `cargo dev generate-env-vars-reference`:\n{comparison}");
|
|
}
|
|
}
|
|
Err(err) if err.kind() == std::io::ErrorKind::NotFound => {
|
|
bail!("{filename} not found, please run `cargo dev generate-env-vars-reference`");
|
|
}
|
|
Err(err) => {
|
|
bail!(
|
|
"{filename} changed, please run `cargo dev generate-env-vars-reference`:\n{err}"
|
|
);
|
|
}
|
|
},
|
|
Mode::Write => match fs_err::read_to_string(&reference_path) {
|
|
Ok(current) => {
|
|
if current == reference_string {
|
|
anstream::println!("Up-to-date: {filename}");
|
|
} else {
|
|
anstream::println!("Updating: {filename}");
|
|
fs_err::write(reference_path, reference_string.as_bytes())?;
|
|
}
|
|
}
|
|
Err(err) if err.kind() == std::io::ErrorKind::NotFound => {
|
|
anstream::println!("Updating: {filename}");
|
|
fs_err::write(reference_path, reference_string.as_bytes())?;
|
|
}
|
|
Err(err) => {
|
|
bail!("{filename} changed, please run `cargo dev generate-env-vars-reference`:\n{err}");
|
|
}
|
|
},
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn generate() -> String {
|
|
let mut output = String::new();
|
|
|
|
output.push_str("# Environment variables\n\n");
|
|
|
|
// Partition and sort environment variables into UV_ and external variables.
|
|
let (uv_vars, external_vars): (BTreeSet<_>, BTreeSet<_>) = EnvVars::metadata()
|
|
.iter()
|
|
.partition(|(var, _)| var.starts_with("UV_"));
|
|
|
|
output.push_str("uv defines and respects the following environment variables:\n\n");
|
|
|
|
for (var, doc) in uv_vars {
|
|
output.push_str(&render(var, doc));
|
|
}
|
|
|
|
output.push_str("\n\n## Externally defined variables\n\n");
|
|
output.push_str("uv also reads the following externally defined environment variables:\n\n");
|
|
|
|
for (var, doc) in external_vars {
|
|
output.push_str(&render(var, doc));
|
|
}
|
|
|
|
output
|
|
}
|
|
|
|
/// Render an environment variable and its documentation.
|
|
fn render(var: &str, doc: &str) -> String {
|
|
format!("### `{var}`\n\n{doc}\n\n")
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use std::env;
|
|
|
|
use anyhow::Result;
|
|
|
|
use uv_static::EnvVars;
|
|
|
|
use crate::generate_all::Mode;
|
|
|
|
use super::{main, Args};
|
|
|
|
#[test]
|
|
fn test_generate_env_vars_reference() -> Result<()> {
|
|
let mode = if env::var(EnvVars::UV_UPDATE_SCHEMA).as_deref() == Ok("1") {
|
|
Mode::Write
|
|
} else {
|
|
Mode::Check
|
|
};
|
|
main(&Args { mode })
|
|
}
|
|
}
|