summaryrefslogtreecommitdiff
path: root/tests/extrac22.at
blob: 0af8cf0ca1ca63efda6e4c739d3d919ad6234fbb (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
# Test suite for GNU tar.                             -*- Autotest -*-
# Copyright 2017-2023 Free Software Foundation, Inc.
#
# This file is part of GNU tar.
#
# GNU tar 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.
#
# GNU tar 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 <http://www.gnu.org/licenses/>.

AT_SETUP([delay-directory-restore on reversed ordering])

# The --delay-directory-resore option worked incorrectly on archives with
# reversed member ordering (which was documented, anyway). This is illustrated
# in
#   http://lists.gnu.org/archive/html/bug-tar/2019-03/msg00022.html
# which was taken as a base for this testcase.
# The bug affected tar versions <= 1.32.

AT_KEYWORDS([extract extrac22 delay delay-reversed])
AT_TAR_CHECK([
AT_UNPRIVILEGED_PREREQ
AT_SORT_PREREQ
mkdir t
(cd t
 genfile --length 100 --file data1
 mkdir dir1
 cp data1 dir1
 mkdir dir2
 cd dir2
 ln -s ../dir1/data1 data2
 cd ..
 chmod -w dir2)

AT_DATA([filelist],
[./dir2/data2
./dir2
./dir1/data1
./dir1
./data1
])

tar -C t -c -f a.tar --no-recursion -T filelist

mkdir restore
tar -x -p --delay-directory-restore -C restore -f a.tar
# Previous versions of tar would fail here with the following diagnostics:
# tar: ./dir2/data2: Cannot unlink: Permission denied
],
[0],
[])
AT_CLEANUP