blob: c0011b6d6e8977b80a49eb16e0089ed350a02e22 [file] [log] [blame]
Adam Lesinski9d9cc622014-08-29 14:10:04 -07001/*
Adam Lesinski7ad11102016-10-28 16:39:15 -07002 * Copyright (C) 2016 The Android Open Source Project
Adam Lesinski9d9cc622014-08-29 14:10:04 -07003 *
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
Adam Lesinski7ad11102016-10-28 16:39:15 -070017#include "androidfw/AssetManager2.h"
Adam Lesinski9d9cc622014-08-29 14:10:04 -070018
Adam Lesinski7ad11102016-10-28 16:39:15 -070019#include "android-base/logging.h"
Adam Lesinski4c67a472016-11-10 16:43:59 -080020
Adam Lesinski9d9cc622014-08-29 14:10:04 -070021#include "TestHelpers.h"
Adam Lesinski7ad11102016-10-28 16:39:15 -070022#include "data/styles/R.h"
Adam Lesinski9d9cc622014-08-29 14:10:04 -070023
Adam Lesinski4c67a472016-11-10 16:43:59 -080024namespace app = com::android::app;
Adam Lesinski9d9cc622014-08-29 14:10:04 -070025
Adam Lesinski4c67a472016-11-10 16:43:59 -080026namespace android {
Adam Lesinski9d9cc622014-08-29 14:10:04 -070027
Adam Lesinski7ad11102016-10-28 16:39:15 -070028class ThemeTest : public ::testing::Test {
29 public:
30 void SetUp() override {
31 style_assets_ = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
32 ASSERT_NE(nullptr, style_assets_);
33 }
Adam Lesinski9d9cc622014-08-29 14:10:04 -070034
Adam Lesinski7ad11102016-10-28 16:39:15 -070035 protected:
36 std::unique_ptr<ApkAssets> style_assets_;
37};
Adam Lesinski9d9cc622014-08-29 14:10:04 -070038
Adam Lesinski7ad11102016-10-28 16:39:15 -070039TEST_F(ThemeTest, EmptyTheme) {
40 AssetManager2 assetmanager;
41 assetmanager.SetApkAssets({style_assets_.get()});
Adam Lesinski9d9cc622014-08-29 14:10:04 -070042
Adam Lesinski7ad11102016-10-28 16:39:15 -070043 std::unique_ptr<Theme> theme = assetmanager.NewTheme();
44 EXPECT_EQ(0u, theme->GetChangingConfigurations());
45 EXPECT_EQ(&assetmanager, theme->GetAssetManager());
Adam Lesinski4c67a472016-11-10 16:43:59 -080046
Adam Lesinski7ad11102016-10-28 16:39:15 -070047 Res_value value;
48 uint32_t flags;
49 EXPECT_EQ(kInvalidCookie, theme->GetAttribute(app::R::attr::attr_one, &value, &flags));
50}
Adam Lesinski4c67a472016-11-10 16:43:59 -080051
Adam Lesinski7ad11102016-10-28 16:39:15 -070052TEST_F(ThemeTest, SingleThemeNoParent) {
53 AssetManager2 assetmanager;
54 assetmanager.SetApkAssets({style_assets_.get()});
55
56 std::unique_ptr<Theme> theme = assetmanager.NewTheme();
57 ASSERT_TRUE(theme->ApplyStyle(app::R::style::StyleOne));
58
59 Res_value value;
60 uint32_t flags;
61 ApkAssetsCookie cookie;
62
63 cookie = theme->GetAttribute(app::R::attr::attr_one, &value, &flags);
64 ASSERT_NE(kInvalidCookie, cookie);
65 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
66 EXPECT_EQ(1u, value.data);
67 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
68
69 cookie = theme->GetAttribute(app::R::attr::attr_two, &value, &flags);
70 ASSERT_NE(kInvalidCookie, cookie);
71 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
72 EXPECT_EQ(2u, value.data);
73 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
74}
75
76TEST_F(ThemeTest, SingleThemeWithParent) {
77 AssetManager2 assetmanager;
78 assetmanager.SetApkAssets({style_assets_.get()});
79
80 std::unique_ptr<Theme> theme = assetmanager.NewTheme();
81 ASSERT_TRUE(theme->ApplyStyle(app::R::style::StyleTwo));
82
83 Res_value value;
84 uint32_t flags;
85 ApkAssetsCookie cookie;
86
87 cookie = theme->GetAttribute(app::R::attr::attr_one, &value, &flags);
88 ASSERT_NE(kInvalidCookie, cookie);
89 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
90 EXPECT_EQ(1u, value.data);
91 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
92
93 cookie = theme->GetAttribute(app::R::attr::attr_two, &value, &flags);
94 ASSERT_NE(kInvalidCookie, cookie);
95 EXPECT_EQ(Res_value::TYPE_STRING, value.dataType);
96 EXPECT_EQ(0, cookie);
97 EXPECT_EQ(std::string("string"),
98 GetStringFromPool(assetmanager.GetStringPoolForCookie(0), value.data));
99 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
100
101 // This attribute should point to an attr_indirect, so the result should be 3.
102 cookie = theme->GetAttribute(app::R::attr::attr_three, &value, &flags);
103 ASSERT_NE(kInvalidCookie, cookie);
104 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
105 EXPECT_EQ(3u, value.data);
106 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
107}
108
109TEST_F(ThemeTest, MultipleThemesOverlaidNotForce) {
110 AssetManager2 assetmanager;
111 assetmanager.SetApkAssets({style_assets_.get()});
112
113 std::unique_ptr<Theme> theme = assetmanager.NewTheme();
114 ASSERT_TRUE(theme->ApplyStyle(app::R::style::StyleTwo));
115 ASSERT_TRUE(theme->ApplyStyle(app::R::style::StyleThree));
116
117 Res_value value;
118 uint32_t flags;
119 ApkAssetsCookie cookie;
120
121 // attr_one is still here from the base.
122 cookie = theme->GetAttribute(app::R::attr::attr_one, &value, &flags);
123 ASSERT_NE(kInvalidCookie, cookie);
124 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
125 EXPECT_EQ(1u, value.data);
126 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
127
128 // check for the new attr_six
129 cookie = theme->GetAttribute(app::R::attr::attr_six, &value, &flags);
130 ASSERT_NE(kInvalidCookie, cookie);
131 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
132 EXPECT_EQ(6u, value.data);
133 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
134
135 // check for the old attr_five (force=true was not used).
136 cookie = theme->GetAttribute(app::R::attr::attr_five, &value, &flags);
137 ASSERT_NE(kInvalidCookie, cookie);
138 EXPECT_EQ(Res_value::TYPE_REFERENCE, value.dataType);
139 EXPECT_EQ(app::R::string::string_one, value.data);
140 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
141}
142
143TEST_F(ThemeTest, MultipleThemesOverlaidForced) {
144 AssetManager2 assetmanager;
145 assetmanager.SetApkAssets({style_assets_.get()});
146
147 std::unique_ptr<Theme> theme = assetmanager.NewTheme();
148 ASSERT_TRUE(theme->ApplyStyle(app::R::style::StyleTwo));
149 ASSERT_TRUE(theme->ApplyStyle(app::R::style::StyleThree, true /* force */));
150
151 Res_value value;
152 uint32_t flags;
153 ApkAssetsCookie cookie;
154
155 // attr_one is still here from the base.
156 cookie = theme->GetAttribute(app::R::attr::attr_one, &value, &flags);
157 ASSERT_NE(kInvalidCookie, cookie);
158 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
159 EXPECT_EQ(1u, value.data);
160 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
161
162 // check for the new attr_six
163 cookie = theme->GetAttribute(app::R::attr::attr_six, &value, &flags);
164 ASSERT_NE(kInvalidCookie, cookie);
165 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
166 EXPECT_EQ(6u, value.data);
167 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
168
169 // check for the new attr_five (force=true was used).
170 cookie = theme->GetAttribute(app::R::attr::attr_five, &value, &flags);
171 ASSERT_NE(kInvalidCookie, cookie);
172 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
173 EXPECT_EQ(5u, value.data);
174 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
175}
176
177TEST_F(ThemeTest, CopyThemeSameAssetManager) {
178 AssetManager2 assetmanager;
179 assetmanager.SetApkAssets({style_assets_.get()});
180
181 std::unique_ptr<Theme> theme_one = assetmanager.NewTheme();
182 ASSERT_TRUE(theme_one->ApplyStyle(app::R::style::StyleOne));
183
184 Res_value value;
185 uint32_t flags;
186 ApkAssetsCookie cookie;
187
188 // attr_one is still here from the base.
189 cookie = theme_one->GetAttribute(app::R::attr::attr_one, &value, &flags);
190 ASSERT_NE(kInvalidCookie, cookie);
191 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
192 EXPECT_EQ(1u, value.data);
193 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
194
195 // attr_six is not here.
196 EXPECT_EQ(kInvalidCookie, theme_one->GetAttribute(app::R::attr::attr_six, &value, &flags));
197
198 std::unique_ptr<Theme> theme_two = assetmanager.NewTheme();
199 ASSERT_TRUE(theme_two->ApplyStyle(app::R::style::StyleThree));
200
201 // Copy the theme to theme_one.
202 ASSERT_TRUE(theme_one->SetTo(*theme_two));
203
204 // Clear theme_two to make sure we test that there WAS a copy.
205 theme_two->Clear();
206
207 // attr_one is now not here.
208 EXPECT_EQ(kInvalidCookie, theme_one->GetAttribute(app::R::attr::attr_one, &value, &flags));
209
210 // attr_six is now here because it was copied.
211 cookie = theme_one->GetAttribute(app::R::attr::attr_six, &value, &flags);
212 ASSERT_NE(kInvalidCookie, cookie);
213 EXPECT_EQ(Res_value::TYPE_INT_DEC, value.dataType);
214 EXPECT_EQ(6u, value.data);
215 EXPECT_EQ(static_cast<uint32_t>(ResTable_typeSpec::SPEC_PUBLIC), flags);
216}
217
218TEST_F(ThemeTest, FailToCopyThemeWithDifferentAssetManager) {
219 AssetManager2 assetmanager_one;
220 assetmanager_one.SetApkAssets({style_assets_.get()});
221
222 AssetManager2 assetmanager_two;
223 assetmanager_two.SetApkAssets({style_assets_.get()});
224
225 auto theme_one = assetmanager_one.NewTheme();
226 ASSERT_TRUE(theme_one->ApplyStyle(app::R::style::StyleOne));
227
228 auto theme_two = assetmanager_two.NewTheme();
229 ASSERT_TRUE(theme_two->ApplyStyle(app::R::style::StyleTwo));
230
231 EXPECT_FALSE(theme_one->SetTo(*theme_two));
Adam Lesinski9d9cc622014-08-29 14:10:04 -0700232}
233
Adam Lesinski4c67a472016-11-10 16:43:59 -0800234} // namespace android