aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/tests/configholder/configholder.cpp
blob: b11d2009ebf1d193ce089b07c428457c8cf363dd (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/fastos/fastos.h>
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/config/common/configholder.h>

using namespace config;

TEST("Require that element order is correct")
{
    ConfigValue value(std::vector<vespalib::string>(), "foo");
    ConfigValue value2(std::vector<vespalib::string>(), "bar");

    ConfigHolder holder;
    holder.handle(ConfigUpdate::UP(new ConfigUpdate(value, true, 0)));
    std::unique_ptr<ConfigUpdate> update = holder.provide();
    ASSERT_TRUE(value == update->getValue());

    holder.handle(ConfigUpdate::UP(new ConfigUpdate(value, false, 1)));
    holder.handle(ConfigUpdate::UP(new ConfigUpdate(value2, false, 2)));
    update = holder.provide();
    ASSERT_TRUE(value2 == update->getValue());
}

TEST("Require that waiting is done")
{
    ConfigValue value;

    ConfigHolder holder;
    FastOS_Time timer;
    timer.SetNow();
    holder.wait(1000);
    ASSERT_TRUE(timer.MilliSecsToNow() >= 1000);
    ASSERT_TRUE(timer.MilliSecsToNow() < 60000);

    timer.SetNow();
    holder.handle(ConfigUpdate::UP(new ConfigUpdate(value, true, 0)));
    holder.wait(100);
    ASSERT_TRUE(timer.MilliSecsToNow() >= 100);
}

TEST("Require that polling for elements work")
{
    ConfigValue value;

    ConfigHolder holder;
    ASSERT_FALSE(holder.poll());
    holder.handle(ConfigUpdate::UP(new ConfigUpdate(value, true, 0)));
    ASSERT_TRUE(holder.poll());
    holder.provide();
    ASSERT_TRUE(holder.poll());
}

TEST_MT_F("Require that wait is interrupted", 2, ConfigHolder)
{
    if (thread_id == 0) {
        FastOS_Time timer;
        timer.SetNow();
        TEST_BARRIER();
        f.wait(1000);
        EXPECT_TRUE(timer.MilliSecsToNow() < 60000.0);
        EXPECT_TRUE(timer.MilliSecsToNow() > 400.0);
        TEST_BARRIER();
    } else {
        TEST_BARRIER();
        FastOS_Thread::Sleep(500);
        f.interrupt();
        TEST_BARRIER();
    }
}

TEST_MAIN() { TEST_RUN_ALL(); }