/* * Copyright 2017-present Facebook, Inc. * * 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.facebook.buck.android.resources; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; import com.facebook.buck.io.ProjectFilesystem; import com.facebook.buck.testutil.MoreAsserts; import com.facebook.buck.testutil.integration.TemporaryPaths; import com.facebook.buck.testutil.integration.TestDataHelper; import com.google.common.base.Charsets; import com.google.common.io.ByteStreams; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.PrintStream; import java.nio.ByteBuffer; import java.nio.file.Files; import java.nio.file.Path; import java.util.Arrays; import java.util.List; import java.util.zip.ZipFile; import org.junit.Before; import org.junit.Rule; import org.junit.Test; public class StringPoolTest { private static final String APK_NAME = "example.apk"; @Rule public TemporaryPaths tmpFolder = new TemporaryPaths(); private ProjectFilesystem filesystem; private Path apkPath; @Before public void setUp() throws InterruptedException, IOException { filesystem = new ProjectFilesystem(TestDataHelper.getTestDataDirectory(this).resolve("aapt_dump")); apkPath = filesystem.resolve(filesystem.getPath(APK_NAME)); } @Test public void testCreateStringPool() throws Exception { String[] strings = new String[] {"string1", "string2", "string3"}; StringPool pool = StringPool.create(Arrays.asList(strings)); assertEquals(strings.length, pool.getStringCount()); for (int i = 0; i < strings.length; i++) { assertEquals(strings[i], pool.getString(i)); } } @Test public void testCreateSerializeAndGet() { String[] strings = new String[] {"string1", "string2", "string3"}; StringPool pool = StringPool.create(Arrays.asList(strings)); byte[] serialized = pool.serialize(); pool = StringPool.get(ResChunk.wrap(serialized)); assertEquals(strings.length, pool.getStringCount()); for (int i = 0; i < strings.length; i++) { assertEquals(strings[i], pool.getString(i)); } byte[] reserialized = pool.serialize(); assertArrayEquals(serialized, reserialized); } @Test public void testArscPoolGetAndSerialize() throws Exception { try (ZipFile apkZip = new ZipFile(apkPath.toFile())) { ByteBuffer buf = ResChunk.wrap( ByteStreams.toByteArray(apkZip.getInputStream(apkZip.getEntry("resources.arsc")))); List<Integer> stringPoolOffsets = ChunkUtils.findChunks(buf, ResChunk.CHUNK_STRING_POOL); // Should be 1 main stringpool, and 2 for the package (types and keys). assertEquals(3, stringPoolOffsets.size()); for (int offset : stringPoolOffsets) { ByteBuffer data = ResChunk.slice(buf, offset); StringPool strings = StringPool.get(data); byte[] expected = Arrays.copyOfRange( data.array(), data.arrayOffset(), data.arrayOffset() + strings.getTotalSize()); byte[] actual = strings.serialize(); assertArrayEquals(expected, actual); } } } @Test public void testManifestPoolGetAndSerialize() throws Exception { try (ZipFile apkZip = new ZipFile(apkPath.toFile())) { ByteBuffer buf = ResChunk.wrap( ByteStreams.toByteArray( apkZip.getInputStream(apkZip.getEntry("AndroidManifest.xml")))); List<Integer> stringPoolOffsets = ChunkUtils.findChunks(buf, ResChunk.CHUNK_STRING_POOL); assertEquals(1, stringPoolOffsets.size()); for (int offset : stringPoolOffsets) { ByteBuffer data = ResChunk.slice(buf, offset); StringPool strings = StringPool.get(data); byte[] expected = Arrays.copyOfRange( data.array(), data.arrayOffset(), data.arrayOffset() + strings.getTotalSize()); byte[] actual = strings.serialize(); assertArrayEquals(expected, actual); } } } @Test public void testAaptDumpStrings() throws Exception { try (ZipFile apkZip = new ZipFile(apkPath.toFile())) { ByteBuffer buf = ResChunk.wrap( ByteStreams.toByteArray(apkZip.getInputStream(apkZip.getEntry("resources.arsc")))); ResourceTable resourceTable = ResourceTable.get(buf); ByteArrayOutputStream baos = new ByteArrayOutputStream(); resourceTable.dumpStrings(new PrintStream(baos)); String content = new String(baos.toByteArray(), Charsets.UTF_8); Path stringsOutput = filesystem.resolve(filesystem.getPath(APK_NAME + ".strings")); String expected = new String(Files.readAllBytes(stringsOutput)); MoreAsserts.assertLargeStringsEqual(expected, content); } } }