| #include "mocks/report_manager_mock.hpp" |
| #include "trigger_actions.hpp" |
| |
| #include <stdexcept> |
| |
| using namespace testing; |
| |
| namespace action |
| { |
| namespace numeric |
| { |
| using LogParam = std::tuple<::numeric::Type, double, double>; |
| |
| static auto getCorrectParams() |
| { |
| return Values(std::make_tuple(::numeric::Type::upperCritical, 91.1, 90), |
| std::make_tuple(::numeric::Type::lowerCritical, 91.2, 90), |
| std::make_tuple(::numeric::Type::upperWarning, 88.5, 90), |
| std::make_tuple(::numeric::Type::lowerWarning, 88.6, 90)); |
| } |
| |
| static auto getIncorrectParams() |
| { |
| return Values( |
| std::make_tuple(::numeric::Type::upperCritical, 90.0, 90), |
| std::make_tuple(static_cast<::numeric::Type>(-1), 88.0, 90), |
| std::make_tuple(static_cast<::numeric::Type>(123), 123.0, 90)); |
| } |
| |
| class TestLogToJournalNumeric : public Test, public WithParamInterface<LogParam> |
| { |
| public: |
| void SetUp() override |
| { |
| auto [type, threshold, value] = GetParam(); |
| sut = std::make_unique<numeric::LogToJournal>(type, threshold); |
| commmitValue = value; |
| } |
| |
| std::unique_ptr<numeric::LogToJournal> sut; |
| double commmitValue; |
| }; |
| |
| INSTANTIATE_TEST_SUITE_P(LogToJournalNumericParams, TestLogToJournalNumeric, |
| getCorrectParams()); |
| |
| TEST_P(TestLogToJournalNumeric, commitAnActionDoesNotThrow) |
| { |
| EXPECT_NO_THROW(sut->commit("Test", 100'000, commmitValue)); |
| } |
| |
| class TestLogToJournalNumericThrow : public TestLogToJournalNumeric |
| {}; |
| |
| INSTANTIATE_TEST_SUITE_P(_, TestLogToJournalNumericThrow, getIncorrectParams()); |
| |
| TEST_P(TestLogToJournalNumericThrow, commitAnActionExpectThrow) |
| { |
| EXPECT_THROW(sut->commit("Test", 100'000, commmitValue), |
| std::runtime_error); |
| } |
| |
| class TestLogToRedfishNumeric : public Test, public WithParamInterface<LogParam> |
| { |
| public: |
| void SetUp() override |
| { |
| auto [type, threshold, value] = GetParam(); |
| sut = std::make_unique<LogToRedfish>(type, threshold); |
| commmitValue = value; |
| } |
| |
| std::unique_ptr<LogToRedfish> sut; |
| double commmitValue; |
| }; |
| |
| INSTANTIATE_TEST_SUITE_P(LogToRedfishNumericParams, TestLogToRedfishNumeric, |
| getCorrectParams()); |
| |
| TEST_P(TestLogToRedfishNumeric, commitExpectNoThrow) |
| { |
| EXPECT_NO_THROW(sut->commit("Test", 100'000, commmitValue)); |
| } |
| |
| class TestLogToRedfishNumericThrow : public TestLogToRedfishNumeric |
| {}; |
| |
| INSTANTIATE_TEST_SUITE_P(_, TestLogToRedfishNumericThrow, getIncorrectParams()); |
| |
| TEST_P(TestLogToRedfishNumericThrow, commitExpectToThrow) |
| { |
| EXPECT_THROW(sut->commit("Test", 100'000, commmitValue), |
| std::runtime_error); |
| } |
| |
| } // namespace numeric |
| |
| namespace discrete |
| { |
| using LogParam = ::discrete::Severity; |
| |
| static auto getCorrectParams() |
| { |
| return Values(::discrete::Severity::critical, ::discrete::Severity::warning, |
| ::discrete::Severity::ok); |
| } |
| |
| static auto getIncorrectParams() |
| { |
| return Values(static_cast<::discrete::Severity>(-1), |
| static_cast<::discrete::Severity>(42)); |
| } |
| |
| class TestLogToJournalDiscrete : |
| public Test, |
| public WithParamInterface<LogParam> |
| { |
| public: |
| void SetUp() override |
| { |
| auto severity = GetParam(); |
| sut = std::make_unique<LogToJournal>(severity); |
| } |
| |
| std::unique_ptr<LogToJournal> sut; |
| }; |
| |
| INSTANTIATE_TEST_SUITE_P(LogToJournalDiscreteParams, TestLogToJournalDiscrete, |
| getCorrectParams()); |
| |
| TEST_P(TestLogToJournalDiscrete, commitAnActionDoesNotThrow) |
| { |
| EXPECT_NO_THROW(sut->commit("Test", 100'000, 90.0)); |
| } |
| |
| class TestLogToJournalDiscreteThrow : public TestLogToJournalDiscrete |
| {}; |
| |
| INSTANTIATE_TEST_SUITE_P(_, TestLogToJournalDiscreteThrow, |
| getIncorrectParams()); |
| |
| TEST_P(TestLogToJournalDiscreteThrow, commitAnActionExpectThrow) |
| { |
| EXPECT_THROW(sut->commit("Test", 100'000, 90.0), std::runtime_error); |
| } |
| |
| class TestLogToRedfishDiscrete : |
| public Test, |
| public WithParamInterface<LogParam> |
| { |
| public: |
| void SetUp() override |
| { |
| auto severity = GetParam(); |
| sut = std::make_unique<LogToRedfish>(severity); |
| } |
| |
| std::unique_ptr<LogToRedfish> sut; |
| }; |
| |
| INSTANTIATE_TEST_SUITE_P(LogToRedfishDiscreteParams, TestLogToRedfishDiscrete, |
| getCorrectParams()); |
| |
| TEST_P(TestLogToRedfishDiscrete, commitExpectNoThrow) |
| { |
| EXPECT_NO_THROW(sut->commit("Test", 100'000, 90.0)); |
| } |
| |
| class TestLogToRedfishDiscreteThrow : public TestLogToRedfishDiscrete |
| {}; |
| |
| INSTANTIATE_TEST_SUITE_P(_, TestLogToRedfishDiscreteThrow, |
| getIncorrectParams()); |
| |
| TEST_P(TestLogToRedfishDiscreteThrow, commitExpectToThrow) |
| { |
| EXPECT_THROW(sut->commit("Test", 100'000, 90.0), std::runtime_error); |
| } |
| |
| namespace onChange |
| { |
| class TestLogToJournalDiscreteOnChange : public Test |
| { |
| public: |
| void SetUp() override |
| { |
| sut = std::make_unique<LogToJournal>(); |
| } |
| |
| std::unique_ptr<LogToJournal> sut; |
| }; |
| |
| TEST_F(TestLogToJournalDiscreteOnChange, commitExpectNoThrow) |
| { |
| EXPECT_NO_THROW(sut->commit("Test", 100'000, 90.0)); |
| } |
| |
| class TestLogToRedfishDiscreteOnChange : public Test |
| { |
| public: |
| void SetUp() override |
| { |
| sut = std::make_unique<LogToRedfish>(); |
| } |
| |
| std::unique_ptr<LogToRedfish> sut; |
| }; |
| |
| TEST_F(TestLogToRedfishDiscreteOnChange, commitExpectNoThrow) |
| { |
| EXPECT_NO_THROW(sut->commit("Test", 100'000, 90.0)); |
| } |
| } // namespace onChange |
| } // namespace discrete |
| |
| class TestUpdateReport : public Test |
| { |
| public: |
| void make(std::vector<std::string> names) |
| { |
| sut = std::make_unique<UpdateReport>(reportManager, std::move(names)); |
| } |
| |
| NiceMock<ReportManagerMock> reportManager; |
| std::unique_ptr<UpdateReport> sut; |
| }; |
| |
| TEST_F(TestUpdateReport, commitWhenReportNameIsEmptyExpectNoReportUpdate) |
| { |
| EXPECT_CALL(reportManager, updateReport(_)).Times(0); |
| |
| make({}); |
| sut->commit("Test", 100'000, 90.0); |
| } |
| |
| TEST_F(TestUpdateReport, commitExpectReportUpdate) |
| { |
| std::vector<std::string> names = {"Report1", "Report2", "Report3"}; |
| for (const auto& name : names) |
| { |
| EXPECT_CALL(reportManager, updateReport(name)); |
| } |
| |
| make(names); |
| sut->commit("Test", 100'000, 90.0); |
| } |
| |
| } // namespace action |