diff options
author | Aspen Smith <root@gws.fyi> | 2024-02-19T15·17-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-02-19T16·51+0000 |
commit | 0db46dacea88bc15f06d586bee7acf2f50645f0a (patch) | |
tree | 696e6cb26777f9af85f539d5f231c408c940f222 /tvix/glue/src/tests | |
parent | b1474529480fc9c36dedaca8ba640c11c64ad3ab (diff) |
feat(tvix/glue): Init fetcher builtins r/7557
Initialize a new empty builtins module `fetcher_builtins`, which will contain the builtins which fetch URLs from the internet: * fetchurl * fetchGit * fetchTarball * fetchTree (maybe? this is experimental) These builtins are all implemented in CPP nix at: https://github.com/NixOS/nix/blob/2.20.2/src/libexpr/primops/fetchTree.cc These builtins are added to the evaluation context using a similar mechanism to the derivation builtins, and have been added everywhere derivation builtins were previously being added. Change-Id: I133b91cc9560f23028621414537f712e7bd8a825 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10974 Autosubmit: aspen <root@gws.fyi> Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/glue/src/tests')
-rw-r--r-- | tvix/glue/src/tests/mod.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tvix/glue/src/tests/mod.rs b/tvix/glue/src/tests/mod.rs index ddc139158049..ad6571e4d212 100644 --- a/tvix/glue/src/tests/mod.rs +++ b/tvix/glue/src/tests/mod.rs @@ -12,7 +12,10 @@ use tvix_store::pathinfoservice::{MemoryPathInfoService, PathInfoService}; use rstest::rstest; -use crate::{builtins::add_derivation_builtins, tvix_store_io::TvixStoreIO}; +use crate::{ + builtins::{add_derivation_builtins, add_fetcher_builtins}, + tvix_store_io::TvixStoreIO, +}; fn eval_test(code_path: PathBuf, expect_success: bool) { assert_eq!( @@ -51,6 +54,7 @@ fn eval_test(code_path: PathBuf, expect_success: bool) { eval.strict = true; add_derivation_builtins(&mut eval, tvix_store_io.clone()); + add_fetcher_builtins(&mut eval, tvix_store_io); let result = eval.evaluate(code, Some(code_path.clone())); let failed = match result.value { |