summaryrefslogtreecommitdiffstats
path: root/vdslib/src/tests/state/cluster_state_bundle_test.cpp
blob: 4798fe505f8c65538ea208fbcb9d7dbda23f12b5 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vdslib/state/cluster_state_bundle.h>
#include <vespa/vdslib/state/clusterstate.h>

#include <cppunit/extensions/HelperMacros.h>

using document::BucketSpace;

namespace storage::lib {

using ClusterStatePtr = std::shared_ptr<const ClusterState>;

struct ClusterStateBundleTest : public CppUnit::TestFixture {
    CPPUNIT_TEST_SUITE(ClusterStateBundleTest);
    CPPUNIT_TEST(derived_state_is_returned_if_bucket_space_is_found);
    CPPUNIT_TEST(baseline_state_is_returned_if_bucket_space_is_not_found);
    CPPUNIT_TEST(verify_equality_operator);
    CPPUNIT_TEST_SUITE_END();

    void derived_state_is_returned_if_bucket_space_is_found();
    void baseline_state_is_returned_if_bucket_space_is_not_found();
    void verify_equality_operator();
};

CPPUNIT_TEST_SUITE_REGISTRATION(ClusterStateBundleTest);

struct Fixture {
    ClusterState baselineState;
    ClusterStatePtr derivedState;
    ClusterStateBundle bundle;
    Fixture()
        : baselineState("storage:2"),
          derivedState(std::make_shared<const ClusterState>("storage:2 .1.s:m")),
          bundle(baselineState, {{BucketSpace(1), derivedState}})
    {}
    ~Fixture() {}
};

void
ClusterStateBundleTest::derived_state_is_returned_if_bucket_space_is_found()
{
    Fixture f;
    CPPUNIT_ASSERT_EQUAL(*f.derivedState, *f.bundle.getDerivedClusterState(BucketSpace(1)));
}

void
ClusterStateBundleTest::baseline_state_is_returned_if_bucket_space_is_not_found()
{
    Fixture f;
    CPPUNIT_ASSERT_EQUAL(f.baselineState, *f.bundle.getDerivedClusterState(BucketSpace(2)));
}

ClusterStateBundle
makeBundle(const vespalib::string &baselineState, const std::map<BucketSpace, vespalib::string> &derivedStates)
{
    ClusterStateBundle::BucketSpaceStateMapping derivedBucketSpaceStates;
    for (const auto &entry : derivedStates) {
        derivedBucketSpaceStates[entry.first] = std::make_shared<const ClusterState>(entry.second);
    }
    return ClusterStateBundle(ClusterState(baselineState), std::move(derivedBucketSpaceStates));
}

void
ClusterStateBundleTest::verify_equality_operator()
{
    Fixture f;
    CPPUNIT_ASSERT(f.bundle != makeBundle("storage:3", {{BucketSpace(1), "storage:2 .1.s:m"}}));
    CPPUNIT_ASSERT(f.bundle != makeBundle("storage:2", {}));
    CPPUNIT_ASSERT(f.bundle != makeBundle("storage:2", {{BucketSpace(1), "storage:2 .0.s:m"}}));
    CPPUNIT_ASSERT(f.bundle != makeBundle("storage:2", {{BucketSpace(2), "storage:2 .1.s:m"}}));

    CPPUNIT_ASSERT_EQUAL(f.bundle, makeBundle("storage:2", {{BucketSpace(1), "storage:2 .1.s:m"}}));
}

}