summaryrefslogtreecommitdiffstats
path: root/test/utest.cpp
blob: dc80cc20939bebba26adc7abd4c3484ba71234cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <gtest/gtest.h>
#include <occ_events.hpp>
#include <occ_manager.hpp>
#include "powercap.hpp"

using namespace open_power::occ;

class VerifyOccInput : public ::testing::Test
{
    public:
        VerifyOccInput() :
            bus(sdbusplus::bus::new_default()),
            rc(sd_event_default(&event)),
            eventP(event),
            manager(bus, eventP),
            occStatus(bus, eventP, "/test/path/occ1", manager),
            pcap(bus,occStatus)
        {
            EXPECT_GE(rc, 0);
            event = nullptr;
        }
        ~VerifyOccInput()
        {}

        sdbusplus::bus::bus bus;
        sd_event* event;
        int rc;
        open_power::occ::EventPtr eventP;

        Manager manager;
        Status occStatus;
        powercap::PowerCap pcap;
};

TEST_F(VerifyOccInput, PcapDisabled) {
    uint32_t occInput = pcap.getOccInput(100,false);
    EXPECT_EQ(occInput, 0);
}

TEST_F(VerifyOccInput, PcapEnabled) {
    uint32_t occInput = pcap.getOccInput(100,true);
    EXPECT_EQ(occInput, 90);
}
OpenPOWER on IntegriCloud