/* * 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. */ #define LOG_TAG "LibHidlTest" #include #include #include #include #include #include #include #include #include #include namespace android { namespace vintf { extern const XmlConverter &gVersionConverter; extern const XmlConverter &gManifestHalConverter; extern const XmlConverter &gMatrixHalConverter; extern const XmlConverter &gKernelConfigTypedValueConverter; extern const XmlConverter &gHalManifestConverter; extern const XmlConverter &gCompatibilityMatrixConverter; static bool Contains(const std::string& str, const std::string& sub) { return str.find(sub) != std::string::npos; } #define EXPECT_CONTAINS(str, sub) \ EXPECT_TRUE(Contains((str), (sub))) << "Cannot find \"" << (sub) << "\" in \"" << (str) << "\"" struct LibVintfTest : public ::testing::Test { public: virtual void SetUp() override { } virtual void TearDown() override { } bool add(CompatibilityMatrix &cm, MatrixHal &&hal) { return cm.add(std::move(hal)); } bool add(CompatibilityMatrix &cm, MatrixKernel &&kernel) { return cm.add(std::move(kernel)); } bool add(HalManifest &vm, ManifestHal &&hal) { return vm.add(std::move(hal)); } void addXmlFile(CompatibilityMatrix& cm, std::string name, VersionRange range) { MatrixXmlFile f; f.mName = name; f.mVersionRange = range; f.mFormat = XmlSchemaFormat::DTD; f.mOptional = true; cm.addXmlFile(std::move(f)); } void set(CompatibilityMatrix &cm, Sepolicy &&sepolicy) { cm.framework.mSepolicy = sepolicy; } void set(CompatibilityMatrix &cm, SchemaType type) { cm.mType = type; } void set(CompatibilityMatrix &cm, VndkVersionRange &&range, std::set &&libs) { cm.device.mVndk.mVersionRange = range; cm.device.mVndk.mLibraries = libs; } void setAvb(RuntimeInfo &ki, Version vbmeta, Version boot) { ki.mBootVbmetaAvbVersion = vbmeta; ki.mBootAvbVersion = boot; } void setAvb(CompatibilityMatrix &cm, Version &&avbVersion) { cm.framework.mAvbMetaVersion = avbVersion; } Version getAvb(CompatibilityMatrix &cm) { return cm.framework.mAvbMetaVersion; } const ManifestHal *getAnyHal(HalManifest &vm, const std::string &name) { return vm.getAnyHal(name); } MatrixHal *getAnyHal(CompatibilityMatrix &cm, const std::string &name) { return cm.getAnyHal(name); } ConstMultiMapValueIterable getHals(HalManifest &vm) { return vm.getHals(); } bool isValid(const ManifestHal &mh) { return mh.isValid(); } std::vector& getKernels(CompatibilityMatrix& cm) { return cm.framework.mKernels; } std::map testHalInterfaces() { HalInterface intf; intf.name = "IFoo"; intf.instances.insert("default"); std::map map; map[intf.name] = intf; return map; } HalManifest testDeviceManifest() { HalManifest vm; vm.mType = SchemaType::DEVICE; vm.device.mSepolicyVersion = {25, 0}; vm.add(ManifestHal{ .format = HalFormat::HIDL, .name = "android.hardware.camera", .versions = {Version(2, 0)}, .transportArch = {Transport::HWBINDER, Arch::ARCH_EMPTY}, .interfaces = { {"ICamera", {"ICamera", {"legacy/0", "default"}}}, {"IBetterCamera", {"IBetterCamera", {"camera"}}} } }); vm.add(ManifestHal{ .format = HalFormat::HIDL, .name = "android.hardware.nfc", .versions = {Version(1, 0)}, .transportArch = {Transport::PASSTHROUGH, Arch::ARCH_32_64}, .interfaces = { {"INfc", {"INfc", {"default"}}} } }); return vm; } HalManifest testDeviceManifestWithXmlFile() { HalManifest vm = testDeviceManifest(); ManifestXmlFile xmlFile; xmlFile.mName = "media_profile"; xmlFile.mVersion = {1, 0}; vm.addXmlFile(std::move(xmlFile)); return vm; } HalManifest testFrameworkManfiest() { HalManifest vm; vm.mType = SchemaType::FRAMEWORK; vm.add(ManifestHal{ .format = HalFormat::HIDL, .name = "android.hidl.manager", .versions = {Version(1, 0)}, .transportArch = {Transport::HWBINDER, Arch::ARCH_EMPTY}, .interfaces = { {"IServiceManager", {"IServiceManager", {"default"}}}, } }); Vndk vndk2505; vndk2505.mVersionRange = {25, 0, 5}; vndk2505.mLibraries = { "libjpeg.so", "libbase.so" }; Vndk vndk2513; vndk2513.mVersionRange = {25, 1, 3}; vndk2513.mLibraries = { "libjpeg.so", "libbase.so", "libtinyxml2.so" }; vm.framework.mVndks = { std::move(vndk2505), std::move(vndk2513) }; return vm; } RuntimeInfo testRuntimeInfo() { RuntimeInfo info; info.mOsName = "Linux"; info.mNodeName = "localhost"; info.mOsRelease = "3.18.31-g936f9a479d0f"; info.mKernelVersion = {3, 18, 31}; info.mOsVersion = "#4 SMP PREEMPT Wed Feb 1 18:10:52 PST 2017"; info.mHardwareId = "aarch64"; info.mKernelSepolicyVersion = 30; info.mKernelConfigs = { {"CONFIG_64BIT", "y"}, {"CONFIG_ANDROID_BINDER_DEVICES", "\"binder,hwbinder\""}, {"CONFIG_ARCH_MMAP_RND_BITS", "24"}, {"CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE_NAMES", "\"\""}, {"CONFIG_ILLEGAL_POINTER_VALUE", "0xdead000000000000"} }; setAvb(info, {2, 1}, {2, 1}); return info; } }; TEST_F(LibVintfTest, ArchOperatorOr) { Arch a = Arch::ARCH_EMPTY; a |= Arch::ARCH_32; EXPECT_EQ(Arch::ARCH_32, a); a |= Arch::ARCH_64; EXPECT_EQ(Arch::ARCH_32_64, a); a = Arch::ARCH_EMPTY; a |= Arch::ARCH_64; EXPECT_EQ(Arch::ARCH_64, a); } TEST_F(LibVintfTest, Stringify) { HalManifest vm = testDeviceManifest(); EXPECT_EQ(dump(vm), "hidl/android.hardware.camera/hwbinder/2.0:" "hidl/android.hardware.nfc/passthrough32+64/1.0"); EXPECT_EQ(to_string(HalFormat::HIDL), "hidl"); EXPECT_EQ(to_string(HalFormat::NATIVE), "native"); VersionRange v(1, 2, 3); EXPECT_EQ(to_string(v), "1.2-3"); VersionRange v2; EXPECT_TRUE(parse("1.2-3", &v2)); EXPECT_EQ(v, v2); } TEST_F(LibVintfTest, GetTransport) { HalManifest vm = testDeviceManifest(); EXPECT_EQ(Transport::HWBINDER, vm.getTransport("android.hardware.camera", {2, 0}, "ICamera", "default")); } TEST_F(LibVintfTest, HalManifestConverter) { HalManifest vm = testDeviceManifest(); std::string xml = gHalManifestConverter(vm); EXPECT_EQ(xml, "\n" " \n" " android.hardware.camera\n" " hwbinder\n" " 2.0\n" " \n" " IBetterCamera\n" " camera\n" " \n" " \n" " ICamera\n" " default\n" " legacy/0\n" " \n" " \n" " \n" " android.hardware.nfc\n" " passthrough\n" " 1.0\n" " \n" " INfc\n" " default\n" " \n" " \n" " \n" " 25.0\n" " \n" "\n"); HalManifest vm2; EXPECT_TRUE(gHalManifestConverter(&vm2, xml)); EXPECT_EQ(vm, vm2); } TEST_F(LibVintfTest, HalManifestConverterFramework) { HalManifest vm = testFrameworkManfiest(); std::string xml = gHalManifestConverter(vm); EXPECT_EQ(xml, "\n" " \n" " android.hidl.manager\n" " hwbinder\n" " 1.0\n" " \n" " IServiceManager\n" " default\n" " \n" " \n" " \n" " 25.0.5\n" " libbase.so\n" " libjpeg.so\n" " \n" " \n" " 25.1.3\n" " libbase.so\n" " libjpeg.so\n" " libtinyxml2.so\n" " \n" "\n"); HalManifest vm2; EXPECT_TRUE(gHalManifestConverter(&vm2, xml)); EXPECT_EQ(vm, vm2); } TEST_F(LibVintfTest, HalManifestOptional) { HalManifest vm; EXPECT_TRUE(gHalManifestConverter(&vm, "")); EXPECT_TRUE(gHalManifestConverter(&vm, "" " " " android.hidl.manager" " hwbinder" " 1.0" " " "")); EXPECT_FALSE(gHalManifestConverter(&vm, "" " " " android.hidl.manager" " 1.0" " " "")); } TEST_F(LibVintfTest, HalManifestNative) { HalManifest vm; EXPECT_TRUE(gHalManifestConverter(&vm, "" " " " foo" " 1.0" " " "")) << gHalManifestConverter.lastError(); EXPECT_FALSE(gHalManifestConverter(&vm, "" " " " foo" " 1.0" " hwbinder" " " "")); EXPECT_TRUE(gHalManifestConverter.lastError().find( "Native HAL 'foo' should not have defined") != std::string::npos); } TEST_F(LibVintfTest, HalManifestDuplicate) { HalManifest vm; EXPECT_FALSE(gHalManifestConverter(&vm, "" " " " android.hidl.manager" " hwbinder" " 1.0" " 1.1" " " "")) << "Should not allow duplicated major version in "; EXPECT_FALSE(gHalManifestConverter(&vm, "" " " " android.hidl.manager" " hwbinder" " 1.0" " " " " " android.hidl.manager" " passthrough" " 1.1" " " "")) << "Should not allow duplicated major version across "; } TEST_F(LibVintfTest, HalManifestGetTransport) { HalManifest vm; EXPECT_TRUE(gHalManifestConverter(&vm, "" " " " android.hidl.manager" " hwbinder" " 1.0" " " " IServiceManager" " default" " " " " " " " android.hidl.manager" " passthrough" " 2.1" " " " IServiceManager" " default" " " " " "")); EXPECT_EQ(Transport::PASSTHROUGH, vm.getTransport("android.hidl.manager", {2, 1}, "IServiceManager", "default")); EXPECT_EQ(Transport::PASSTHROUGH, vm.getTransport("android.hidl.manager", {2, 0}, "IServiceManager", "default")); EXPECT_EQ(Transport::EMPTY, vm.getTransport("android.hidl.manager", {2, 2}, "IServiceManager", "default")); EXPECT_EQ(Transport::HWBINDER, vm.getTransport("android.hidl.manager", {1, 0}, "IServiceManager", "default")); } TEST_F(LibVintfTest, HalManifestInstances) { HalManifest vm = testDeviceManifest(); EXPECT_EQ(vm.getInstances("android.hardware.camera", "ICamera"), std::set({"default", "legacy/0"})); EXPECT_EQ(vm.getInstances("android.hardware.camera", "IBetterCamera"), std::set({"camera"})); EXPECT_EQ(vm.getInstances("android.hardware.camera", "INotExist"), std::set({})); EXPECT_EQ(vm.getInstances("android.hardware.nfc", "INfc"), std::set({"default"})); EXPECT_TRUE(vm.hasInstance("android.hardware.camera", "ICamera", "default")); EXPECT_TRUE(vm.hasInstance("android.hardware.camera", "ICamera", "legacy/0")); EXPECT_TRUE(vm.hasInstance("android.hardware.camera", "IBetterCamera", "camera")); EXPECT_TRUE(vm.hasInstance("android.hardware.nfc", "INfc", "default")); EXPECT_FALSE(vm.hasInstance("android.hardware.camera", "INotExist", "default")); EXPECT_FALSE(vm.hasInstance("android.hardware.camera", "ICamera", "notexist")); EXPECT_FALSE(vm.hasInstance("android.hardware.camera", "IBetterCamera", "default")); EXPECT_FALSE(vm.hasInstance("android.hardware.camera", "INotExist", "notexist")); EXPECT_FALSE(vm.hasInstance("android.hardware.nfc", "INfc", "notexist")); } TEST_F(LibVintfTest, VersionConverter) { Version v(3, 6); std::string xml = gVersionConverter(v); EXPECT_EQ(xml, "3.6\n"); Version v2; EXPECT_TRUE(gVersionConverter(&v2, xml)); EXPECT_EQ(v, v2); } static bool insert(std::map* map, HalInterface&& intf) { std::string name{intf.name}; return map->emplace(std::move(name), std::move(intf)).second; } TEST_F(LibVintfTest, MatrixHalConverter) { MatrixHal mh{HalFormat::NATIVE, "android.hardware.camera", {{VersionRange(1,2,3), VersionRange(4,5,6)}}, false /* optional */, {}}; EXPECT_TRUE(insert(&mh.interfaces, {"IBetterCamera", {"default", "great"}})); EXPECT_TRUE(insert(&mh.interfaces, {"ICamera", {"default"}})); std::string xml = gMatrixHalConverter(mh); EXPECT_EQ(xml, "\n" " android.hardware.camera\n" " 1.2-3\n" " 4.5-6\n" " \n" " IBetterCamera\n" " default\n" " great\n" " \n" " \n" " ICamera\n" " default\n" " \n" "\n"); MatrixHal mh2; EXPECT_TRUE(gMatrixHalConverter(&mh2, xml)); EXPECT_EQ(mh, mh2); } TEST_F(LibVintfTest, KernelConfigTypedValueConverter) { KernelConfigTypedValue converted; auto testOne = [] (const KernelConfigTypedValue &original, const std::string &expectXml) { std::string xml; KernelConfigTypedValue converted; xml = gKernelConfigTypedValueConverter(original); EXPECT_EQ(xml, expectXml); EXPECT_TRUE(gKernelConfigTypedValueConverter(&converted, xml)); EXPECT_EQ(original, converted); }; auto testParse = [] (const KernelConfigTypedValue &original, const std::string &xml) { KernelConfigTypedValue converted; EXPECT_TRUE(gKernelConfigTypedValueConverter(&converted, xml)); EXPECT_EQ(original, converted); }; testOne(KernelConfigTypedValue("stringvalue"), "stringvalue\n"); testOne(KernelConfigTypedValue(""), "\n"); testOne(KernelConfigTypedValue(Tristate::YES), "y\n"); testOne(KernelConfigTypedValue(Tristate::NO), "n\n"); testOne(KernelConfigTypedValue(Tristate::MODULE), "m\n"); EXPECT_FALSE(gKernelConfigTypedValueConverter(&converted, "q\n")); testOne(KernelConfigTypedValue(KernelConfigRangeValue{4, 20}), "4-20\n"); testOne(KernelConfigTypedValue(KernelConfigRangeValue{0, UINT64_MAX}), "0-18446744073709551615\n"); testParse(KernelConfigTypedValue(KernelConfigRangeValue{0, UINT64_MAX}), "0x0-0xffffffffffffffff\n"); EXPECT_FALSE(gKernelConfigTypedValueConverter(&converted, "-18446744073709551616\n")); testOne(KernelConfigTypedValue(INT64_MIN), "-9223372036854775808\n"); testParse(KernelConfigTypedValue(INT64_MIN), "0x8000000000000000\n"); testParse(KernelConfigTypedValue(INT64_MIN), "-0X8000000000000000\n"); testParse(KernelConfigTypedValue(INT64_MIN + 1), "-0X7FFFFFFFFFFFFFFF\n"); testParse(KernelConfigTypedValue(-0x50), "-0x50\n"); testOne(KernelConfigTypedValue(0), "0\n"); // Truncation for underflow. testParse(KernelConfigTypedValue(1), "-0xffffffffffffffff\n"); testParse(KernelConfigTypedValue(1), "-18446744073709551615\n"); testOne(KernelConfigTypedValue(INT64_MAX), "9223372036854775807\n"); testParse(KernelConfigTypedValue(INT64_MAX), "0x7FFFFFFFFFFFFFFF\n"); // Truncation for underflow. testParse(KernelConfigTypedValue(INT64_MAX), "-9223372036854775809\n"); testParse(KernelConfigTypedValue(-1), "18446744073709551615\n"); testParse(KernelConfigTypedValue(-1), "0xffffffffffffffff\n"); EXPECT_FALSE(gKernelConfigTypedValueConverter(&converted, "18446744073709551616\n")); } TEST_F(LibVintfTest, CompatibilityMatrixConverter) { CompatibilityMatrix cm; EXPECT_TRUE(add(cm, MatrixHal{HalFormat::NATIVE, "android.hardware.camera", {{VersionRange(1,2,3), VersionRange(4,5,6)}}, false /* optional */, testHalInterfaces()})); EXPECT_TRUE(add(cm, MatrixHal{HalFormat::NATIVE, "android.hardware.nfc", {{VersionRange(4,5,6), VersionRange(10,11,12)}}, true /* optional */, testHalInterfaces()})); EXPECT_TRUE(add(cm, MatrixKernel{KernelVersion(3, 18, 22), {KernelConfig{"CONFIG_FOO", Tristate::YES}, KernelConfig{"CONFIG_BAR", "stringvalue"}}})); EXPECT_TRUE(add(cm, MatrixKernel{KernelVersion(4, 4, 1), {KernelConfig{"CONFIG_BAZ", 20}, KernelConfig{"CONFIG_BAR", KernelConfigRangeValue{3, 5} }}})); set(cm, Sepolicy(30, {{25, 0}, {26, 0, 3}})); setAvb(cm, Version{2, 1}); std::string xml = gCompatibilityMatrixConverter(cm); EXPECT_EQ(xml, "\n" " \n" " android.hardware.camera\n" " 1.2-3\n" " 4.5-6\n" " \n" " IFoo\n" " default\n" " \n" " \n" " \n" " android.hardware.nfc\n" " 4.5-6\n" " 10.11-12\n" " \n" " IFoo\n" " default\n" " \n" " \n" " \n" " \n" " CONFIG_FOO\n" " y\n" " \n" " \n" " CONFIG_BAR\n" " stringvalue\n" " \n" " \n" " \n" " \n" " CONFIG_BAZ\n" " 20\n" " \n" " \n" " CONFIG_BAR\n" " 3-5\n" " \n" " \n" " \n" " 30\n" " 25.0\n" " 26.0-3\n" " \n" " \n" " 2.1\n" " \n" "\n"); CompatibilityMatrix cm2; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm2, xml)); EXPECT_EQ(cm, cm2); } TEST_F(LibVintfTest, DeviceCompatibilityMatrixCoverter) { CompatibilityMatrix cm; EXPECT_TRUE(add(cm, MatrixHal{HalFormat::NATIVE, "android.hidl.manager", {{VersionRange(1,0)}}, false /* optional */, testHalInterfaces()})); set(cm, SchemaType::DEVICE); set(cm, VndkVersionRange{25,0,1,5}, {"libjpeg.so", "libbase.so"}); std::string xml = gCompatibilityMatrixConverter(cm); EXPECT_EQ(xml, "\n" " \n" " android.hidl.manager\n" " 1.0\n" " \n" " IFoo\n" " default\n" " \n" " \n" " \n" " 25.0.1-5\n" " libbase.so\n" " libjpeg.so\n" " \n" "\n"); CompatibilityMatrix cm2; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm2, xml)); EXPECT_EQ(cm, cm2); } TEST_F(LibVintfTest, IsValid) { EXPECT_TRUE(isValid(ManifestHal())); ManifestHal invalidHal{ .format = HalFormat::HIDL, .name = "android.hardware.camera", .versions = {{Version(2, 0), Version(2, 1)}}, .transportArch = {Transport::PASSTHROUGH, Arch::ARCH_32_64} }; EXPECT_FALSE(isValid(invalidHal)); HalManifest vm2; EXPECT_FALSE(add(vm2, std::move(invalidHal))); } TEST_F(LibVintfTest, HalManifestGetHalNames) { HalManifest vm = testDeviceManifest(); EXPECT_EQ(vm.getHalNames(), std::set( {"android.hardware.camera", "android.hardware.nfc"})); } TEST_F(LibVintfTest, HalManifestGetInterfaceNames) { HalManifest vm = testDeviceManifest(); EXPECT_EQ(vm.getInterfaceNames("android.hardware.camera"), std::set({"ICamera", "IBetterCamera"})); EXPECT_EQ(vm.getInterfaceNames("android.hardware.nfc"), std::set({"INfc"})); } TEST_F(LibVintfTest, HalManifestGetHal) { HalManifest vm = testDeviceManifest(); EXPECT_NE(getAnyHal(vm, "android.hardware.camera"), nullptr); EXPECT_EQ(getAnyHal(vm, "non-existent"), nullptr); std::vector arr{"android.hardware.camera", "android.hardware.nfc"}; size_t i = 0; for (const auto &hal : getHals(vm)) { EXPECT_EQ(hal.name, arr[i++]); } } TEST_F(LibVintfTest, RuntimeInfo) { RuntimeInfo ki = testRuntimeInfo(); using KernelConfigs = std::vector; const KernelConfigs configs { KernelConfig{"CONFIG_64BIT", Tristate::YES}, KernelConfig{"CONFIG_ANDROID_BINDER_DEVICES", "binder,hwbinder"}, KernelConfig{"CONFIG_ARCH_MMAP_RND_BITS", 24}, KernelConfig{"CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE_NAMES", ""}, KernelConfig{"CONFIG_ILLEGAL_POINTER_VALUE", 0xdead000000000000}, KernelConfig{"CONFIG_NOTEXIST", Tristate::NO}, }; auto testMatrix = [&] (MatrixKernel &&kernel) { CompatibilityMatrix cm; add(cm, std::move(kernel)); set(cm, {30, {{25, 0}}}); setAvb(cm, {2, 1}); return cm; }; std::string error; { MatrixKernel kernel(KernelVersion{4, 4, 1}, KernelConfigs(configs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); EXPECT_FALSE(ki.checkCompatibility(cm)) << "Kernel version shouldn't match"; } { MatrixKernel kernel(KernelVersion{3, 18, 60}, KernelConfigs(configs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); EXPECT_FALSE(ki.checkCompatibility(cm)) << "Kernel version shouldn't match"; } { MatrixKernel kernel(KernelVersion{3, 18, 22}, KernelConfigs(configs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); EXPECT_TRUE(ki.checkCompatibility(cm, &error)) << error; } { MatrixKernel kernel(KernelVersion{3, 18, 22}, KernelConfigs(configs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); set(cm, Sepolicy{22, {{25, 0}}}); EXPECT_FALSE(ki.checkCompatibility(cm, &error)) << "kernel-sepolicy-version shouldn't match"; set(cm, Sepolicy{40, {{25, 0}}}); EXPECT_FALSE(ki.checkCompatibility(cm, &error)) << "kernel-sepolicy-version shouldn't match"; } { KernelConfigs newConfigs(configs); newConfigs[0] = KernelConfig{"CONFIG_64BIT", Tristate::NO}; MatrixKernel kernel(KernelVersion{3, 18, 22}, std::move(newConfigs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); EXPECT_FALSE(ki.checkCompatibility(cm)) << "Value shouldn't match for tristate"; } { KernelConfigs newConfigs(configs); newConfigs[0] = KernelConfig{"CONFIG_64BIT", 20}; MatrixKernel kernel(KernelVersion{3, 18, 22}, std::move(newConfigs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); EXPECT_FALSE(ki.checkCompatibility(cm)) << "Type shouldn't match"; } { KernelConfigs newConfigs(configs); newConfigs[1] = KernelConfig{"CONFIG_ANDROID_BINDER_DEVICES", "binder"}; MatrixKernel kernel(KernelVersion{3, 18, 22}, std::move(newConfigs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); EXPECT_FALSE(ki.checkCompatibility(cm)) << "Value shouldn't match for string"; } { KernelConfigs newConfigs(configs); newConfigs[1] = KernelConfig{"CONFIG_ANDROID_BINDER_DEVICES", Tristate::YES}; MatrixKernel kernel(KernelVersion{3, 18, 22}, std::move(newConfigs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); EXPECT_FALSE(ki.checkCompatibility(cm)) << "Type shouldn't match"; } { KernelConfigs newConfigs(configs); newConfigs[2] = KernelConfig{"CONFIG_ARCH_MMAP_RND_BITS", 30}; MatrixKernel kernel(KernelVersion{3, 18, 22}, std::move(newConfigs)); CompatibilityMatrix cm = testMatrix(std::move(kernel)); EXPECT_FALSE(ki.checkCompatibility(cm)) << "Value shouldn't match for integer"; } RuntimeInfo badAvb = testRuntimeInfo(); CompatibilityMatrix cm = testMatrix(MatrixKernel(KernelVersion{3, 18, 31}, {})); { setAvb(badAvb, {1, 0}, {2, 1}); EXPECT_FALSE(badAvb.checkCompatibility(cm, &error)); EXPECT_STREQ(error.c_str(), "Vbmeta version 1.0 does not match framework matrix 2.1"); } { setAvb(badAvb, {2, 1}, {3, 0}); EXPECT_FALSE(badAvb.checkCompatibility(cm, &error)); } { setAvb(badAvb, {2, 1}, {2, 3}); EXPECT_TRUE(badAvb.checkCompatibility(cm, &error)); } { setAvb(badAvb, {2, 3}, {2, 1}); EXPECT_TRUE(badAvb.checkCompatibility(cm, &error)); } } TEST_F(LibVintfTest, MissingAvb) { std::string xml = "\n" " " " \n" " 30\n" " 25.5\n" " \n" "\n"; CompatibilityMatrix cm; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)); EXPECT_EQ(getAvb(cm), Version(0, 0)); } TEST_F(LibVintfTest, DisableAvb) { std::string xml = "\n" " " " \n" " 30\n" " 25.5\n" " \n" " \n" " 1.0\n" " \n" "\n"; CompatibilityMatrix cm; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)); RuntimeInfo ki = testRuntimeInfo(); std::string error; EXPECT_FALSE(ki.checkCompatibility(cm, &error)); EXPECT_STREQ(error.c_str(), "AVB version 2.1 does not match framework matrix 1.0"); EXPECT_TRUE(ki.checkCompatibility(cm, &error, DISABLE_AVB_CHECK)) << error; } // This is the test extracted from VINTF Object doc TEST_F(LibVintfTest, HalCompat) { CompatibilityMatrix matrix; std::string error; std::string matrixXml = "\n" " \n" " android.hardware.foo\n" " 1.0\n" " 3.1-2\n" " \n" " IFoo\n" " default\n" " specific\n" " \n" " \n" " \n" " android.hardware.foo\n" " 2.0\n" " \n" " IBar\n" " default\n" " \n" " \n" " \n" " 30\n" " 25.5\n" " \n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)) << gCompatibilityMatrixConverter.lastError(); { std::string manifestXml = "\n" " \n" " android.hardware.foo\n" " hwbinder\n" " 1.0\n" " \n" " IFoo\n" " default\n" " specific\n" " \n" " \n" " \n" " android.hardware.foo\n" " hwbinder\n" " 2.0\n" " \n" " IBar\n" " default\n" " \n" " \n" " \n" " 25.5\n" " \n" "\n"; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_TRUE(manifest.checkCompatibility(matrix, &error)) << error; } { std::string manifestXml = "\n" " \n" " android.hardware.foo\n" " hwbinder\n" " 1.0\n" " \n" " IFoo\n" " default\n" " specific\n" " \n" " \n" " \n" " 25.5\n" " \n" "\n"; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_FALSE(manifest.checkCompatibility(matrix, &error)) << "should not be compatible because IBar is missing"; } { std::string manifestXml = "\n" " \n" " android.hardware.foo\n" " hwbinder\n" " 1.0\n" " \n" " IFoo\n" " default\n" " \n" " \n" " \n" " android.hardware.foo\n" " hwbinder\n" " 2.0\n" " \n" " IBar\n" " default\n" " \n" " \n" " \n" " 25.5\n" " \n" "\n"; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_FALSE(manifest.checkCompatibility(matrix, &error)) << "should not be compatible because IFoo/default is missing"; } { std::string manifestXml = "\n" " \n" " android.hardware.foo\n" " hwbinder\n" " 3.3\n" " \n" " IFoo\n" " default\n" " specific\n" " \n" " \n" " \n" " android.hardware.foo\n" " hwbinder\n" " 2.0\n" " \n" " IBar\n" " default\n" " \n" " \n" " \n" " 25.5\n" " \n" "\n"; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_TRUE(manifest.checkCompatibility(matrix, &error)) << error; } { std::string manifestXml = "\n" " \n" " android.hardware.foo\n" " hwbinder\n" " 1.0\n" " \n" " IFoo\n" " default\n" " \n" " \n" " \n" " android.hardware.foo\n" " hwbinder\n" " 3.2\n" " \n" " IFoo\n" " specific\n" " \n" " \n" " \n" " android.hardware.foo\n" " hwbinder\n" " 2.0\n" " \n" " IBar\n" " default\n" " \n" " \n" " \n" " 25.5\n" " \n" "\n"; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_FALSE(manifest.checkCompatibility(matrix, &error)) << "should not be compatible even though @1.0::IFoo/default " << "and @3.2::IFoo/specific present"; } { std::string manifestXml = "\n" " \n" " android.hardware.foo\n" " hwbinder\n" " 1.0\n" " \n" " IFoo\n" " default\n" " specific\n" " \n" " \n" " \n" " android.hardware.foo\n" " hwbinder\n" " 2.0\n" " \n" " IBar\n" " default\n" " \n" " \n" " \n" " 25.5\n" " \n" "\n"; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)) << gHalManifestConverter.lastError(); EXPECT_TRUE(manifest.checkCompatibility(matrix, &error)) << error; } } TEST_F(LibVintfTest, Compat) { std::string manifestXml = "\n" " \n" " android.hardware.camera\n" " hwbinder\n" " 3.5\n" " \n" " IBetterCamera\n" " camera\n" " \n" " \n" " ICamera\n" " default\n" " legacy/0\n" " \n" " \n" " \n" " android.hardware.nfc\n" " hwbinder\n" " 1.0\n" " \n" " INfc\n" " nfc_nci\n" " \n" " \n" " \n" " android.hardware.nfc\n" " hwbinder\n" " 2.0\n" " \n" " INfc\n" " default\n" " nfc_nci\n" " \n" " \n" " \n" " 25.5\n" " \n" "\n"; std::string matrixXml = "\n" " \n" " android.hardware.camera\n" " 2.0-5\n" " 3.4-16\n" " \n" " IBetterCamera\n" " camera\n" " \n" " \n" " ICamera\n" " default\n" " legacy/0\n" " \n" " \n" " \n" " android.hardware.nfc\n" " 1.0\n" " 2.0\n" " \n" " INfc\n" " nfc_nci\n" " \n" " \n" " \n" " android.hardware.foo\n" " 1.0\n" " \n" " \n" " 30\n" " 25.5\n" " 26.0-3\n" " \n" " \n" " 2.1\n" " \n" "\n"; HalManifest manifest; CompatibilityMatrix matrix; std::string error; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_TRUE(manifest.checkCompatibility(matrix, &error)) << error; // some smaller test cases matrixXml = "\n" " \n" " android.hardware.camera\n" " 3.4\n" " \n" " \n" " 30\n" " 25.5\n" " \n" " 2.1\n" "\n"; matrix = {}; EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_TRUE(manifest.checkCompatibility(matrix, &error)) << error; MatrixHal *camera = getAnyHal(matrix, "android.hardware.camera"); EXPECT_NE(camera, nullptr); camera->versionRanges[0] = {3, 5}; EXPECT_TRUE(manifest.checkCompatibility(matrix, &error)) << error; camera->versionRanges[0] = {3, 6}; EXPECT_FALSE(manifest.checkCompatibility(matrix)); // reset it matrix = {}; EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)); set(matrix, Sepolicy{30, {{26, 0}}}); EXPECT_FALSE(manifest.checkCompatibility(matrix)); set(matrix, Sepolicy{30, {{25, 6}}}); EXPECT_FALSE(manifest.checkCompatibility(matrix)); set(matrix, Sepolicy{30, {{25, 4}}}); EXPECT_TRUE(manifest.checkCompatibility(matrix, &error)) << error; } /////////////////// xmlfile tests TEST_F(LibVintfTest, HalManifestConverterXmlFile) { HalManifest vm = testDeviceManifestWithXmlFile(); std::string xml = gHalManifestConverter(vm); EXPECT_EQ(xml, "\n" " \n" " android.hardware.camera\n" " hwbinder\n" " 2.0\n" " \n" " IBetterCamera\n" " camera\n" " \n" " \n" " ICamera\n" " default\n" " legacy/0\n" " \n" " \n" " \n" " android.hardware.nfc\n" " passthrough\n" " 1.0\n" " \n" " INfc\n" " default\n" " \n" " \n" " \n" " 25.0\n" " \n" " \n" " media_profile\n" " 1.0\n" " \n" "\n"); HalManifest vm2; EXPECT_TRUE(gHalManifestConverter(&vm2, xml)); EXPECT_EQ(vm, vm2); } TEST_F(LibVintfTest, CompatibilityMatrixConverterXmlFile) { CompatibilityMatrix cm; addXmlFile(cm, "media_profile", {1, 0}); std::string xml = gCompatibilityMatrixConverter(cm); EXPECT_EQ(xml, "\n" " \n" " 0\n" " \n" " \n" " 0.0\n" " \n" " \n" " media_profile\n" " 1.0\n" " \n" "\n"); CompatibilityMatrix cm2; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm2, xml)); EXPECT_EQ(cm, cm2); } TEST_F(LibVintfTest, CompatibilityMatrixConverterXmlFile2) { std::string xml = "\n" " \n" " media_profile\n" " 1.0\n" " \n" "\n"; CompatibilityMatrix cm; EXPECT_FALSE(gCompatibilityMatrixConverter(&cm, xml)); EXPECT_EQ( "compatibility-matrix.xmlfile entry media_profile has to be optional for " "compatibility matrix version 1.0", gCompatibilityMatrixConverter.lastError()); } TEST_F(LibVintfTest, ManifestXmlFilePathDevice) { std::string manifestXml = "" " " " media_profile" " 1.0" " " ""; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_EQ(manifest.getXmlFilePath("media_profile", {1, 0}), "/vendor/etc/media_profile_V1_0.xml"); } TEST_F(LibVintfTest, ManifestXmlFilePathFramework) { std::string manifestXml = "" " " " media_profile" " 1.0" " " ""; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_EQ(manifest.getXmlFilePath("media_profile", {1, 0}), "/system/etc/media_profile_V1_0.xml"); } TEST_F(LibVintfTest, ManifestXmlFilePathOverride) { std::string manifestXml = "" " " " media_profile" " 1.0" " /vendor/etc/foo.xml" " " ""; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_EQ(manifest.getXmlFilePath("media_profile", {1, 0}), "/vendor/etc/foo.xml"); } TEST_F(LibVintfTest, ManifestXmlFilePathMissing) { std::string manifestXml = "" " " " media_profile" " 1.1" " " ""; HalManifest manifest; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_EQ(manifest.getXmlFilePath("media_profile", {1, 0}), ""); } TEST_F(LibVintfTest, MatrixXmlFilePathFramework) { std::string matrixXml = "" " " " media_profile" " 2.0-1" " " ""; CompatibilityMatrix matrix; EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_EQ(matrix.getXmlSchemaPath("media_profile", {2, 1}), "/system/etc/media_profile_V2_1.dtd"); } TEST_F(LibVintfTest, MatrixXmlFilePathDevice) { std::string matrixXml = "" " " " media_profile" " 2.0-1" " " ""; CompatibilityMatrix matrix; EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_EQ(matrix.getXmlSchemaPath("media_profile", {2, 0}), "/vendor/etc/media_profile_V2_1.xsd"); } TEST_F(LibVintfTest, MatrixXmlFilePathOverride) { std::string matrixXml = "" " " " media_profile" " 2.0-1" " /system/etc/foo.xsd" " " ""; CompatibilityMatrix matrix; EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_EQ(matrix.getXmlSchemaPath("media_profile", {2, 0}), "/system/etc/foo.xsd"); } TEST_F(LibVintfTest, MatrixXmlFilePathMissing) { std::string matrixXml = "" " " " media_profile" " 2.1" " " ""; CompatibilityMatrix matrix; EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_EQ(matrix.getXmlSchemaPath("media_profile", {2, 0}), ""); } std::pair processData(const std::string& data, bool processComments, bool relaxedFormat = false) { KernelConfigParser parser(processComments, relaxedFormat); const char* p = data.c_str(); size_t n = 0; size_t chunkSize; status_t status = OK; for (; n < data.size(); p += chunkSize, n += chunkSize) { chunkSize = std::min(5, data.size() - n); if ((status = parser.process(p, chunkSize)) != OK) { break; } } return {std::move(parser), status}; } TEST_F(LibVintfTest, KernelConfigParser) { // usage in /proc/config.gz const std::string data = "# CONFIG_NOT_SET is not set\n" "CONFIG_ONE=1\n" "CONFIG_Y=y\n" "CONFIG_STR=\"string\"\n"; auto pair = processData(data, false /* processComments */); ASSERT_EQ(OK, pair.second) << pair.first.error(); const auto& configs = pair.first.configs(); EXPECT_EQ(configs.find("CONFIG_ONE")->second, "1"); EXPECT_EQ(configs.find("CONFIG_Y")->second, "y"); EXPECT_EQ(configs.find("CONFIG_STR")->second, "\"string\""); EXPECT_EQ(configs.find("CONFIG_NOT_SET"), configs.end()); } TEST_F(LibVintfTest, KernelConfigParser2) { // usage in android-base.cfg const std::string data = "# CONFIG_NOT_SET is not set\n" "CONFIG_ONE=1\n" "CONFIG_Y=y\n" "CONFIG_STR=string\n" "# ignore_thiscomment\n" "# CONFIG_NOT_SET2 is not set\n"; auto pair = processData(data, true /* processComments */); ASSERT_EQ(OK, pair.second) << pair.first.error(); const auto& configs = pair.first.configs(); EXPECT_EQ(configs.find("CONFIG_ONE")->second, "1"); EXPECT_EQ(configs.find("CONFIG_Y")->second, "y"); EXPECT_EQ(configs.find("CONFIG_STR")->second, "string"); EXPECT_EQ(configs.find("CONFIG_NOT_SET")->second, "n"); EXPECT_EQ(configs.find("CONFIG_NOT_SET2")->second, "n"); } TEST_F(LibVintfTest, KernelConfigParserSpace) { // usage in android-base.cfg const std::string data = " # CONFIG_NOT_SET is not set \n" " CONFIG_ONE=1 # 'tis a one!\n" " CONFIG_TWO=2 #'tis a two! \n" " CONFIG_THREE=3#'tis a three! \n" " CONFIG_233=233#'tis a three! \n" "#yey! random comments\n" "CONFIG_Y=y \n" " CONFIG_YES=y#YES! \n" "CONFIG_STR=string\n" "CONFIG_HELLO=hello world! #still works\n" "CONFIG_WORLD=hello world! \n" "CONFIG_GOOD = good morning! #comments here\n" " CONFIG_MORNING = good morning! \n"; auto pair = processData(data, true /* processComments */, true /* relaxedFormat */); ASSERT_EQ(OK, pair.second) << pair.first.error(); const auto& configs = pair.first.configs(); EXPECT_EQ(configs.find("CONFIG_ONE")->second, "1"); EXPECT_EQ(configs.find("CONFIG_TWO")->second, "2"); EXPECT_EQ(configs.find("CONFIG_THREE")->second, "3"); EXPECT_EQ(configs.find("CONFIG_Y")->second, "y"); EXPECT_EQ(configs.find("CONFIG_STR")->second, "string"); EXPECT_EQ(configs.find("CONFIG_HELLO")->second, "hello world!") << "Value should be \"hello world!\" without trailing spaces"; EXPECT_EQ(configs.find("CONFIG_WORLD")->second, "hello world!") << "Value should be \"hello world!\" without trailing spaces"; EXPECT_EQ(configs.find("CONFIG_GOOD")->second, "good morning!") << "Value should be \"good morning!\" without leading or trailing spaces"; EXPECT_EQ(configs.find("CONFIG_MORNING")->second, "good morning!") << "Value should be \"good morning!\" without leading or trailing spaces"; EXPECT_EQ(configs.find("CONFIG_NOT_SET")->second, "n"); } TEST_F(LibVintfTest, NetutilsWrapperMatrix) { std::string matrixXml; CompatibilityMatrix matrix; matrixXml = "" " " " netutils-wrapper" " 1.0" " " ""; EXPECT_TRUE(gCompatibilityMatrixConverter(&matrix, matrixXml)) << gCompatibilityMatrixConverter.lastError(); // only host libvintf hardcodes netutils-wrapper version requirements #ifdef LIBVINTF_HOST matrixXml = "" " " " netutils-wrapper" " 1.0-1" " " ""; EXPECT_FALSE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_CONTAINS( gCompatibilityMatrixConverter.lastError(), "netutils-wrapper HAL must specify exactly one version x.0, but a range is provided. " "Perhaps you mean '1.0'?"); matrixXml = "" " " " netutils-wrapper" " 1.1" " " ""; EXPECT_FALSE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_CONTAINS( gCompatibilityMatrixConverter.lastError(), "netutils-wrapper HAL must specify exactly one version x.0, but minor version is not 0. " "Perhaps you mean '1.0'?"); matrixXml = "" " " " netutils-wrapper" " 1.0" " 2.0" " " ""; EXPECT_FALSE(gCompatibilityMatrixConverter(&matrix, matrixXml)); EXPECT_CONTAINS( gCompatibilityMatrixConverter.lastError(), "netutils-wrapper HAL must specify exactly one version x.0, but multiple element " "is specified."); #endif // LIBVINTF_HOST } TEST_F(LibVintfTest, NetutilsWrapperManifest) { std::string manifestXml; HalManifest manifest; manifestXml = "" " " " netutils-wrapper" " 1.0" " 2.0" " " ""; EXPECT_TRUE(gHalManifestConverter(&manifest, manifestXml)) << gHalManifestConverter.lastError(); // only host libvintf hardcodes netutils-wrapper version requirements #ifdef LIBVINTF_HOST manifestXml = "" " " " netutils-wrapper" " 1.1" " " ""; EXPECT_FALSE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_CONTAINS( gCompatibilityMatrixConverter.lastError(), "netutils-wrapper HAL must specify exactly one version x.0, but multiple element " "is specified."); manifestXml = "" " " " netutils-wrapper" " 1.0" " 2.1" " " ""; EXPECT_FALSE(gHalManifestConverter(&manifest, manifestXml)); EXPECT_CONTAINS( gCompatibilityMatrixConverter.lastError(), "netutils-wrapper HAL must specify exactly one version x.0, but multiple element " "is specified."); #endif // LIBVINTF_HOST } TEST_F(LibVintfTest, KernelConfigConditionTest) { std::string xml = "\n" " \n" " \n" " \n" " \n" " CONFIG_ARM\n" " y\n" " \n" " \n" " \n" " CONFIG_FOO\n" " y\n" " \n" " \n" " \n" " 30\n" " 25.0\n" " \n" " \n" " 2.1\n" " \n" "\n"; CompatibilityMatrix cm; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); const auto& kernels = getKernels(cm); ASSERT_GE(kernels.size(), 2u); ASSERT_TRUE(kernels[0].conditions().empty()); const auto& kernel = kernels[1]; const auto& cond = kernel.conditions(); ASSERT_FALSE(cond.empty()); EXPECT_EQ("CONFIG_ARM", cond.begin()->first); EXPECT_EQ(KernelConfigTypedValue(Tristate::YES), cond.begin()->second); EXPECT_FALSE(kernel.configs().empty()); EXPECT_EQ(xml, gCompatibilityMatrixConverter(cm)); } TEST_F(LibVintfTest, KernelConfigConditionEmptyTest) { std::string xml = "\n" " \n" " \n" " \n" " \n" " CONFIG_ARM\n" " y\n" " \n" " \n" " \n" "\n"; CompatibilityMatrix cm; EXPECT_FALSE(gCompatibilityMatrixConverter(&cm, xml)) << "Should not accept first kernel version with non-empty conditions"; EXPECT_EQ( "First for version 3.18 must have empty " "for backwards compatibility.", gCompatibilityMatrixConverter.lastError()); } TEST_F(LibVintfTest, KernelConfigConditionMatch) { RuntimeInfo runtime = testRuntimeInfo(); std::string error; std::string xml; CompatibilityMatrix cm; xml = "\n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " y\n" " \n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 24\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_TRUE(runtime.checkCompatibility(cm, &error)) << error; xml = "\n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " y\n" " \n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 26\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_FALSE(runtime.checkCompatibility(cm, &error)) << "conditions met, so CONFIG_ARCH_MMAP_RND_BITS should not match"; xml = "\n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " n\n" " \n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 26\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_TRUE(runtime.checkCompatibility(cm, &error)) << error; xml = "\n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " y\n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 24\n" " \n" " \n" " \n" " CONFIG_ILLEGAL_POINTER_VALUE\n" " 0xdead000000000000\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_TRUE(runtime.checkCompatibility(cm, &error)); xml = "\n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " y\n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 24\n" " \n" " \n" " \n" " CONFIG_ILLEGAL_POINTER_VALUE\n" " 0xbeaf000000000000\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_FALSE(runtime.checkCompatibility(cm, &error)) << "conditions have 'and' relationship, so CONFIG_ILLEGAL_POINTER_VALUE should not match"; xml = "\n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " y\n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 26\n" " \n" " \n" " \n" " CONFIG_ILLEGAL_POINTER_VALUE\n" " 0xbeaf000000000000\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_TRUE(runtime.checkCompatibility(cm, &error)) << error; xml = "\n" " \n" " \n" " CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE_NAMES\n" " \n" " \n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " y\n" " \n" " \n" " \n" " CONFIG_ILLEGAL_POINTER_VALUE\n" " 0xdead000000000000\n" " \n" " \n" " \n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 24\n" " \n" " \n" " \n" " CONFIG_ANDROID_BINDER_DEVICES\n" " binder,hwbinder\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_TRUE(runtime.checkCompatibility(cm, &error)) << error; xml = "\n" " \n" " \n" " CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE_NAMES\n" " \n" " \n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " y\n" " \n" " \n" " \n" " CONFIG_ILLEGAL_POINTER_VALUE\n" " 0xbeaf000000000000\n" " \n" " \n" " \n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 24\n" " \n" " \n" " \n" " CONFIG_ANDROID_BINDER_DEVICES\n" " binder,hwbinder\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_FALSE(runtime.checkCompatibility(cm, &error)) << "all fragments should be used."; xml = "\n" " \n" " \n" " CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE_NAMES\n" " \n" " \n" " \n" " \n" " \n" " \n" " CONFIG_64BIT\n" " y\n" " \n" " \n" " \n" " CONFIG_ILLEGAL_POINTER_VALUE\n" " 0xdead000000000000\n" " \n" " \n" " \n" " \n" " \n" " CONFIG_ARCH_MMAP_RND_BITS\n" " 24\n" " \n" " \n" " \n" " CONFIG_ANDROID_BINDER_DEVICES\n" " binder\n" " \n" " \n" " \n" " 30\n" " \n" " 2.1\n" "\n"; EXPECT_TRUE(gCompatibilityMatrixConverter(&cm, xml)) << gCompatibilityMatrixConverter.lastError(); EXPECT_FALSE(runtime.checkCompatibility(cm, &error)) << "all fragments should be used"; } // Run KernelConfigParserInvalidTest on processComments = {true, false} class KernelConfigParserInvalidTest : public ::testing::TestWithParam {}; TEST_P(KernelConfigParserInvalidTest, NonSet1) { const std::string data = "# CONFIG_NOT_EXIST is not sat\n"; auto pair = processData(data, GetParam() /* processComments */, true /* relaxedFormat */); ASSERT_EQ(OK, pair.second) << pair.first.error(); const auto& configs = pair.first.configs(); EXPECT_EQ(configs.find("CONFIG_NOT_EXIST"), configs.end()) << "CONFIG_NOT_EXIST should not exist because of typo"; } TEST_P(KernelConfigParserInvalidTest, InvalidLine1) { const std::string data = "FOO_CONFIG=foo\n"; ASSERT_NE(OK, processData(data, GetParam() /* processComments */, true /* relaxedFormat */).second); } TEST_P(KernelConfigParserInvalidTest, InvalidLine2) { const std::string data = "CONFIG_BAR-BAZ=foo\n"; ASSERT_NE(OK, processData(data, GetParam() /* processComments */, true /* relaxedFormat */).second); } INSTANTIATE_TEST_CASE_P(KernelConfigParser, KernelConfigParserInvalidTest, ::testing::Bool()); } // namespace vintf } // namespace android int main(int argc, char **argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }