aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/server/health_adapter/health_adapter_test.cpp
blob: c779645e7f4c127214edb7c9db04aaba6d2e550e (plain) (blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/searchcore/proton/server/health_adapter.h>
#include <vespa/searchcore/proton/common/statusreport.h>

using namespace proton;

struct MyStatusProducer : public StatusProducer {
    StatusReport::List list;
    ~MyStatusProducer() override;
    void add(const std::string &comp, StatusReport::State state,
             const std::string &msg)
    {
        list.push_back(StatusReport::SP(new StatusReport(StatusReport::Params(comp).
                state(state).message(msg))));
    }
    virtual StatusReport::List getStatusReports() const override {
        return list;
    }
};

MyStatusProducer::~MyStatusProducer() = default;

TEST_FF("require that empty status list passes health check", MyStatusProducer(), HealthAdapter(f1)) {
    EXPECT_TRUE(f2.getHealth().ok);
    EXPECT_EQUAL(std::string("All OK"), f2.getHealth().msg);
}

TEST_FF("require that UP components passes health check", MyStatusProducer(), HealthAdapter(f1)) {
    f1.add("c1", StatusReport::UPOK, "xxx");
    f1.add("c2", StatusReport::UPOK, "yyy");
    f1.add("c3", StatusReport::UPOK, "zzz");
    EXPECT_TRUE(f2.getHealth().ok);
    EXPECT_EQUAL(std::string("All OK"), f2.getHealth().msg);
}

TEST_FF("require that PARTIAL component fails health check", MyStatusProducer(), HealthAdapter(f1)) {
    f1.add("c1", StatusReport::UPOK, "xxx");
    f1.add("c2", StatusReport::PARTIAL, "yyy");
    f1.add("c3", StatusReport::UPOK, "zzz");
    EXPECT_FALSE(f2.getHealth().ok);
    EXPECT_EQUAL(std::string("c2: yyy"), f2.getHealth().msg);
}

TEST_FF("require that DOWN component fails health check", MyStatusProducer(), HealthAdapter(f1)) {
    f1.add("c1", StatusReport::UPOK, "xxx");
    f1.add("c2", StatusReport::DOWN, "yyy");
    f1.add("c3", StatusReport::UPOK, "zzz");
    EXPECT_FALSE(f2.getHealth().ok);
    EXPECT_EQUAL(std::string("c2: yyy"), f2.getHealth().msg);
}

TEST_FF("require that multiple failure messages are concatenated", MyStatusProducer(), HealthAdapter(f1)) {
    f1.add("c1", StatusReport::PARTIAL, "xxx");
    f1.add("c2", StatusReport::UPOK, "yyy");
    f1.add("c3", StatusReport::DOWN, "zzz");
    EXPECT_FALSE(f2.getHealth().ok);
    EXPECT_EQUAL(std::string("c1: xxx, c3: zzz"), f2.getHealth().msg);
}

TEST_MAIN() { TEST_RUN_ALL(); }