summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBernhard Voelker <mail@bernhard-voelker.de>2020-04-22 19:35:13 +0200
committerBernhard Voelker <mail@bernhard-voelker.de>2020-04-22 19:35:13 +0200
commit7642d172e10a890975696d28278e5192d81afc5b (patch)
treefb48129d79693d9577da7806e9cb0852bb4d35f0 /tests
parentabec46d20493d7b4f2e4be1fbc4175c60e1c7cb8 (diff)
downloadfindutils-7642d172e10a890975696d28278e5192d81afc5b.tar.gz
find: fix -used predicate
* find/pred.c (pred_used): Reverse the check for the delta between the atime and ctime of the file to accomodate to how pred_timewindow is working. Also return false if atime < ctime. Bug introduced in FINDUTILS_4_3_3-1 in commit a4718831e17. * tests/find/used.sh: Add test. * tests/local.mk (all_tests): Reference the test. * NEWS (Bug Fixes): Mention the fix. Reported by Martin Schulte in <https://lists.gnu.org/r/bug-findutils/2019-11/msg00010.html>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/find/used.sh94
-rw-r--r--tests/local.mk1
2 files changed, 95 insertions, 0 deletions
diff --git a/tests/find/used.sh b/tests/find/used.sh
new file mode 100755
index 00000000..48dbf04f
--- /dev/null
+++ b/tests/find/used.sh
@@ -0,0 +1,94 @@
+#!/bin/sh
+# Verify that find -used works.
+
+# Copyright (C) 2020 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"; fu_path_prepend_
+print_ver_ find
+
+# Create sample files with the access date D=1,3,5,7 days in the future.
+for d in 1 3 5 7; do
+ touch -a -d "$(date -d "$d day" '+%Y-%m-%d %H:%M:%S')" t$d \
+ || skip_ "creating files with future timestamp failed"
+
+ # Check with stat(1) the access (%X) vs. the status change time (%z).
+ exp="$( expr 86400 '*' $d )" \
+ && x="$( stat -c "%X" t$d )" \
+ && z="$( stat -c "%Z" t$d )" \
+ && tdiff="$( expr "$x" - "$z" )" \
+ && test "$tdiff" -ge "$exp" \
+ || skip_ "cannot verify timestamps of sample files"
+done
+# Create another sample file with timestamp now.
+touch t0 \
+ || skip_ "creating sample file failed"
+
+stat -c "Name: %n Access: %x Change: %z" t? || : # ignore error.
+
+# Verify the output for "find -used $d". Use even number of days to avoid
+# possibly strange effects due to atime/ctime precision etc.
+for d in -8 -6 -4 -2 -0 0 2 4 6 8 +0 +2 +4 +6 +8; do
+ echo "== testing: find -used $d"
+ find . -type f -name 't*' -used $d > out2 \
+ || fail=1
+ LC_ALL=C sort out2 || framework_failure_
+done > out
+
+cat <<\EOF > exp || framework_failure_
+== testing: find -used -8
+./t0
+./t1
+./t3
+./t5
+./t7
+== testing: find -used -6
+./t0
+./t1
+./t3
+./t5
+== testing: find -used -4
+./t0
+./t1
+./t3
+== testing: find -used -2
+./t0
+./t1
+== testing: find -used -0
+== testing: find -used 0
+== testing: find -used 2
+== testing: find -used 4
+== testing: find -used 6
+== testing: find -used 8
+== testing: find -used +0
+./t1
+./t3
+./t5
+./t7
+== testing: find -used +2
+./t3
+./t5
+./t7
+== testing: find -used +4
+./t5
+./t7
+== testing: find -used +6
+./t7
+== testing: find -used +8
+EOF
+
+compare exp out || { fail=1; cat out; }
+
+Exit $fail
diff --git a/tests/local.mk b/tests/local.mk
index 986df55e..13782d86 100644
--- a/tests/local.mk
+++ b/tests/local.mk
@@ -116,6 +116,7 @@ all_tests = \
tests/find/exec-plus-last-file.sh \
tests/find/refuse-noop.sh \
tests/find/debug-missing-arg.sh \
+ tests/find/used.sh \
tests/xargs/verbose-quote.sh \
$(all_root_tests)