summaryrefslogtreecommitdiff
path: root/tests/find/used.sh
blob: 48dbf04f761db698a2fe39942d7dc422589035a0 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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