blob: 5961e2aad7f665190d75a58f6f4e147ff3f8a7c1 [file] [log] [blame]
// Copyright 2016 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.bazel.repository;
import static com.google.common.truth.Truth.assertThat;
import static com.google.devtools.build.lib.bazel.repository.TestArchiveDescriptor.INNER_FOLDER_NAME;
import static com.google.devtools.build.lib.bazel.repository.TestArchiveDescriptor.ROOT_FOLDER_NAME;
import com.google.devtools.build.lib.vfs.Path;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.zip.GZIPInputStream;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Tests decompressing archives. */
@RunWith(JUnit4.class)
public class CompressedTarFunctionTest {
/* Tarball, created by "tar -czf <ARCHIVE_NAME> <files...>" */
private static final String ARCHIVE_NAME = "test_decompress_archive.tar.gz";
private TestArchiveDescriptor archiveDescriptor;
@Before
public void setUpFs() throws Exception {
archiveDescriptor = new TestArchiveDescriptor(ARCHIVE_NAME, "out", true);
}
/**
* Test decompressing a tar.gz file with hard link file and symbolic link file inside without
* stripping a prefix
*/
@Test
public void testDecompressWithoutPrefix() throws Exception {
Path outputDir = decompress(archiveDescriptor.createDescriptorBuilder().build());
archiveDescriptor.assertOutputFiles(outputDir, ROOT_FOLDER_NAME, INNER_FOLDER_NAME);
}
/**
* Test decompressing a tar.gz file with hard link file and symbolic link file inside and
* stripping a prefix
*/
@Test
public void testDecompressWithPrefix() throws Exception {
DecompressorDescriptor.Builder descriptorBuilder =
archiveDescriptor.createDescriptorBuilder().setPrefix(ROOT_FOLDER_NAME);
Path outputDir = decompress(descriptorBuilder.build());
archiveDescriptor.assertOutputFiles(outputDir, INNER_FOLDER_NAME);
}
/**
* Test decompressing a tar.gz file, with some entries being renamed during the extraction
* process.
*/
@Test
public void testDecompressWithRenamedFiles() throws Exception {
String innerDirName = ROOT_FOLDER_NAME + "/" + INNER_FOLDER_NAME;
HashMap<String, String> renameFiles = new HashMap<>();
renameFiles.put(innerDirName + "/hardLinkFile", innerDirName + "/renamedFile");
DecompressorDescriptor.Builder descriptorBuilder =
archiveDescriptor.createDescriptorBuilder().setRenameFiles(renameFiles);
Path outputDir = decompress(descriptorBuilder.build());
Path innerDir = outputDir.getRelative(ROOT_FOLDER_NAME).getRelative(INNER_FOLDER_NAME);
assertThat(innerDir.getRelative("renamedFile").exists()).isTrue();
}
/** Test that entry renaming is applied prior to prefix stripping. */
@Test
public void testDecompressWithRenamedFilesAndPrefix() throws Exception {
String innerDirName = ROOT_FOLDER_NAME + "/" + INNER_FOLDER_NAME;
HashMap<String, String> renameFiles = new HashMap<>();
renameFiles.put(innerDirName + "/hardLinkFile", innerDirName + "/renamedFile");
DecompressorDescriptor.Builder descriptorBuilder =
archiveDescriptor
.createDescriptorBuilder()
.setPrefix(ROOT_FOLDER_NAME)
.setRenameFiles(renameFiles);
Path outputDir = decompress(descriptorBuilder.build());
Path innerDir = outputDir.getRelative(INNER_FOLDER_NAME);
assertThat(innerDir.getRelative("renamedFile").exists()).isTrue();
}
private Path decompress(DecompressorDescriptor descriptor) throws Exception {
return new CompressedTarFunction() {
@Override
protected InputStream getDecompressorStream(DecompressorDescriptor descriptor)
throws IOException {
return new GZIPInputStream(new FileInputStream(descriptor.archivePath().getPathFile()));
}
}.decompress(descriptor);
}
}