2020-02-08 05:10:55 +08:00
|
|
|
#RUN: %fish %s
|
2017-01-10 14:49:33 +08:00
|
|
|
# Test the `functions` builtin
|
|
|
|
|
|
|
|
function f1
|
|
|
|
end
|
|
|
|
|
|
|
|
# ==========
|
2017-05-01 10:53:13 +08:00
|
|
|
# Verify that `functions --details` works as expected when given too many args.
|
2021-11-04 13:52:17 +08:00
|
|
|
functions --details f1 f2
|
|
|
|
#CHECKERR: functions: --details: expected 1 arguments; got 2
|
2017-01-10 14:49:33 +08:00
|
|
|
|
|
|
|
# ==========
|
2017-05-01 10:53:13 +08:00
|
|
|
# Verify that `functions --details` works as expected when given the name of a
|
2017-01-10 14:49:33 +08:00
|
|
|
# known function.
|
2020-02-08 05:10:55 +08:00
|
|
|
functions --details f1
|
|
|
|
#CHECK: {{.*}}checks/functions.fish
|
2017-01-10 14:49:33 +08:00
|
|
|
|
|
|
|
# ==========
|
2017-05-01 10:53:13 +08:00
|
|
|
# Verify that `functions --details` works as expected when given the name of an
|
2017-01-10 14:49:33 +08:00
|
|
|
# unknown function.
|
2021-11-04 13:52:17 +08:00
|
|
|
functions -D f2
|
|
|
|
#CHECK: n/a
|
2017-01-10 14:49:33 +08:00
|
|
|
|
|
|
|
# ==========
|
2017-05-01 10:53:13 +08:00
|
|
|
# Verify that `functions --details` works as expected when given the name of a
|
2017-01-10 14:49:33 +08:00
|
|
|
# function that could be autoloaded but isn't currently loaded.
|
2022-04-04 03:37:29 +08:00
|
|
|
set x (functions -D vared)
|
2017-01-10 14:49:33 +08:00
|
|
|
if test (count $x) -ne 1
|
2022-04-04 03:37:29 +08:00
|
|
|
or not string match -q '*/share/functions/vared.fish' "$x"
|
|
|
|
echo "Unexpected output for 'functions -D vared': $x" >&2
|
2017-01-10 14:49:33 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# ==========
|
2017-05-01 10:53:13 +08:00
|
|
|
# Verify that `functions --verbose --details` works as expected when given the name of a
|
2017-01-10 14:49:33 +08:00
|
|
|
# function that was autoloaded.
|
2022-04-04 03:37:29 +08:00
|
|
|
set x (functions -v -D vared)
|
2017-03-14 08:22:33 +08:00
|
|
|
if test (count $x) -ne 5
|
2022-04-04 03:37:29 +08:00
|
|
|
or not string match -q '*/share/functions/vared.fish' $x[1]
|
2020-03-10 02:36:12 +08:00
|
|
|
or test $x[2] != autoloaded
|
2022-04-04 03:37:29 +08:00
|
|
|
or test $x[3] != 6
|
2020-03-10 02:36:12 +08:00
|
|
|
or test $x[4] != scope-shadowing
|
2022-04-04 03:37:29 +08:00
|
|
|
or test $x[5] != 'Edit variable value'
|
|
|
|
echo "Unexpected output for 'functions -v -D vared': $x" >&2
|
2017-01-10 14:49:33 +08:00
|
|
|
end
|
2017-03-14 08:22:33 +08:00
|
|
|
|
|
|
|
# ==========
|
2017-05-01 10:53:13 +08:00
|
|
|
# Verify that `functions --verbose --details` properly escapes a function
|
2017-03-14 08:22:33 +08:00
|
|
|
# with a multiline description.
|
|
|
|
function multiline_descr -d 'line 1\n
|
|
|
|
line 2 & more; way more'
|
|
|
|
end
|
2017-05-01 10:53:13 +08:00
|
|
|
set x (functions -v -D multiline_descr)
|
2017-03-14 08:22:33 +08:00
|
|
|
if test $x[5] != 'line 1\\\\n\\nline 2 & more; way more'
|
2017-05-01 10:53:13 +08:00
|
|
|
echo "Unexpected output for 'functions -v -D multiline_descr': $x" >&2
|
2017-03-14 08:22:33 +08:00
|
|
|
end
|
2018-07-23 02:22:47 +08:00
|
|
|
|
2023-02-13 23:59:28 +08:00
|
|
|
# ==========
|
|
|
|
# Verify that `functions --details` works as expected when given the name of a
|
|
|
|
# function that is copied. (Prints the filename where it was copied.)
|
|
|
|
functions -c f1 f1a
|
|
|
|
functions -D f1a
|
|
|
|
#CHECK: {{.*}}checks/functions.fish
|
|
|
|
functions -Dv f1a
|
|
|
|
#CHECK: {{.*}}checks/functions.fish
|
|
|
|
#CHECK: {{.*}}checks/functions.fish
|
|
|
|
#CHECK: {{\d+}}
|
|
|
|
#CHECK: scope-shadowing
|
|
|
|
#CHECK:
|
|
|
|
echo "functions -c f1 f1b" | source
|
|
|
|
functions -D f1b
|
|
|
|
#CHECK: -
|
|
|
|
functions -Dv f1b
|
|
|
|
#CHECK: -
|
|
|
|
#CHECK: {{.*}}checks/functions.fish
|
|
|
|
#CHECK: {{\d+}}
|
|
|
|
#CHECK: scope-shadowing
|
|
|
|
#CHECK:
|
|
|
|
|
2018-07-23 02:22:47 +08:00
|
|
|
# ==========
|
|
|
|
# Verify function description setting
|
2020-03-10 02:36:12 +08:00
|
|
|
function test_func_desc
|
|
|
|
end
|
2018-07-23 02:22:47 +08:00
|
|
|
functions test_func_desc | string match --quiet '*description*'
|
|
|
|
and echo "Unexpected description" >&2
|
|
|
|
|
|
|
|
functions --description description1 test_func_desc
|
|
|
|
functions test_func_desc | string match --quiet '*description1*'
|
|
|
|
or echo "Failed to find description 1" >&2
|
|
|
|
|
|
|
|
functions -d description2 test_func_desc
|
|
|
|
functions test_func_desc | string match --quiet '*description2*'
|
|
|
|
or echo "Failed to find description 2" >&2
|
2019-06-23 00:20:54 +08:00
|
|
|
|
2020-11-29 13:20:43 +08:00
|
|
|
# ==========
|
|
|
|
# Verify that the functions are printed in order.
|
|
|
|
functions f1 test_func_desc
|
|
|
|
# CHECK: # Defined in {{.*}}
|
|
|
|
# CHECK: function f1
|
|
|
|
# CHECK: end
|
|
|
|
# CHECK: # Defined in {{.*}}
|
|
|
|
# CHECK: function test_func_desc --description description2
|
|
|
|
# CHECK: end
|
|
|
|
|
2019-06-23 00:20:54 +08:00
|
|
|
# Note: This test isn't ideal - if ls was loaded before,
|
|
|
|
# or doesn't exist, it'll succeed anyway.
|
|
|
|
#
|
|
|
|
# But we can't *confirm* that an ls function exists,
|
|
|
|
# so this is the best we can do.
|
|
|
|
functions --erase ls
|
|
|
|
type -t ls
|
2020-02-08 05:10:55 +08:00
|
|
|
#CHECK: file
|
2020-12-12 06:05:22 +08:00
|
|
|
|
2021-02-09 05:25:30 +08:00
|
|
|
# ==========
|
|
|
|
# Verify that `functions --query` does not return 0 if there are 256 missing functions
|
|
|
|
functions --query a(seq 1 256)
|
|
|
|
echo $status
|
|
|
|
#CHECK: 255
|
|
|
|
|
2020-12-12 06:05:22 +08:00
|
|
|
echo "function t; echo tttt; end" | source
|
|
|
|
functions t
|
|
|
|
# CHECK: # Defined via `source`
|
|
|
|
# CHECK: function t
|
|
|
|
# CHECK: echo tttt;
|
|
|
|
# CHECK: end
|
|
|
|
|
2021-03-30 22:51:27 +08:00
|
|
|
functions --no-details t
|
|
|
|
# CHECK: function t
|
|
|
|
# CHECK: echo tttt;
|
|
|
|
# CHECK: end
|
|
|
|
|
2023-02-13 23:59:28 +08:00
|
|
|
functions -c t t2
|
|
|
|
functions t2
|
|
|
|
# CHECK: # Defined via `source`, copied in {{.*}}checks/functions.fish @ line {{\d+}}
|
|
|
|
# CHECK: function t2
|
|
|
|
# CHECK: echo tttt;
|
|
|
|
# CHECK: end
|
|
|
|
functions -D t2
|
|
|
|
#CHECK: {{.*}}checks/functions.fish
|
|
|
|
functions -Dv t2
|
|
|
|
#CHECK: {{.*}}checks/functions.fish
|
|
|
|
#CHECK: -
|
|
|
|
#CHECK: {{\d+}}
|
|
|
|
#CHECK: scope-shadowing
|
|
|
|
#CHECK:
|
|
|
|
|
|
|
|
echo "functions -c t t3" | source
|
|
|
|
functions t3
|
|
|
|
# CHECK: # Defined via `source`, copied via `source`
|
|
|
|
# CHECK: function t3
|
|
|
|
# CHECK: echo tttt;
|
|
|
|
# CHECK: end
|
|
|
|
functions -D t3
|
|
|
|
#CHECK: -
|
|
|
|
functions -Dv t3
|
|
|
|
#CHECK: -
|
|
|
|
#CHECK: -
|
|
|
|
#CHECK: {{\d+}}
|
|
|
|
#CHECK: scope-shadowing
|
|
|
|
#CHECK:
|
|
|
|
|
|
|
|
functions --no-details t2
|
|
|
|
# CHECK: function t2
|
|
|
|
# CHECK: echo tttt;
|
|
|
|
# CHECK: end
|
|
|
|
|
2021-03-30 22:51:27 +08:00
|
|
|
functions --no-details --details t
|
2021-11-04 13:52:17 +08:00
|
|
|
# CHECKERR: functions: invalid option combination
|
2021-03-30 22:51:27 +08:00
|
|
|
# CHECKERR:
|
|
|
|
# CHECKERR: checks/functions.fish (line {{\d+}}):
|
|
|
|
# CHECKERR: functions --no-details --details t
|
|
|
|
# CHECKERR: ^
|
|
|
|
# CHECKERR: (Type 'help functions' for related documentation)
|
2021-11-04 13:52:17 +08:00
|
|
|
# XXX FIXME ^ caret should point at --no-details --details
|
2023-08-11 00:42:11 +08:00
|
|
|
|
|
|
|
function term1 --on-signal TERM
|
|
|
|
end
|
|
|
|
function term2 --on-signal TERM
|
|
|
|
end
|
|
|
|
function term3 --on-signal TERM
|
|
|
|
end
|
|
|
|
|
|
|
|
functions --handlers-type signal
|
|
|
|
# CHECK: Event signal
|
|
|
|
# CHECK: SIGTRAP fish_sigtrap_handler
|
|
|
|
# CHECK: SIGTERM term1
|
|
|
|
# CHECK: SIGTERM term2
|
|
|
|
# CHECK: SIGTERM term3
|