1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
# Lint as: python2, python3
# Copyright 2017 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.
"""Tests for aar_resources_extractor."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import io
import os
import shutil
import unittest
import zipfile
# Do not edit this line. Copybara replaces it with PY2 migration helper.
import six
from tools.android import aar_resources_extractor
def _HostPath(path):
return os.path.normpath(path)
class AarResourcesExtractorTest(unittest.TestCase):
"""Unit tests for aar_resources_extractor.py."""
# Python 2 alias
if not hasattr(unittest.TestCase, "assertCountEqual"):
def assertCountEqual(self, *args):
return self.assertItemsEqual(*args)
def setUp(self):
os.chdir(os.environ["TEST_TMPDIR"])
def tearDown(self):
shutil.rmtree("out_dir")
def DirContents(self, d):
return [
_HostPath(six.ensure_str(path) + "/" + six.ensure_str(f))
for (path, _, files) in os.walk(d)
for f in files
]
def testNoResources(self):
aar = zipfile.ZipFile(io.BytesIO(), "w")
aar.writestr("res/", "")
os.makedirs("out_dir")
aar_resources_extractor.ExtractResources(aar, "out_dir")
self.assertEqual([_HostPath("out_dir/res/values/empty.xml")],
self.DirContents("out_dir"))
with open("out_dir/res/values/empty.xml", "r") as empty_xml:
self.assertEqual("<resources/>", empty_xml.read())
def testContainsResources(self):
aar = zipfile.ZipFile(io.BytesIO(), "w")
aar.writestr("res/values/values.xml", "some values")
aar.writestr("res/layouts/layout.xml", "some layout")
aar.writestr("assets/a", "some asset")
os.makedirs("out_dir")
aar_resources_extractor.ExtractResources(aar, "out_dir")
expected_resources = [
_HostPath("out_dir/res/values/values.xml"),
_HostPath("out_dir/res/layouts/layout.xml")
]
self.assertCountEqual(expected_resources, self.DirContents("out_dir"))
with open("out_dir/res/values/values.xml", "r") as values_xml:
self.assertEqual("some values", values_xml.read())
with open("out_dir/res/layouts/layout.xml", "r") as layout_xml:
self.assertEqual("some layout", layout_xml.read())
def testNoAssets(self):
aar = zipfile.ZipFile(io.BytesIO(), "w")
aar.writestr("assets/", "")
os.makedirs("out_dir")
aar_resources_extractor.ExtractAssets(aar, "out_dir")
expected_assets = [
_HostPath("out_dir/assets/empty_asset_generated_by_bazel~")
]
self.assertEqual(expected_assets, self.DirContents("out_dir"))
self.assertEqual(
os.stat("out_dir/assets/empty_asset_generated_by_bazel~").st_size, 0)
def testContainsAssets(self):
aar = zipfile.ZipFile(io.BytesIO(), "w")
aar.writestr("res/values/values.xml", "some values")
aar.writestr("assets/a", "some asset")
aar.writestr("assets/b", "some other asset")
os.makedirs("out_dir")
aar_resources_extractor.ExtractAssets(aar, "out_dir")
expected_resources = [
_HostPath("out_dir/assets/a"),
_HostPath("out_dir/assets/b")
]
self.assertCountEqual(expected_resources, self.DirContents("out_dir"))
with open("out_dir/assets/a", "r") as values_xml:
self.assertEqual("some asset", values_xml.read())
with open("out_dir/assets/b", "r") as layout_xml:
self.assertEqual("some other asset", layout_xml.read())
def testDatabinding(self):
aar = zipfile.ZipFile(io.BytesIO(), "w")
br_filepath = (
"data-binding/com.android.databinding.library.baseAdapters--br.bin")
setter_store_filepath = (
"data-binding/" +
"com.android.databinding.library.baseAdapters--setter_store.json")
aar.writestr(br_filepath, "br data")
aar.writestr(setter_store_filepath, "setter store data")
os.makedirs("out_dir/br")
os.makedirs("out_dir/setter_store")
aar_resources_extractor.ExtractDatabinding(aar, "br.bin", "out_dir/br")
aar_resources_extractor.ExtractDatabinding(aar, "setter_store.json",
"out_dir/setter_store")
with open("out_dir/br/" + br_filepath, "r") as f:
self.assertEqual("br data", f.read())
with open("out_dir/setter_store/" + setter_store_filepath, "r") as f:
self.assertEqual("setter store data", f.read())
if __name__ == "__main__":
unittest.main()
|