summaryrefslogtreecommitdiffstats
path: root/src/test/need_to_introspect.cpp
blob: 6912619b45a04e241aad77f7e4979b598b6406b1 (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 "src/processing.hpp"

#include <gtest/gtest.h>

// Verify if name is empty, false is returned
TEST(NeedToIntrospect, PassEmptyName)
{
    WhiteBlackList whiteList;
    WhiteBlackList blackList;
    std::string process_name;

    EXPECT_FALSE(needToIntrospect(process_name, whiteList, blackList));
}

// Verify if name is on whitelist, true is returned
TEST(NeedToIntrospect, ValidWhiteListName)
{
    WhiteBlackList whiteList = {"xyz.openbmc_project"};
    WhiteBlackList blackList;
    std::string process_name = "xyz.openbmc_project.State.Host";

    EXPECT_TRUE(needToIntrospect(process_name, whiteList, blackList));
}

// Verify if name is on blacklist, false is returned
TEST(NeedToIntrospect, ValidBlackListName)
{
    WhiteBlackList whiteList;
    WhiteBlackList blackList = {"xyz.openbmc_project.State.Host"};
    std::string process_name = "xyz.openbmc_project.State.Host";

    EXPECT_FALSE(needToIntrospect(process_name, whiteList, blackList));
}

// Verify if name is on whitelist and blacklist, false is returned
TEST(NeedToIntrospect, ValidWhiteAndBlackListName)
{
    WhiteBlackList whiteList = {"xyz.openbmc_project"};
    WhiteBlackList blackList = {"xyz.openbmc_project.State.Host"};
    std::string process_name = "xyz.openbmc_project.State.Host";

    EXPECT_FALSE(needToIntrospect(process_name, whiteList, blackList));
}
OpenPOWER on IntegriCloud