From 8f7c550e20a6edbc9af7bb48675afaf8bcb3783f Mon Sep 17 00:00:00 2001 From: Adam Lesinski Date: Thu, 2 Mar 2017 17:45:01 -0800 Subject: AAPT2: Fix Plural::Equals() method Test: make aapt2_tests Bug: 35902437 Change-Id: I8797f89af58876f891f0b0c5cce85fd7781c4e24 --- tools/aapt2/ResourceValues_test.cpp | 151 ++++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100644 tools/aapt2/ResourceValues_test.cpp (limited to 'tools/aapt2/ResourceValues_test.cpp') diff --git a/tools/aapt2/ResourceValues_test.cpp b/tools/aapt2/ResourceValues_test.cpp new file mode 100644 index 000000000000..692258003471 --- /dev/null +++ b/tools/aapt2/ResourceValues_test.cpp @@ -0,0 +1,151 @@ +/* + * Copyright (C) 2017 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 "ResourceValues.h" + +#include "test/Test.h" + +namespace aapt { + +TEST(ResourceValuesTest, PluralEquals) { + StringPool pool; + + Plural a; + a.values[Plural::One] = util::make_unique(pool.MakeRef("one")); + a.values[Plural::Other] = util::make_unique(pool.MakeRef("other")); + + Plural b; + b.values[Plural::One] = util::make_unique(pool.MakeRef("une")); + b.values[Plural::Other] = util::make_unique(pool.MakeRef("autre")); + + Plural c; + c.values[Plural::One] = util::make_unique(pool.MakeRef("one")); + c.values[Plural::Other] = util::make_unique(pool.MakeRef("other")); + + EXPECT_FALSE(a.Equals(&b)); + EXPECT_TRUE(a.Equals(&c)); +} + +TEST(ResourceValuesTest, PluralClone) { + StringPool pool; + + Plural a; + a.values[Plural::One] = util::make_unique(pool.MakeRef("one")); + a.values[Plural::Other] = util::make_unique(pool.MakeRef("other")); + + std::unique_ptr b(a.Clone(&pool)); + EXPECT_TRUE(a.Equals(b.get())); +} + +TEST(ResourceValuesTest, ArrayEquals) { + StringPool pool; + + Array a; + a.items.push_back(util::make_unique(pool.MakeRef("one"))); + a.items.push_back(util::make_unique(pool.MakeRef("two"))); + + Array b; + b.items.push_back(util::make_unique(pool.MakeRef("une"))); + b.items.push_back(util::make_unique(pool.MakeRef("deux"))); + + Array c; + c.items.push_back(util::make_unique(pool.MakeRef("uno"))); + + Array d; + d.items.push_back(util::make_unique(pool.MakeRef("one"))); + d.items.push_back(util::make_unique(pool.MakeRef("two"))); + + EXPECT_FALSE(a.Equals(&b)); + EXPECT_FALSE(a.Equals(&c)); + EXPECT_FALSE(b.Equals(&c)); + EXPECT_TRUE(a.Equals(&d)); +} + +TEST(ResourceValuesTest, ArrayClone) { + StringPool pool; + + Array a; + a.items.push_back(util::make_unique(pool.MakeRef("one"))); + a.items.push_back(util::make_unique(pool.MakeRef("two"))); + + std::unique_ptr b(a.Clone(&pool)); + EXPECT_TRUE(a.Equals(b.get())); +} + +TEST(ResourceValuesTest, StyleEquals) { + StringPool pool; + + std::unique_ptr