2024-05-28 19:43:04 +03:00
#!/usr/bin/env bash
2006-03-01 14:15:33 +02:00
source common.sh
2006-02-22 16:02:44 +02:00
# Tests miscellaneous commands.
# Do all commands have help?
2021-12-09 17:26:46 +02:00
#nix-env --help | grepQuiet install
#nix-store --help | grepQuiet realise
#nix-instantiate --help | grepQuiet eval
#nix-hash --help | grepQuiet base32
2006-02-22 16:02:44 +02:00
2006-03-01 14:15:33 +02:00
# Can we ask for the version number?
2011-10-11 00:32:34 +03:00
nix-env --version | grep " $version "
2006-03-01 14:51:18 +02:00
2024-07-05 19:32:34 +03:00
nix_env = $( type -P nix-env)
( PATH = "" ; ! $nix_env --help 2>& 1 ) | grepQuiet -F "The 'man' command was not found, but it is needed for 'nix-env' and some other 'nix-*' commands' help text. Perhaps you could install the 'man' command?"
2006-03-01 14:51:18 +02:00
# Usage errors.
2021-12-09 17:26:46 +02:00
expect 1 nix-env --foo 2>& 1 | grep "no operation"
expect 1 nix-env -q --foo 2>& 1 | grep "unknown flag"
2015-07-31 18:32:25 +03:00
# Eval Errors.
2020-05-21 23:28:45 +03:00
eval_arg_res = $( nix-instantiate --eval -E 'let a = {} // a; in a.foo' 2>& 1 || true )
2021-01-21 01:55:59 +02:00
echo $eval_arg_res | grep "at «string»:1:15:"
2020-05-21 23:28:45 +03:00
echo $eval_arg_res | grep "infinite recursion encountered"
eval_stdin_res = $( echo 'let a = {} // a; in a.foo' | nix-instantiate --eval -E - 2>& 1 || true )
2021-01-21 01:55:59 +02:00
echo $eval_stdin_res | grep "at «stdin»:1:15:"
2020-05-21 23:28:45 +03:00
echo $eval_stdin_res | grep "infinite recursion encountered"
2015-09-04 23:23:08 +03:00
# Attribute path errors
expectStderr 1 nix-instantiate --eval -E '{}' -A '"x' | grepQuiet "missing closing quote in selection path"
expectStderr 1 nix-instantiate --eval -E '[]' -A 'x' | grepQuiet "should be a set"
expectStderr 1 nix-instantiate --eval -E '{}' -A '1' | grepQuiet "should be a list"
expectStderr 1 nix-instantiate --eval -E '{}' -A '.' | grepQuiet "empty attribute name"
expectStderr 1 nix-instantiate --eval -E '[]' -A '1' | grepQuiet "out of range"
2024-05-14 22:13:14 +03:00
# Unknown setting warning
# NOTE(cole-h): behavior is different depending on the order, which is why we test an unknown option
# before and after the `'{}'`!
out = " $( expectStderr 0 nix-instantiate --option foobar baz --expr '{}' ) "
[ [ " $( echo " $out " | grep foobar | wc -l) " = 1 ] ]
out = " $( expectStderr 0 nix-instantiate '{}' --option foobar baz --expr ) "
[ [ " $( echo " $out " | grep foobar | wc -l) " = 1 ] ]