summaryrefslogtreecommitdiffstats
path: root/tests/rm/dash-hint.sh
blob: 249f348038a157efdb77b6c3993d0c4b82c3af42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
# Test that 'rm -foo' gives a hint to the user in some situations.

# Copyright (C) 2026 Free Software Foundation, Inc.

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.

. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
print_ver_ rm

# Check that the hint is not shown when there isn't file named "-foo".
returns_ 1 rm -foo > out 2> err || fail=1
compare /dev/null out || fail=1
grep 'to remove the file' && fail=1

# Check that the hint is shown when there is file named "-foo".
echo a > -foo || framework_failure_
cat <<\EOF > exp || framework_failure_
Try 'rm ./-foo' to remove the file '-foo'.
Try 'rm --help' for more information.
EOF
returns_ 1 rm -foo > out 2> errt || fail=1
compare /dev/null out || fail=1
# Ignore any invalid option error messages from getopt.
tail -n 2 errt > err || framework_failure_
cmp exp err || fail=1

nl='
'
# Check that the output is shell escaped so it can be copy pasted.
echo a > "-foo${nl}bar" || framework_failure_
cat <<\EOF > exp || framework_failure_
Try 'rm ./'-foo'$'\n''bar'' to remove the file '-foo'$'\n''bar'.
Try 'rm --help' for more information.
EOF
returns_ 1 rm "-foo${nl}bar" > out 2> errt || fail=1
compare /dev/null out || fail=1
# Ignore any invalid option error messages from getopt.
tail -n 2 errt > err || framework_failure_
cmp exp err || fail=1

Exit $fail