summaryrefslogtreecommitdiffstats
path: root/runtime/zip_archive_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/zip_archive_test.cc')
-rw-r--r--runtime/zip_archive_test.cc60
1 files changed, 60 insertions, 0 deletions
diff --git a/runtime/zip_archive_test.cc b/runtime/zip_archive_test.cc
new file mode 100644
index 0000000000..9bdc24ba03
--- /dev/null
+++ b/runtime/zip_archive_test.cc
@@ -0,0 +1,60 @@
+/*
+ * Copyright (C) 2011 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 "zip_archive.h"
+
+#include <fcntl.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+
+#include "UniquePtr.h"
+#include "common_test.h"
+#include "os.h"
+
+namespace art {
+
+class ZipArchiveTest : public CommonTest {};
+
+TEST_F(ZipArchiveTest, FindAndExtract) {
+ UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(GetLibCoreDexFileName()));
+ ASSERT_TRUE(zip_archive.get() != false);
+ UniquePtr<ZipEntry> zip_entry(zip_archive->Find("classes.dex"));
+ ASSERT_TRUE(zip_entry.get() != false);
+
+ ScratchFile tmp;
+ ASSERT_NE(-1, tmp.GetFd());
+ UniquePtr<File> file(new File(tmp.GetFd(), tmp.GetFilename()));
+ ASSERT_TRUE(file.get() != NULL);
+ bool success = zip_entry->ExtractToFile(*file);
+ ASSERT_TRUE(success);
+ file.reset(NULL);
+
+ uint32_t computed_crc = crc32(0L, Z_NULL, 0);
+ int fd = open(tmp.GetFilename().c_str(), O_RDONLY);
+ ASSERT_NE(-1, fd);
+ const size_t kBufSize = 32768;
+ uint8_t buf[kBufSize];
+ while (true) {
+ ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buf, kBufSize));
+ if (bytes_read == 0) {
+ break;
+ }
+ computed_crc = crc32(computed_crc, buf, bytes_read);
+ }
+ EXPECT_EQ(zip_entry->GetCrc32(), computed_crc);
+}
+
+} // namespace art