summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/WantedStateTest.java
blob: 8065d701f6b28e397040c51bdc075d75aecb439a (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
78
79
80
81
82
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

import com.yahoo.jrt.*;
import com.yahoo.jrt.StringValue;
import com.yahoo.vdslib.state.NodeState;
import com.yahoo.vdslib.state.State;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

public class WantedStateTest extends FleetControllerTest {

    private Supervisor supervisor;

    @Before
    public void setUp() {
        supervisor = new Supervisor(new Transport());
    }

    @After
    public void tearDown() throws Exception {
        if (supervisor != null) {
            supervisor.transport().shutdown().join();
            supervisor = null;
        }
        super.tearDown();
    }

    public void setWantedState(DummyVdsNode node, State state, String reason) {
        NodeState ns = new NodeState(node.getType(), state);
        if (reason != null) ns.setDescription(reason);
        Target connection = supervisor.connect(new Spec(fleetController.getRpcPort()));
        Request req = new Request("setNodeState");
        req.parameters().add(new StringValue(node.getSlobrokName()));
        req.parameters().add(new StringValue(ns.serialize()));
        connection.invokeSync(req, timeoutS);
        if (req.isError()) {
            assertTrue("Failed to invoke setNodeState(): " + req.errorCode() + ": " + req.errorMessage(), false);
        }
        if (!req.checkReturnTypes("s")) {
            assertTrue("Failed to invoke setNodeState(): Invalid return types.", false);
        }
    }

    @Test
    public void testSettingStorageNodeMaintenanceAndBack() throws Exception {
        startingTest("WantedStateTest::testSettingStorageNodeMaintenanceAndBack()");
        setUpFleetController(true, new FleetControllerOptions("mycluster"));
        setUpVdsNodes(true, new DummyVdsNodeOptions());
        waitForStableSystem();

        setWantedState(nodes.get(1), State.MAINTENANCE, null);
        waitForState("version:\\d+ distributor:10 storage:10 .0.s:m");

        setWantedState(nodes.get(1), State.UP, null);
        waitForState("version:\\d+ distributor:10 storage:10");
    }

    @Test
    public void testOverridingWantedStateOtherReason() throws Exception {
        startingTest("WantedStateTest::testOverridingWantedStateOtherReason()");
        setUpFleetController(true, new FleetControllerOptions("mycluster"));
        setUpVdsNodes(true, new DummyVdsNodeOptions());
        waitForStableSystem();

        setWantedState(nodes.get(1), State.MAINTENANCE, "Foo");
        waitForState("version:\\d+ distributor:10 storage:10 .0.s:m");
        assertEquals("Foo", fleetController.getWantedNodeState(nodes.get(1).getNode()).getDescription());

        setWantedState(nodes.get(1), State.MAINTENANCE, "Bar");
        waitForCompleteCycle();
        assertEquals("Bar", fleetController.getWantedNodeState(nodes.get(1).getNode()).getDescription());

        setWantedState(nodes.get(1), State.UP, null);
        waitForState("version:\\d+ distributor:10 storage:10");
    }


}