Use zlib to deflate compress data into the zip file. Change-Id: If094b926a67e199be976c3190781cd0101dd66e1
170 lines
4.8 KiB
C++
170 lines
4.8 KiB
C++
/*
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "ziparchive/zip_archive.h"
|
|
#include "ziparchive/zip_writer.h"
|
|
|
|
#include <base/test_utils.h>
|
|
#include <gtest/gtest.h>
|
|
#include <memory>
|
|
|
|
struct zipwriter : public ::testing::Test {
|
|
TemporaryFile* temp_file_;
|
|
int fd_;
|
|
FILE* file_;
|
|
|
|
void SetUp() override {
|
|
temp_file_ = new TemporaryFile();
|
|
fd_ = temp_file_->fd;
|
|
file_ = fdopen(fd_, "w");
|
|
ASSERT_NE(file_, nullptr);
|
|
}
|
|
|
|
void TearDown() override {
|
|
fclose(file_);
|
|
delete temp_file_;
|
|
}
|
|
};
|
|
|
|
TEST_F(zipwriter, WriteUncompressedZipWithOneFile) {
|
|
ZipWriter writer(file_);
|
|
|
|
const char* expected = "hello";
|
|
|
|
ASSERT_EQ(0, writer.StartEntry("file.txt", 0));
|
|
ASSERT_EQ(0, writer.WriteBytes("he", 2));
|
|
ASSERT_EQ(0, writer.WriteBytes("llo", 3));
|
|
ASSERT_EQ(0, writer.FinishEntry());
|
|
ASSERT_EQ(0, writer.Finish());
|
|
|
|
ASSERT_GE(0, lseek(fd_, 0, SEEK_SET));
|
|
|
|
ZipArchiveHandle handle;
|
|
ASSERT_EQ(0, OpenArchiveFd(fd_, "temp", &handle, false));
|
|
|
|
ZipEntry data;
|
|
ASSERT_EQ(0, FindEntry(handle, ZipString("file.txt"), &data));
|
|
EXPECT_EQ(strlen(expected), data.compressed_length);
|
|
EXPECT_EQ(strlen(expected), data.uncompressed_length);
|
|
EXPECT_EQ(kCompressStored, data.method);
|
|
|
|
char buffer[6];
|
|
EXPECT_EQ(0,
|
|
ExtractToMemory(handle, &data, reinterpret_cast<uint8_t*>(&buffer), sizeof(buffer)));
|
|
buffer[5] = 0;
|
|
|
|
EXPECT_STREQ(expected, buffer);
|
|
|
|
CloseArchive(handle);
|
|
}
|
|
|
|
TEST_F(zipwriter, WriteUncompressedZipWithMultipleFiles) {
|
|
ZipWriter writer(file_);
|
|
|
|
ASSERT_EQ(0, writer.StartEntry("file.txt", 0));
|
|
ASSERT_EQ(0, writer.WriteBytes("he", 2));
|
|
ASSERT_EQ(0, writer.FinishEntry());
|
|
|
|
ASSERT_EQ(0, writer.StartEntry("file/file.txt", 0));
|
|
ASSERT_EQ(0, writer.WriteBytes("llo", 3));
|
|
ASSERT_EQ(0, writer.FinishEntry());
|
|
|
|
ASSERT_EQ(0, writer.StartEntry("file/file2.txt", 0));
|
|
ASSERT_EQ(0, writer.FinishEntry());
|
|
|
|
ASSERT_EQ(0, writer.Finish());
|
|
|
|
ASSERT_GE(0, lseek(fd_, 0, SEEK_SET));
|
|
|
|
ZipArchiveHandle handle;
|
|
ASSERT_EQ(0, OpenArchiveFd(fd_, "temp", &handle, false));
|
|
|
|
char buffer[4];
|
|
ZipEntry data;
|
|
|
|
ASSERT_EQ(0, FindEntry(handle, ZipString("file.txt"), &data));
|
|
EXPECT_EQ(kCompressStored, data.method);
|
|
EXPECT_EQ(2u, data.compressed_length);
|
|
EXPECT_EQ(2u, data.uncompressed_length);
|
|
ASSERT_EQ(0,
|
|
ExtractToMemory(handle, &data, reinterpret_cast<uint8_t*>(buffer), arraysize(buffer)));
|
|
buffer[2] = 0;
|
|
EXPECT_STREQ("he", buffer);
|
|
|
|
ASSERT_EQ(0, FindEntry(handle, ZipString("file/file.txt"), &data));
|
|
EXPECT_EQ(kCompressStored, data.method);
|
|
EXPECT_EQ(3u, data.compressed_length);
|
|
EXPECT_EQ(3u, data.uncompressed_length);
|
|
ASSERT_EQ(0,
|
|
ExtractToMemory(handle, &data, reinterpret_cast<uint8_t*>(buffer), arraysize(buffer)));
|
|
buffer[3] = 0;
|
|
EXPECT_STREQ("llo", buffer);
|
|
|
|
ASSERT_EQ(0, FindEntry(handle, ZipString("file/file2.txt"), &data));
|
|
EXPECT_EQ(kCompressStored, data.method);
|
|
EXPECT_EQ(0u, data.compressed_length);
|
|
EXPECT_EQ(0u, data.uncompressed_length);
|
|
|
|
CloseArchive(handle);
|
|
}
|
|
|
|
TEST_F(zipwriter, WriteUncompressedZipWithAlignedFile) {
|
|
ZipWriter writer(file_);
|
|
|
|
ASSERT_EQ(0, writer.StartEntry("align.txt", ZipWriter::kAlign32));
|
|
ASSERT_EQ(0, writer.WriteBytes("he", 2));
|
|
ASSERT_EQ(0, writer.FinishEntry());
|
|
ASSERT_EQ(0, writer.Finish());
|
|
|
|
ASSERT_GE(0, lseek(fd_, 0, SEEK_SET));
|
|
|
|
ZipArchiveHandle handle;
|
|
ASSERT_EQ(0, OpenArchiveFd(fd_, "temp", &handle, false));
|
|
|
|
ZipEntry data;
|
|
ASSERT_EQ(0, FindEntry(handle, ZipString("align.txt"), &data));
|
|
EXPECT_EQ(0, data.offset & 0x03);
|
|
|
|
CloseArchive(handle);
|
|
}
|
|
|
|
TEST_F(zipwriter, WriteCompressedZipWithOneFile) {
|
|
ZipWriter writer(file_);
|
|
|
|
ASSERT_EQ(0, writer.StartEntry("file.txt", ZipWriter::kCompress));
|
|
ASSERT_EQ(0, writer.WriteBytes("helo", 4));
|
|
ASSERT_EQ(0, writer.FinishEntry());
|
|
ASSERT_EQ(0, writer.Finish());
|
|
|
|
ASSERT_GE(0, lseek(fd_, 0, SEEK_SET));
|
|
|
|
ZipArchiveHandle handle;
|
|
ASSERT_EQ(0, OpenArchiveFd(fd_, "temp", &handle, false));
|
|
|
|
ZipEntry data;
|
|
ASSERT_EQ(0, FindEntry(handle, ZipString("file.txt"), &data));
|
|
EXPECT_EQ(kCompressDeflated, data.method);
|
|
EXPECT_EQ(4u, data.uncompressed_length);
|
|
|
|
char buffer[5];
|
|
ASSERT_EQ(0,
|
|
ExtractToMemory(handle, &data, reinterpret_cast<uint8_t*>(buffer), arraysize(buffer)));
|
|
buffer[4] = 0;
|
|
|
|
EXPECT_STREQ("helo", buffer);
|
|
|
|
CloseArchive(handle);
|
|
}
|