add filesystem test

This commit is contained in:
Johannes Kirschbauer 2024-01-19 12:56:58 +01:00 committed by mergify[bot]
parent df26fb319f
commit bf07b8fb37
3 changed files with 94 additions and 41 deletions

View File

@ -20,7 +20,8 @@
else "dist";
};
/**
/*
*
A Convinient wrapper around sanitizeGraph
which allows to pass options such as { dev=false; }
@ -30,7 +31,8 @@
plent,
# The dependency 'graph'. See: sanitizeGraph
pdefs,
/**
/*
*
Drops dependencies including their subtree connection by filter attribute.
for example:
@ -46,8 +48,7 @@
Which will result in a prod only tree.
*/
filterTree ? {},
}:
let
}: let
root = {
name = plent.name;
version = plent.version;

View File

@ -35,6 +35,58 @@ in {
};
};
};
# Currently only "dist" packages
# can be used to populate node_modules
test_only_dist = let
graph = {
"a"."1" = {
dist = "<Source A Derivation>";
dependencies = {
b.version = "1";
};
dev = false;
bins = {
};
info = {
initialState = "source";
allPaths = {
"" = true;
};
};
};
"b"."1" = {
dist = "<B Derivation>";
dependencies = {};
dev = false;
bins = {
};
info = {
initialState = "dist";
allPaths = {
"node_modules/b" = true;
};
};
};
};
sanitizedGraph = utils.sanitizeGraph {
inherit graph;
root = {
name = "a";
version = "1";
};
};
fileSystem = utils.getFileSystem graph sanitizedGraph;
in {
expr = fileSystem;
expected = {
"node_modules/b" = {
bins = {};
source = "<B Derivation>";
};
};
};
test_cyclic_dependency = let
graph = {