You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.6 KiB
44 lines
1.6 KiB
/*
|
|
* Copyright (C) 2020 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 <aidl/metadata.h>
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <optional>
|
|
|
|
using ::android::AidlInterfaceMetadata;
|
|
using ::testing::ElementsAre;
|
|
|
|
static std::optional<AidlInterfaceMetadata> metadataForModule(const std::string& name) {
|
|
for (const AidlInterfaceMetadata& info : AidlInterfaceMetadata::all()) {
|
|
if (name == info.name) return info;
|
|
}
|
|
return std::nullopt;
|
|
}
|
|
|
|
TEST(AidlMetadata, HasTestInstances) {
|
|
const auto& info = metadataForModule("test-piece-1");
|
|
ASSERT_NE(info, std::nullopt);
|
|
EXPECT_EQ(info->stability, "");
|
|
EXPECT_THAT(info->types,
|
|
ElementsAre("some_package.IFoo", "some_package.Thing",
|
|
"some_package.sub_package.IFoo", "some_package.sub_package.SubThing"));
|
|
EXPECT_THAT(info->hashes, ElementsAre("13e24b2fac6a979971819fba2ab0d6d7c4182122",
|
|
"dc2a9292847e43b4360bb183f7491f0e9895eaa9",
|
|
"54f935920ab0934c242145cf00f9852ae3f5a63e"));
|
|
}
|