/** * Copyright © 2020 IBM Corporation * * 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 "action.hpp" #include "chassis.hpp" #include "configuration.hpp" #include "device.hpp" #include "i2c_interface.hpp" #include "id_map.hpp" #include "journal.hpp" #include "mock_journal.hpp" #include "presence_detection.hpp" #include "rail.hpp" #include "rule.hpp" #include "system.hpp" #include "test_utils.hpp" #include #include #include #include #include #include using namespace phosphor::power::regulators; using namespace phosphor::power::regulators::test_utils; TEST(ChassisTests, Constructor) { // Test where works: Only required parameters are specified { Chassis chassis{2}; EXPECT_EQ(chassis.getNumber(), 2); EXPECT_EQ(chassis.getDevices().size(), 0); } // Test where works: All parameters are specified { // Create vector of Device objects std::vector> devices{}; devices.emplace_back(createDevice("vdd_reg1")); devices.emplace_back(createDevice("vdd_reg2")); // Create Chassis Chassis chassis{1, std::move(devices)}; EXPECT_EQ(chassis.getNumber(), 1); EXPECT_EQ(chassis.getDevices().size(), 2); } // Test where fails: Invalid chassis number < 1 try { Chassis chassis{0}; ADD_FAILURE() << "Should not have reached this line."; } catch (const std::invalid_argument& e) { EXPECT_STREQ(e.what(), "Invalid chassis number: 0"); } catch (...) { ADD_FAILURE() << "Should not have caught exception."; } } TEST(ChassisTests, AddToIDMap) { // Create vector of Device objects std::vector> devices{}; devices.emplace_back(createDevice("reg1", {"rail1"})); devices.emplace_back(createDevice("reg2", {"rail2a", "rail2b"})); devices.emplace_back(createDevice("reg3")); // Create Chassis Chassis chassis{1, std::move(devices)}; // Add Device and Rail objects within the Chassis to an IDMap IDMap idMap{}; chassis.addToIDMap(idMap); // Verify all Devices are in the IDMap EXPECT_NO_THROW(idMap.getDevice("reg1")); EXPECT_NO_THROW(idMap.getDevice("reg2")); EXPECT_NO_THROW(idMap.getDevice("reg3")); EXPECT_THROW(idMap.getDevice("reg4"), std::invalid_argument); // Verify all Rails are in the IDMap EXPECT_NO_THROW(idMap.getRail("rail1")); EXPECT_NO_THROW(idMap.getRail("rail2a")); EXPECT_NO_THROW(idMap.getRail("rail2b")); EXPECT_THROW(idMap.getRail("rail3"), std::invalid_argument); } TEST(ChassisTests, Configure) { // Test where no devices were specified in constructor { // Create Chassis std::unique_ptr chassis = std::make_unique(1); Chassis* chassisPtr = chassis.get(); // Create System that contains Chassis std::vector> rules{}; std::vector> chassisVec{}; chassisVec.emplace_back(std::move(chassis)); System system{std::move(rules), std::move(chassisVec)}; // Call configure() journal::clear(); chassisPtr->configure(system); EXPECT_EQ(journal::getDebugMessages().size(), 0); EXPECT_EQ(journal::getErrMessages().size(), 0); std::vector expectedInfoMessages{"Configuring chassis 1"}; EXPECT_EQ(journal::getInfoMessages(), expectedInfoMessages); } // Test where devices were specified in constructor { std::vector> devices{}; // Create Device vdd0_reg { // Create Configuration std::vector> actions{}; std::unique_ptr configuration = std::make_unique(1.3, std::move(actions)); // Create Device std::unique_ptr i2cInterface = createI2CInterface(); std::unique_ptr presenceDetection{}; std::unique_ptr device = std::make_unique( "vdd0_reg", true, "/system/chassis/motherboard/vdd0_reg", std::move(i2cInterface), std::move(presenceDetection), std::move(configuration)); devices.emplace_back(std::move(device)); } // Create Device vdd1_reg { // Create Configuration std::vector> actions{}; std::unique_ptr configuration = std::make_unique(1.2, std::move(actions)); // Create Device std::unique_ptr i2cInterface = createI2CInterface(); std::unique_ptr presenceDetection{}; std::unique_ptr device = std::make_unique( "vdd1_reg", true, "/system/chassis/motherboard/vdd1_reg", std::move(i2cInterface), std::move(presenceDetection), std::move(configuration)); devices.emplace_back(std::move(device)); } // Create Chassis std::unique_ptr chassis = std::make_unique(2, std::move(devices)); Chassis* chassisPtr = chassis.get(); // Create System that contains Chassis std::vector> rules{}; std::vector> chassisVec{}; chassisVec.emplace_back(std::move(chassis)); System system{std::move(rules), std::move(chassisVec)}; // Call configure() journal::clear(); chassisPtr->configure(system); std::vector expectedDebugMessages{ "Configuring vdd0_reg: volts=1.300000", "Configuring vdd1_reg: volts=1.200000"}; EXPECT_EQ(journal::getDebugMessages(), expectedDebugMessages); EXPECT_EQ(journal::getErrMessages().size(), 0); std::vector expectedInfoMessages{"Configuring chassis 2"}; EXPECT_EQ(journal::getInfoMessages(), expectedInfoMessages); } } TEST(ChassisTests, GetDevices) { // Test where no devices were specified in constructor { Chassis chassis{2}; EXPECT_EQ(chassis.getDevices().size(), 0); } // Test where devices were specified in constructor { // Create vector of Device objects std::vector> devices{}; devices.emplace_back(createDevice("vdd_reg1")); devices.emplace_back(createDevice("vdd_reg2")); // Create Chassis Chassis chassis{1, std::move(devices)}; EXPECT_EQ(chassis.getDevices().size(), 2); EXPECT_EQ(chassis.getDevices()[0]->getID(), "vdd_reg1"); EXPECT_EQ(chassis.getDevices()[1]->getID(), "vdd_reg2"); } } TEST(ChassisTests, GetNumber) { Chassis chassis{3}; EXPECT_EQ(chassis.getNumber(), 3); }