aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/statusreport/statusreport_test.cpp
blob: 10520912b2a63941125366e232a581bb78d74885 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/searchcore/proton/common/statusreport.h>

namespace proton {

TEST("require that default status report works")
{
    StatusReport sr(StatusReport::Params("foo"));

    EXPECT_EQUAL("foo", sr.getComponent());
    EXPECT_EQUAL(StatusReport::DOWN, sr.getState());
    EXPECT_EQUAL("", sr.getInternalState());
    EXPECT_EQUAL("", sr.getInternalConfigState());
    EXPECT_FALSE(sr.hasProgress());
    EXPECT_EQUAL("", sr.getMessage());
    EXPECT_EQUAL("state=", sr.getInternalStatesStr());
}

TEST("require that custom status report works")
{
    StatusReport sr(StatusReport::Params("foo").
            state(StatusReport::UPOK).
            internalState("mystate").
            internalConfigState("myconfigstate").
            progress(65).
            message("mymessage"));

    EXPECT_EQUAL("foo", sr.getComponent());
    EXPECT_EQUAL(StatusReport::UPOK, sr.getState());
    EXPECT_EQUAL("mystate", sr.getInternalState());
    EXPECT_EQUAL("myconfigstate", sr.getInternalConfigState());
    EXPECT_TRUE(sr.hasProgress());
    EXPECT_EQUAL(65, sr.getProgress());
    EXPECT_EQUAL("mymessage", sr.getMessage());
    EXPECT_EQUAL("state=mystate configstate=myconfigstate", sr.getInternalStatesStr());
}

}  // namespace proton

TEST_MAIN() { TEST_RUN_ALL(); }