blob: 49729467dfbbd1141cb25ba6e8ff6873d19c9164 [file] [log] [blame]
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <errno.h>
18#include <fcntl.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070019#include <unistd.h>
20
21#include <memory>
22#include <vector>
23
24#include <android-base/file.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070025#include <android-base/test_utils.h>
26#include <gtest/gtest.h>
27#include <otautil/SysUtil.h>
28#include <otautil/ZipUtil.h>
29#include <ziparchive/zip_archive.h>
30
Tao Bao0dfb7532016-11-04 15:15:52 -070031#include "common/test_constants.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070032
Tao Bao0dfb7532016-11-04 15:15:52 -070033static const std::string kATxtContents("abcdefghabcdefgh\n");
34static const std::string kBTxtContents("abcdefgh\n");
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070035
Tao Bao0dfb7532016-11-04 15:15:52 -070036TEST(ZipTest, ExtractPackageRecursive) {
37 std::string zip_path = from_testdata_base("ziptest_valid.zip");
38 ZipArchiveHandle handle;
39 ASSERT_EQ(0, OpenArchive(zip_path.c_str(), &handle));
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070040
Tao Bao0dfb7532016-11-04 15:15:52 -070041 // Extract the whole package into a temp directory.
42 TemporaryDir td;
43 ASSERT_NE(nullptr, td.path);
44 ExtractPackageRecursive(handle, "", td.path, nullptr, nullptr);
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070045
Tao Bao0dfb7532016-11-04 15:15:52 -070046 // Make sure all the files are extracted correctly.
47 std::string path(td.path);
48 ASSERT_EQ(0, access((path + "/a.txt").c_str(), O_RDONLY));
49 ASSERT_EQ(0, access((path + "/b.txt").c_str(), O_RDONLY));
50 ASSERT_EQ(0, access((path + "/b/c.txt").c_str(), O_RDONLY));
51 ASSERT_EQ(0, access((path + "/b/d.txt").c_str(), O_RDONLY));
52
53 // The content of the file is the same as expected.
54 std::string content1;
55 ASSERT_TRUE(android::base::ReadFileToString(path + "/a.txt", &content1));
56 ASSERT_EQ(kATxtContents, content1);
57
58 std::string content2;
59 ASSERT_TRUE(android::base::ReadFileToString(path + "/b/d.txt", &content2));
60 ASSERT_EQ(kBTxtContents, content2);
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070061}
62
Tao Bao0dfb7532016-11-04 15:15:52 -070063TEST(ZipTest, OpenFromMemory) {
64 MemMapping map;
65 std::string zip_path = from_testdata_base("ziptest_dummy-update.zip");
66 ASSERT_EQ(0, sysMapFile(zip_path.c_str(), &map));
67
68 // Map an update package into memory and open the archive from there.
69 ZipArchiveHandle handle;
70 ASSERT_EQ(0, OpenArchiveFromMemory(map.addr, map.length, zip_path.c_str(), &handle));
71
72 static constexpr const char* BINARY_PATH = "META-INF/com/google/android/update-binary";
73 ZipString binary_path(BINARY_PATH);
74 ZipEntry binary_entry;
75 // Make sure the package opens correctly and its entry can be read.
76 ASSERT_EQ(0, FindEntry(handle, binary_path, &binary_entry));
77
78 TemporaryFile tmp_binary;
79 ASSERT_NE(-1, tmp_binary.fd);
80 ASSERT_EQ(0, ExtractEntryToFile(handle, &binary_entry, tmp_binary.fd));
81
82 sysReleaseMap(&map);
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070083}
84