Enable the Cross-Version ABI diff configuration so developers can specify different flags for current and previous version ABI Check. The -target-version flag were added to determine the config section to be selected. The details of this configuration logic could be found in go/cross-version-abi-diff-configuration. Test: preform abi diff with config.json Bug: 239792343 Change-Id: I8fdad2d18096cfa7866183ecc2d7826682c85eb6
102 lines
2.4 KiB
C++
102 lines
2.4 KiB
C++
// Copyright (C) 2019 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 "utils/config_file.h"
|
|
|
|
#include <sstream>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
namespace header_checker {
|
|
namespace utils {
|
|
|
|
|
|
TEST(ConfigFileTest, Parse) {
|
|
std::stringstream stream(R"(
|
|
// Comment line starts with slash
|
|
/* embedded comment */
|
|
{
|
|
"global": {
|
|
"flags": {
|
|
"key1": true,
|
|
"key2": false,
|
|
},
|
|
},
|
|
"library1": [
|
|
{
|
|
"target_version": "current",
|
|
"flags": {
|
|
"key1": true,
|
|
"key2": false,
|
|
},
|
|
},
|
|
{
|
|
"target_version": "34",
|
|
"flags": {
|
|
"key1": false,
|
|
"key2": true,
|
|
},
|
|
},
|
|
],
|
|
}
|
|
)");
|
|
|
|
ConfigFile cfg;
|
|
cfg.Load(stream);
|
|
EXPECT_TRUE(cfg.HasSection("global", ""));
|
|
EXPECT_TRUE(cfg.HasSection("library1", "current"));
|
|
EXPECT_FALSE(cfg.HasSection("library1", "35"));
|
|
EXPECT_FALSE(cfg.HasSection("library2", "current"));
|
|
|
|
auto &§ion1 = cfg.GetSection("global", "");
|
|
EXPECT_TRUE(section1.HasProperty("key1"));
|
|
EXPECT_TRUE(section1.GetProperty("key1"));
|
|
EXPECT_TRUE(section1.HasProperty("key2"));
|
|
EXPECT_FALSE(section1.GetProperty("key2"));
|
|
|
|
EXPECT_FALSE(section1.HasProperty("key3"));
|
|
EXPECT_FALSE(section1.GetProperty("key3"));
|
|
|
|
auto &§ion2 = cfg.GetSection("library1", "current");
|
|
EXPECT_TRUE(section2.HasProperty("key1"));
|
|
EXPECT_TRUE(section2.GetProperty("key1"));
|
|
EXPECT_TRUE(section2.HasProperty("key2"));
|
|
EXPECT_FALSE(section2.GetProperty("key2"));
|
|
|
|
EXPECT_TRUE(cfg.GetProperty("global", "", "key1"));
|
|
EXPECT_TRUE(cfg.GetProperty("library1", "34", "key2"));
|
|
|
|
EXPECT_TRUE(section1["key1"]);
|
|
EXPECT_FALSE(section2["key2"]);
|
|
}
|
|
|
|
TEST(ConfigFileTest, BadJsonFormat) {
|
|
std::stringstream stream(R"(
|
|
{
|
|
"section1: {
|
|
}
|
|
}
|
|
)");
|
|
|
|
ConfigFile cfg;
|
|
bool result = cfg.Load(stream);
|
|
|
|
EXPECT_FALSE(result);
|
|
}
|
|
|
|
|
|
} // namespace utils
|
|
} // namespace header_checker
|