33926ed1e7
Add a :log command that shows logs for a derivation. Closes https://github.com/NixOS/nix/issues/3504 Co-authored-by: Taeer Bar-Yam <taeer@bar-yam.me>
34 lines
937 B
Bash
34 lines
937 B
Bash
source common.sh
|
|
|
|
replCmds="
|
|
simple = import ./simple.nix
|
|
:b simple
|
|
:log simple
|
|
"
|
|
|
|
replFailingCmds="
|
|
failing = import ./simple-failing.nix
|
|
:b failing
|
|
:log failing
|
|
"
|
|
|
|
testRepl () {
|
|
local nixArgs=("$@")
|
|
local replOutput="$(nix repl "${nixArgs[@]}" <<< "$replCmds")"
|
|
echo "$replOutput"
|
|
local outPath=$(echo "$replOutput" |&
|
|
grep -o -E "$NIX_STORE_DIR/\w*-simple")
|
|
nix path-info "${nixArgs[@]}" "$outPath"
|
|
# simple.nix prints a PATH during build
|
|
echo "$replOutput" | grep -qs 'PATH=' || fail "nix repl :log doesn't output logs"
|
|
local replOutput="$(nix repl "${nixArgs[@]}" <<< "$replFailingCmds")"
|
|
echo "$replOutput"
|
|
echo "$replOutput" | grep -qs 'This should fail' \
|
|
|| fail "nix repl :log doesn't output logs for a failed derivation"
|
|
}
|
|
|
|
# Simple test, try building a drv
|
|
testRepl
|
|
# Same thing (kind-of), but with a remote store.
|
|
testRepl --store "$TEST_ROOT/store?real=$NIX_STORE_DIR"
|