leo-lang 4.3.4

The Leo programming language
Documentation
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Leo library.

// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.

use std::{
    env,
    fs::{self, File},
    io::{BufRead, BufReader},
    path::{Path, PathBuf},
};

use walkdir::WalkDir;

// The following directories will be excluded from the license scan.
const DIRS_TO_SKIP: [&str; 9] =
    [".cargo", ".circleci", ".git", ".github", ".resources", "docs", "examples", "target", "tests"];

fn compare_license_text(path: &Path, expected_lines: &[&str]) {
    let file = File::open(path).unwrap();
    let reader = BufReader::new(file);

    for (i, (file_line, expected_line)) in reader.lines().zip(expected_lines).enumerate() {
        let file_line =
            file_line.unwrap_or_else(|_| panic!("Can't read line {} in file \"{}\"!", i + 1, path.display()));
        assert_eq!(
            &file_line,
            expected_line,
            "Line {} in file \"{}\" was expected to contain the license text \"{}\", but contains \"{}\" instead! \
            Consult the expected license text in \".resources/license_header\"",
            i + 1,
            path.display(),
            expected_line,
            file_line
        );
    }
}

fn check_file_licenses<P: AsRef<Path>>(path: P) {
    // The following license text that should be present at the beginning of every source file.
    let expected_license_text = match std::fs::read_to_string("../../.resources/license_header") {
        Ok(s) => s,
        Err(_) => return, // silently skip in published builds
    };

    let path = path.as_ref();
    let license_lines: Vec<_> = expected_license_text.lines().collect();

    let mut iter = WalkDir::new(path).into_iter();
    while let Some(entry) = iter.next() {
        let entry = entry.unwrap();
        let entry_type = entry.file_type();

        // Skip the specified directories.
        if entry_type.is_dir() && DIRS_TO_SKIP.contains(&entry.file_name().to_str().unwrap_or("")) {
            iter.skip_current_dir();

            continue;
        }

        // Check all files with the ".rs" extension.
        if entry_type.is_file() && entry.file_name().to_str().unwrap_or("").ends_with(".rs") {
            compare_license_text(entry.path(), &license_lines);
        }
    }

    // Watch the directories that contain Rust source files
    println!("cargo:rerun-if-changed=../../crates");

    // Watch the build script itself
    println!("cargo:rerun-if-changed=build.rs");

    // Watch the license header file
    println!("cargo:rerun-if-changed=../../.resources/license_header");

    // Watch the Cargo.toml file
    println!("cargo:rerun-if-changed=Cargo.toml");

    // Watch the Cargo.lock file
    println!("cargo:rerun-if-changed=../../Cargo.lock");
}

/// Generates one Rust `#[test]` per CLI integration test directory.
///
/// Scans `tests/tests/cli` and emits corresponding test functions that invoke
/// `run_single_cli_test` for each case. The generated tests are written to
/// `$OUT_DIR/cli_tests.rs` and included at compile time via `include!`.
///
/// This enables fine-grained test filtering, clearer failure reporting, and
/// per-test execution for CLI integration tests.
fn generate_cli_tests() {
    let manifest_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
    let workspace_root = manifest_dir.join("../..");
    let tests_dir = workspace_root.join("tests/tests/cli");

    if !tests_dir.exists() {
        // Not in workspace (e.g. crates.io build)
        return;
    }

    println!("cargo:rerun-if-changed={}", tests_dir.display());

    let mut out = String::from("use serial_test::serial;\n");

    let entries = match fs::read_dir(&tests_dir) {
        Ok(e) => e,
        Err(_) => return,
    };

    for entry in entries {
        let Ok(entry) = entry else { continue };
        let path = entry.path();

        if !path.is_dir() {
            continue;
        }

        let name = path.file_name().unwrap().to_string_lossy();
        let fn_name = format!("cli_{}", name.replace('-', "_"));

        out.push_str(&format!(
            r#"
#[test]
#[serial]
fn {fn_name}() {{
    crate::run_single_cli_test(
        std::path::Path::new(r"{path}")
    );
}}
"#,
            fn_name = fn_name,
            path = path.display(),
        ));
    }

    let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
    let _ = fs::write(out_dir.join("cli_tests.rs"), out);
}

/// Captures git metadata and emits a composite version string as a cargo env var.
///
/// Emits:
/// - `LEO_VERSION_STRING`: full version string for `--version` output and panic hook
fn set_version_env_vars() {
    // Re-run if HEAD changes (new commit or branch switch).
    println!("cargo:rerun-if-changed=../../.git/HEAD");

    let git_cmd = |args: &[&str]| -> String {
        std::process::Command::new("git")
            .args(args)
            .output()
            .ok()
            .filter(|o| o.status.success())
            .map(|o| String::from_utf8_lossy(&o.stdout).trim().to_string())
            .unwrap_or_else(|| "unknown".to_string())
    };

    let hash = git_cmd(&["rev-parse", "--short", "HEAD"]);
    let branch = git_cmd(&["rev-parse", "--abbrev-ref", "HEAD"]);

    // Collect enabled cargo features (cargo sets CARGO_FEATURE_<NAME>=1).
    let mut features: Vec<String> = env::vars()
        .filter_map(|(k, _)| k.strip_prefix("CARGO_FEATURE_").map(|f| f.to_lowercase()))
        .filter(|f| f != "default")
        .collect();
    features.sort();

    let version = env::var("CARGO_PKG_VERSION").unwrap();
    let features_str = features.join(",");

    println!("cargo:rustc-env=LEO_VERSION_STRING={version} ({hash} {branch}) features=[{features_str}]");
}

// The build script; it currently:
// 1. Auto-generate e2e CLI tests as individual Rust unit tests (i.e. `[test]`).
// 2. Checks the licenses.
// 3. Captures git metadata for detailed version output.
fn main() {
    generate_cli_tests();
    set_version_env_vars();

    // Check licenses at the workspace root.
    let manifest_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
    let workspace_root = manifest_dir.join("../..");
    check_file_licenses(&workspace_root);
}