freenet 0.2.48

Freenet core software
Documentation
use std::{path::PathBuf, process::Command};

use crate::util::workspace::get_workspace_target_dir;
use tracing::info;

mod cache;
mod contract;
mod contract_metering;
mod execution_handling;
mod time;

pub(crate) fn get_test_module(name: &str) -> Result<Vec<u8>, Box<dyn std::error::Error>> {
    let module_path = {
        const CONTRACTS_DIR: &str = env!("CARGO_MANIFEST_DIR");
        let contracts = PathBuf::from(CONTRACTS_DIR);
        let mut dirs = contracts.ancestors();
        let path = dirs.nth(2).unwrap();
        path.join("tests").join(name.replace('_', "-"))
    };
    let target = get_workspace_target_dir();
    info!(
        "trying to compile the test contract, target: {}",
        target.display()
    );
    // attempt to compile it
    const RUST_TARGET_ARGS: &[&str] = &["build", "--target"];
    const WASM_TARGET: &str = "wasm32-unknown-unknown";
    let cmd_args = RUST_TARGET_ARGS
        .iter()
        .copied()
        .chain([WASM_TARGET])
        .collect::<Vec<_>>();
    let mut child = Command::new("cargo")
        .args(&cmd_args)
        .current_dir(&module_path)
        .env("CARGO_TARGET_DIR", &target)
        .spawn()?;
    let status = child.wait()?;
    if !status.success() {
        return Err(format!(
            "cargo build failed with {status} for module {name} at {}",
            module_path.display()
        )
        .into());
    }
    let output_file = target
        .join(WASM_TARGET)
        .join("debug")
        .join(name)
        .with_extension("wasm");
    info!("output file: {output_file:?}");
    Ok(std::fs::read(output_file)?)
}

pub(crate) struct TestSetup {
    #[allow(unused)]
    temp_dir: tempfile::TempDir,
    contract_store: super::ContractStore,
    delegate_store: super::DelegateStore,
    secrets_store: super::SecretsStore,
    contract_key: freenet_stdlib::prelude::ContractKey,
}

pub(crate) async fn setup_test_contract(
    name: &str,
) -> Result<TestSetup, Box<dyn std::error::Error>> {
    use std::sync::Arc;

    use freenet_stdlib::prelude::{
        ContractCode, ContractContainer, ContractWasmAPIVersion, WrappedContract,
    };

    use crate::contract::storages::Storage;
    use crate::util::tests::get_temp_dir;
    let temp_dir = get_temp_dir();

    let db = Storage::new(temp_dir.path()).await?;
    let mut contract_store =
        super::ContractStore::new(temp_dir.path().join("contract"), 10_000, db.clone())?;
    let delegate_store =
        super::DelegateStore::new(temp_dir.path().join("delegate"), 10_000, db.clone())?;
    let secrets_store =
        super::SecretsStore::new(temp_dir.path().join("secrets"), Default::default(), db)?;
    let contract_bytes = WrappedContract::new(
        Arc::new(ContractCode::from(get_test_module(name)?)),
        vec![].into(),
    );
    let contract = ContractContainer::Wasm(ContractWasmAPIVersion::V1(contract_bytes));
    let contract_key = contract.key();
    contract_store.store_contract(contract)?;
    Ok(TestSetup {
        temp_dir,
        contract_store,
        delegate_store,
        secrets_store,
        contract_key,
    })
}