Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
74 lines
1.3 KiB
Nix
74 lines
1.3 KiB
Nix
with builtins;
|
|
let
|
|
/*
|
|
underTest = {
|
|
x = {
|
|
a = 1;
|
|
b = "2";
|
|
};
|
|
};
|
|
|
|
tests = [
|
|
(root: false)
|
|
{
|
|
x = [
|
|
(set: true)
|
|
{
|
|
a = (a: a > 1);
|
|
b = (b: b == "3");
|
|
}
|
|
];
|
|
}
|
|
];
|
|
|
|
results = run "Examples" underTest tests;
|
|
*/
|
|
|
|
passed = desc: {
|
|
result = "pass";
|
|
description = desc;
|
|
};
|
|
|
|
failed = desc: {
|
|
result = "failed";
|
|
description = desc;
|
|
};
|
|
|
|
prefixName = name: res: {
|
|
inherit (res) result;
|
|
description = "${name}: ${res.description}";
|
|
};
|
|
|
|
run =
|
|
name: under: tests:
|
|
if isList tests then
|
|
(concatLists (map (run name under) tests))
|
|
else if isAttrs tests then
|
|
(concatLists (
|
|
map (
|
|
subName:
|
|
run (name + "." + subName) (if hasAttr subName under then getAttr subName under else "<MISSING!>") (
|
|
getAttr subName tests
|
|
)
|
|
) (attrNames tests)
|
|
))
|
|
else if isFunction tests then
|
|
let
|
|
res = tests under;
|
|
in
|
|
if isBool res then
|
|
[
|
|
(prefixName name (if tests under then passed "passed" else failed "failed"))
|
|
]
|
|
else
|
|
[ (prefixName name res) ]
|
|
else
|
|
[
|
|
failed
|
|
(name ": not a function, list or set")
|
|
];
|
|
in
|
|
{
|
|
inherit run passed failed;
|
|
}
|