blob: 5ee6f16b96c522671e5abdc763c8d21f61a0aa7b [file] [log] [blame]
Jagpal Singh Gill7e11ab02023-12-08 11:41:41 -08001#include "health_metric_config.hpp"
2
3#include <sdbusplus/test/sdbus_mock.hpp>
4
5#include <iostream>
6#include <set>
7#include <utility>
8
9#include <gtest/gtest.h>
10
11using namespace phosphor::health;
12using namespace phosphor::health::metric::config;
13
14constexpr auto minConfigSize = 1;
15
16TEST(HealthMonitorConfigTest, TestConfigSize)
17{
18 auto healthMetricConfigs = getHealthMetricConfigs();
19 EXPECT_GE(healthMetricConfigs.size(), minConfigSize);
20}
21
22bool isValidSubType(metric::Type type, metric::SubType subType)
23{
24 std::cout << "Metric Type: " << std::to_underlying(type)
25 << " Metric SubType: " << std::to_underlying(subType)
26 << std::endl;
27
28 using set_t = std::set<metric::SubType>;
29
30 switch (type)
31 {
32 case metric::Type::cpu:
33 return set_t{metric::SubType::cpuTotal, metric::SubType::cpuKernel,
34 metric::SubType::cpuUser}
35 .contains(subType);
36
37 case metric::Type::memory:
38 return set_t{metric::SubType::memoryAvailable,
39 metric::SubType::memoryBufferedAndCached,
40 metric::SubType::memoryFree,
41 metric::SubType::memoryShared,
42 metric::SubType::memoryTotal}
43 .contains(subType);
44
45 case metric::Type::storage:
Jagpal Singh Gill7e11ab02023-12-08 11:41:41 -080046 case metric::Type::inode:
47 return set_t{metric::SubType::NA}.contains(subType);
48
49 default:
50 return false;
51 }
52}
53
54TEST(HealthMonitorConfigTest, TestConfigValues)
55{
56 auto healthMetricConfigs = getHealthMetricConfigs();
Patrick Williamsc00c19e2024-02-23 19:07:32 -060057 auto count_with_thresholds = 0;
Jagpal Singh Gill7e11ab02023-12-08 11:41:41 -080058 for (const auto& [type, configs] : healthMetricConfigs)
59 {
60 EXPECT_NE(type, metric::Type::unknown);
61 EXPECT_GE(configs.size(), minConfigSize);
62 for (const auto& config : configs)
63 {
64 EXPECT_NE(config.name, std::string(""));
65 EXPECT_TRUE(isValidSubType(type, config.subType));
Jagpal Singh Gill7e11ab02023-12-08 11:41:41 -080066 EXPECT_GE(config.windowSize, HealthMetric::defaults::windowSize);
Jagpal Singh Gilla1027622024-03-05 17:57:33 -080067 EXPECT_GE(config.hysteresis, HealthMetric::defaults::hysteresis);
Patrick Williamsc00c19e2024-02-23 19:07:32 -060068 if (config.thresholds.size())
69 {
70 count_with_thresholds++;
71 }
Jagpal Singh Gill7e11ab02023-12-08 11:41:41 -080072 }
Patrick Williamsc00c19e2024-02-23 19:07:32 -060073
74 EXPECT_GE(count_with_thresholds, 1);
Jagpal Singh Gill7e11ab02023-12-08 11:41:41 -080075 }
76}