Blame tar/test/test_strip_components.c

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