Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 1 | #include "powercap.hpp" |
George Liu | 1390159 | 2021-06-03 14:13:21 +0800 | [diff] [blame] | 2 | #include "utils.hpp" |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 3 | |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 4 | #include <occ_events.hpp> |
Edward A. James | 636577f | 2017-10-06 10:53:55 -0500 | [diff] [blame] | 5 | #include <occ_manager.hpp> |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 6 | |
George Liu | bcef3b4 | 2021-09-10 12:39:02 +0800 | [diff] [blame] | 7 | #include <filesystem> |
George Liu | b5ca101 | 2021-09-10 12:53:11 +0800 | [diff] [blame] | 8 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 9 | #include <gtest/gtest.h> |
Andrew Geissler | 4cea4d2 | 2017-07-10 15:13:33 -0500 | [diff] [blame] | 10 | |
| 11 | using namespace open_power::occ; |
George Liu | 1390159 | 2021-06-03 14:13:21 +0800 | [diff] [blame] | 12 | using namespace open_power::occ::utils; |
Andrew Geissler | 4cea4d2 | 2017-07-10 15:13:33 -0500 | [diff] [blame] | 13 | |
| 14 | class VerifyOccInput : public ::testing::Test |
| 15 | { |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 16 | public: |
| 17 | VerifyOccInput() : |
George Liu | f3b7514 | 2021-06-10 11:22:50 +0800 | [diff] [blame] | 18 | rc(sd_event_default(&event)), eventP(event), manager(eventP), |
Sheldon Bailey | 16a5adb | 2025-06-10 14:10:06 -0500 | [diff] [blame^] | 19 | occStatus(eventP, "/test/path/occ1", manager, powerMode), |
Patrick Williams | 89e54fa | 2024-02-28 11:32:51 -0600 | [diff] [blame] | 20 | pcap(occStatus) |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 21 | { |
| 22 | EXPECT_GE(rc, 0); |
| 23 | event = nullptr; |
| 24 | } |
Patrick Williams | a49c987 | 2023-05-10 07:50:35 -0500 | [diff] [blame] | 25 | ~VerifyOccInput() {} |
Andrew Geissler | 4cea4d2 | 2017-07-10 15:13:33 -0500 | [diff] [blame] | 26 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 27 | sd_event* event; |
| 28 | int rc; |
| 29 | open_power::occ::EventPtr eventP; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 30 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 31 | Manager manager; |
| 32 | Status occStatus; |
Sheldon Bailey | 16a5adb | 2025-06-10 14:10:06 -0500 | [diff] [blame^] | 33 | |
Patrick Williams | 89e54fa | 2024-02-28 11:32:51 -0600 | [diff] [blame] | 34 | std::unique_ptr<powermode::PowerMode> powerMode = nullptr; |
Sheldon Bailey | 16a5adb | 2025-06-10 14:10:06 -0500 | [diff] [blame^] | 35 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 36 | powercap::PowerCap pcap; |
Andrew Geissler | 4cea4d2 | 2017-07-10 15:13:33 -0500 | [diff] [blame] | 37 | }; |
| 38 | |
Eddie James | 774f9af | 2019-03-19 20:58:53 +0000 | [diff] [blame] | 39 | TEST(VerifyPathParsing, EmptyPath) |
| 40 | { |
George Liu | bcef3b4 | 2021-09-10 12:39:02 +0800 | [diff] [blame] | 41 | std::filesystem::path path = ""; |
Eddie James | 774f9af | 2019-03-19 20:58:53 +0000 | [diff] [blame] | 42 | std::string parsed = Device::getPathBack(path); |
| 43 | |
| 44 | EXPECT_STREQ(parsed.c_str(), ""); |
| 45 | } |
| 46 | |
| 47 | TEST(VerifyPathParsing, FilenamePath) |
| 48 | { |
George Liu | bcef3b4 | 2021-09-10 12:39:02 +0800 | [diff] [blame] | 49 | std::filesystem::path path = "/test/foo.bar"; |
Eddie James | 774f9af | 2019-03-19 20:58:53 +0000 | [diff] [blame] | 50 | std::string parsed = Device::getPathBack(path); |
| 51 | |
| 52 | EXPECT_STREQ(parsed.c_str(), "foo.bar"); |
| 53 | } |
| 54 | |
| 55 | TEST(VerifyPathParsing, DirectoryPath) |
| 56 | { |
George Liu | bcef3b4 | 2021-09-10 12:39:02 +0800 | [diff] [blame] | 57 | std::filesystem::path path = "/test/bar/"; |
Eddie James | 774f9af | 2019-03-19 20:58:53 +0000 | [diff] [blame] | 58 | std::string parsed = Device::getPathBack(path); |
| 59 | |
| 60 | EXPECT_STREQ(parsed.c_str(), "bar"); |
| 61 | } |