File: IdAssigner_test.cpp

package info (click to toggle)
android-platform-frameworks-base 1%3A10.0.0%2Br36-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 321,788 kB
  • sloc: java: 962,234; cpp: 274,314; xml: 242,770; python: 5,060; sh: 1,432; ansic: 494; makefile: 47; sed: 19
file content (185 lines) | stat: -rw-r--r-- 7,145 bytes parent folder | download | duplicates (3)
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/*
 * Copyright (C) 2015 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 "compile/IdAssigner.h"

#include "test/Test.h"

namespace aapt {

::testing::AssertionResult VerifyIds(ResourceTable* table);

TEST(IdAssignerTest, AssignIds) {
  std::unique_ptr<ResourceTable> table = test::ResourceTableBuilder()
                                             .AddSimple("android:attr/foo")
                                             .AddSimple("android:attr/bar")
                                             .AddSimple("android:id/foo")
                                             .SetPackageId("android", 0x01)
                                             .Build();

  std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
  IdAssigner assigner;

  ASSERT_TRUE(assigner.Consume(context.get(), table.get()));
  ASSERT_TRUE(VerifyIds(table.get()));
}

TEST(IdAssignerTest, AssignIdsWithReservedIds) {
  std::unique_ptr<ResourceTable> table =
      test::ResourceTableBuilder()
          .AddSimple("android:id/foo", ResourceId(0x01010000))
          .AddSimple("android:dimen/two")
          .AddSimple("android:integer/three")
          .AddSimple("android:string/five")
          .AddSimple("android:attr/fun", ResourceId(0x01040000))
          .AddSimple("android:attr/foo", ResourceId(0x01040006))
          .AddSimple("android:attr/bar")
          .AddSimple("android:attr/baz")
          .AddSimple("app:id/biz")
          .SetPackageId("android", 0x01)
          .SetPackageId("app", 0x7f)
          .Build();

  std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
  IdAssigner assigner;

  ASSERT_TRUE(assigner.Consume(context.get(), table.get()));
  ASSERT_TRUE(VerifyIds(table.get()));

  Maybe<ResourceTable::SearchResult> maybe_result;

  // Expect to fill in the gaps between 0x0101XXXX and 0x0104XXXX.

  maybe_result = table->FindResource(test::ParseNameOrDie("android:dimen/two"));
  ASSERT_TRUE(maybe_result);
  EXPECT_EQ(make_value<uint8_t>(2), maybe_result.value().type->id);

  maybe_result =
      table->FindResource(test::ParseNameOrDie("android:integer/three"));
  ASSERT_TRUE(maybe_result);
  EXPECT_EQ(make_value<uint8_t>(3), maybe_result.value().type->id);

  // Expect to bypass the reserved 0x0104XXXX IDs and use the next 0x0105XXXX
  // IDs.

  maybe_result =
      table->FindResource(test::ParseNameOrDie("android:string/five"));
  ASSERT_TRUE(maybe_result);
  EXPECT_EQ(make_value<uint8_t>(5), maybe_result.value().type->id);

  // Expect to fill in the gaps between 0x01040000 and 0x01040006.

  maybe_result = table->FindResource(test::ParseNameOrDie("android:attr/bar"));
  ASSERT_TRUE(maybe_result);
  EXPECT_EQ(make_value<uint16_t>(1), maybe_result.value().entry->id);

  maybe_result = table->FindResource(test::ParseNameOrDie("android:attr/baz"));
  ASSERT_TRUE(maybe_result);
  EXPECT_EQ(make_value<uint16_t>(2), maybe_result.value().entry->id);
}

TEST(IdAssignerTest, FailWhenNonUniqueIdsAssigned) {
  std::unique_ptr<ResourceTable> table =
      test::ResourceTableBuilder()
          .AddSimple("android:attr/foo", ResourceId(0x01040006))
          .AddSimple("android:attr/bar", ResourceId(0x01040006))
          .SetPackageId("android", 0x01)
          .SetPackageId("app", 0x7f)
          .Build();

  std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
  IdAssigner assigner;

  ASSERT_FALSE(assigner.Consume(context.get(), table.get()));
}

TEST(IdAssignerTest, AssignIdsWithIdMap) {
  std::unique_ptr<ResourceTable> table = test::ResourceTableBuilder()
                                             .AddSimple("android:attr/foo")
                                             .AddSimple("android:attr/bar")
                                             .SetPackageId("android", 0x01)
                                             .Build();

  std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
  std::unordered_map<ResourceName, ResourceId> id_map = {
      {test::ParseNameOrDie("android:attr/foo"), ResourceId(0x01010002)}};
  IdAssigner assigner(&id_map);
  ASSERT_TRUE(assigner.Consume(context.get(), table.get()));
  ASSERT_TRUE(VerifyIds(table.get()));
  Maybe<ResourceTable::SearchResult> result =
      table->FindResource(test::ParseNameOrDie("android:attr/foo"));
  ASSERT_TRUE(result);

  const ResourceTable::SearchResult& search_result = result.value();
  EXPECT_EQ(make_value<uint8_t>(0x01), search_result.package->id);
  EXPECT_EQ(make_value<uint8_t>(0x01), search_result.type->id);
  EXPECT_EQ(make_value<uint16_t>(0x0002), search_result.entry->id);
}

::testing::AssertionResult VerifyIds(ResourceTable* table) {
  std::set<uint8_t> package_ids;
  for (auto& package : table->packages) {
    if (!package->id) {
      return ::testing::AssertionFailure() << "package " << package->name
                                           << " has no ID";
    }

    if (!package_ids.insert(package->id.value()).second) {
      return ::testing::AssertionFailure()
             << "package " << package->name << " has non-unique ID " << std::hex
             << (int)package->id.value() << std::dec;
    }
  }

  for (auto& package : table->packages) {
    std::set<uint8_t> type_ids;
    for (auto& type : package->types) {
      if (!type->id) {
        return ::testing::AssertionFailure() << "type " << type->type
                                             << " of package " << package->name
                                             << " has no ID";
      }

      if (!type_ids.insert(type->id.value()).second) {
        return ::testing::AssertionFailure()
               << "type " << type->type << " of package " << package->name
               << " has non-unique ID " << std::hex << (int)type->id.value()
               << std::dec;
      }
    }

    for (auto& type : package->types) {
      std::set<uint16_t> entry_ids;
      for (auto& entry : type->entries) {
        if (!entry->id) {
          return ::testing::AssertionFailure()
                 << "entry " << entry->name << " of type " << type->type
                 << " of package " << package->name << " has no ID";
        }

        if (!entry_ids.insert(entry->id.value()).second) {
          return ::testing::AssertionFailure()
                 << "entry " << entry->name << " of type " << type->type
                 << " of package " << package->name << " has non-unique ID "
                 << std::hex << (int)entry->id.value() << std::dec;
        }
      }
    }
  }
  return ::testing::AssertionSuccess() << "all IDs are unique and assigned";
}

}  // namespace aapt