|
Packit Service |
1d0348 |
/*-
|
|
Packit Service |
1d0348 |
* Copyright (c) 2003-2007 Tim Kientzle
|
|
Packit Service |
1d0348 |
* All rights reserved.
|
|
Packit Service |
1d0348 |
*
|
|
Packit Service |
1d0348 |
* Redistribution and use in source and binary forms, with or without
|
|
Packit Service |
1d0348 |
* modification, are permitted provided that the following conditions
|
|
Packit Service |
1d0348 |
* are met:
|
|
Packit Service |
1d0348 |
* 1. Redistributions of source code must retain the above copyright
|
|
Packit Service |
1d0348 |
* notice, this list of conditions and the following disclaimer.
|
|
Packit Service |
1d0348 |
* 2. Redistributions in binary form must reproduce the above copyright
|
|
Packit Service |
1d0348 |
* notice, this list of conditions and the following disclaimer in the
|
|
Packit Service |
1d0348 |
* documentation and/or other materials provided with the distribution.
|
|
Packit Service |
1d0348 |
*
|
|
Packit Service |
1d0348 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
|
Packit Service |
1d0348 |
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
Packit Service |
1d0348 |
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
Packit Service |
1d0348 |
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
Packit Service |
1d0348 |
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
Packit Service |
1d0348 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
Packit Service |
1d0348 |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
Packit Service |
1d0348 |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
Packit Service |
1d0348 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
Packit Service |
1d0348 |
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
Packit Service |
1d0348 |
*/
|
|
Packit Service |
1d0348 |
#include "test.h"
|
|
Packit Service |
1d0348 |
__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_strip_components.c,v 1.2 2008/11/10 05:24:13 kientzle Exp $");
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
DEFINE_TEST(test_strip_components)
|
|
Packit Service |
1d0348 |
{
|
|
Packit Service |
1d0348 |
assertMakeDir("d0", 0755);
|
|
Packit Service |
1d0348 |
assertChdir("d0");
|
|
Packit Service |
1d0348 |
assertMakeDir("d1", 0755);
|
|
Packit Service |
1d0348 |
assertMakeDir("d1/d2", 0755);
|
|
Packit Service |
1d0348 |
assertMakeDir("d1/d2/d3", 0755);
|
|
Packit Service |
1d0348 |
assertMakeFile("d1/d2/f1", 0644, "");
|
|
Packit Service |
1d0348 |
assertMakeHardlink("l1", "d1/d2/f1");
|
|
Packit Service |
1d0348 |
assertMakeHardlink("d1/l2", "d1/d2/f1");
|
|
Packit Service |
1d0348 |
if (canSymlink()) {
|
|
Packit Service |
1d0348 |
assertMakeSymlink("s1", "d1/d2/f1");
|
|
Packit Service |
1d0348 |
assertMakeSymlink("d1/s2", "d2/f1");
|
|
Packit Service |
1d0348 |
}
|
|
Packit Service |
1d0348 |
assertChdir("..");
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
/*
|
|
Packit Service |
1d0348 |
* Test 1: Strip components when extracting archives.
|
|
Packit Service |
1d0348 |
*/
|
|
Packit Service |
1d0348 |
if (canSymlink())
|
|
Packit Service |
1d0348 |
assertEqualInt(0, systemf("%s -cf test.tar d0/l1 d0/s1 d0/d1",
|
|
Packit Service |
1d0348 |
testprog));
|
|
Packit Service |
1d0348 |
else
|
|
Packit Service |
1d0348 |
assertEqualInt(0, systemf("%s -cf test.tar d0/l1 d0/d1",
|
|
Packit Service |
1d0348 |
testprog));
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
assertMakeDir("target", 0755);
|
|
Packit Service |
1d0348 |
assertEqualInt(0, systemf("%s -x -C target --strip-components 2 "
|
|
Packit Service |
1d0348 |
"-f test.tar", testprog));
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
failure("d0/ is too short and should not get restored");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/d0");
|
|
Packit Service |
1d0348 |
failure("d0/d1/ is too short and should not get restored");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/d1");
|
|
Packit Service |
1d0348 |
failure("d0/s1 is too short and should not get restored");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/s1");
|
|
Packit Service |
1d0348 |
failure("d0/d1/s2 is a symlink to something that won't be extracted");
|
|
Packit Service |
1d0348 |
/* If platform supports symlinks, target/s2 is a broken symlink. */
|
|
Packit Service |
1d0348 |
/* If platform does not support symlink, target/s2 doesn't exist. */
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/s2");
|
|
Packit Service |
1d0348 |
if (canSymlink())
|
|
Packit Service |
1d0348 |
assertIsSymlink("target/s2", "d2/f1");
|
|
Packit Service |
1d0348 |
failure("d0/d1/d2 should be extracted");
|
|
Packit Service |
1d0348 |
assertIsDir("target/d2", -1);
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
/*
|
|
Packit Service |
1d0348 |
* Test 1b: Strip components extracting archives involving hardlinks.
|
|
Packit Service |
1d0348 |
*
|
|
Packit Service |
1d0348 |
* This next is a complicated case. d0/l1, d0/d1/l2, and
|
|
Packit Service |
1d0348 |
* d0/d1/d2/f1 are all hardlinks to the same file; d0/l1 can't
|
|
Packit Service |
1d0348 |
* be extracted with --strip-components=2 and the other two
|
|
Packit Service |
1d0348 |
* can. Remember that tar normally stores the first file with
|
|
Packit Service |
1d0348 |
* a body and the other as hardlink entries to the first
|
|
Packit Service |
1d0348 |
* appearance. So the final result depends on the order in
|
|
Packit Service |
1d0348 |
* which these three names get archived. If d0/l1 is first,
|
|
Packit Service |
1d0348 |
* none of the three can be restored. If either of the longer
|
|
Packit Service |
1d0348 |
* names are first, then the two longer ones can both be
|
|
Packit Service |
1d0348 |
* restored. Note that the "tar -cf" command above explicitly
|
|
Packit Service |
1d0348 |
* lists d0/l1 before d0/d1.
|
|
Packit Service |
1d0348 |
*
|
|
Packit Service |
1d0348 |
* It may be worth extending this test to exercise other
|
|
Packit Service |
1d0348 |
* archiving orders.
|
|
Packit Service |
1d0348 |
*
|
|
Packit Service |
1d0348 |
* Of course, this is all totally different for cpio and newc
|
|
Packit Service |
1d0348 |
* formats because the hardlink management is different.
|
|
Packit Service |
1d0348 |
* TODO: Rename this to test_strip_components_tar and create
|
|
Packit Service |
1d0348 |
* parallel tests for cpio and newc formats.
|
|
Packit Service |
1d0348 |
*/
|
|
Packit Service |
1d0348 |
failure("d0/l1 is too short and should not get restored");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/l1");
|
|
Packit Service |
1d0348 |
failure("d0/d1/l2 is a hardlink to file whose name was too short");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/l2");
|
|
Packit Service |
1d0348 |
failure("d0/d1/d2/f1 is a hardlink to file whose name was too short");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/d2/f1");
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
/*
|
|
Packit Service |
1d0348 |
* Test 2: Strip components when creating archives.
|
|
Packit Service |
1d0348 |
*/
|
|
Packit Service |
1d0348 |
if (canSymlink())
|
|
Packit Service |
1d0348 |
assertEqualInt(0, systemf("%s --strip-components 2 -cf test2.tar "
|
|
Packit Service |
1d0348 |
"d0/l1 d0/s1 d0/d1", testprog));
|
|
Packit Service |
1d0348 |
else
|
|
Packit Service |
1d0348 |
assertEqualInt(0, systemf("%s --strip-components 2 -cf test2.tar "
|
|
Packit Service |
1d0348 |
"d0/l1 d0/d1", testprog));
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
assertMakeDir("target2", 0755);
|
|
Packit Service |
1d0348 |
assertEqualInt(0, systemf("%s -x -C target2 -f test2.tar", testprog));
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
failure("d0/ is too short and should not have been archived");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target2/d0");
|
|
Packit Service |
1d0348 |
failure("d0/d1/ is too short and should not have been archived");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target2/d1");
|
|
Packit Service |
1d0348 |
failure("d0/s1 is too short and should not get restored");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/s1");
|
|
Packit Service |
1d0348 |
/* If platform supports symlinks, target/s2 is included. */
|
|
Packit Service |
1d0348 |
if (canSymlink()) {
|
|
Packit Service |
1d0348 |
failure("d0/d1/s2 is a symlink to something included in archive");
|
|
Packit Service |
1d0348 |
assertIsSymlink("target2/s2", "d2/f1");
|
|
Packit Service |
1d0348 |
}
|
|
Packit Service |
1d0348 |
failure("d0/d1/d2 should be archived");
|
|
Packit Service |
1d0348 |
assertIsDir("target2/d2", -1);
|
|
Packit Service |
1d0348 |
|
|
Packit Service |
1d0348 |
/*
|
|
Packit Service |
1d0348 |
* Test 2b: Strip components creating archives involving hardlinks.
|
|
Packit Service |
1d0348 |
*/
|
|
Packit Service |
1d0348 |
failure("d0/l1 is too short and should not have been archived");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/l1");
|
|
Packit Service |
1d0348 |
failure("d0/d1/l2 is a hardlink to file whose name was too short");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/l2");
|
|
Packit Service |
1d0348 |
failure("d0/d1/d2/f1 is a hardlink to file whose name was too short");
|
|
Packit Service |
1d0348 |
assertFileNotExists("target/d2/f1");
|
|
Packit Service |
1d0348 |
}
|