summaryrefslogtreecommitdiffstats
path: root/node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/nodeagent/NodeAgentContextManagerTest.java
blob: 51fedd54381f60d4eebfdeebb12fef83e9509771 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.nodeagent;

import org.junit.Test;

import java.time.Clock;
import java.time.Duration;
import java.time.Instant;
import java.util.Optional;
import java.util.concurrent.Callable;
import java.util.concurrent.CountDownLatch;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;

/**
 * @author freva
 */
public class NodeAgentContextManagerTest {

    private static final int TIMEOUT = 10_000;

    private final Clock clock = Clock.systemUTC();
    private final NodeAgentContext initialContext = generateContext();
    private final NodeAgentContextManager manager = new NodeAgentContextManager(clock, initialContext);

    @Test(timeout = TIMEOUT)
    public void context_is_ignored_unless_scheduled_while_waiting() {
        NodeAgentContext context1 = generateContext();
        manager.scheduleTickWith(context1, clock.instant());
        assertSame(initialContext, manager.currentContext());

        AsyncExecutor<NodeAgentContext> async = new AsyncExecutor<>(manager::nextContext);
        manager.waitUntilWaitingForNextContext();
        assertFalse(async.isCompleted());

        NodeAgentContext context2 = generateContext();
        manager.scheduleTickWith(context2, clock.instant());

        assertSame(context2, async.awaitResult().response.get());
        assertSame(context2, manager.currentContext());
    }

    @Test(timeout = TIMEOUT)
    public void returns_no_earlier_than_at_given_time() {
        AsyncExecutor<NodeAgentContext> async = new AsyncExecutor<>(manager::nextContext);
        manager.waitUntilWaitingForNextContext();

        NodeAgentContext context1 = generateContext();
        Instant returnAt = clock.instant().plusMillis(500);
        manager.scheduleTickWith(context1, returnAt);

        assertSame(context1, async.awaitResult().response.get());
        assertSame(context1, manager.currentContext());
        // Is accurate to a millisecond
        assertFalse(clock.instant().plusMillis(1).isBefore(returnAt));
    }

    @Test(timeout = TIMEOUT)
    public void blocks_in_nextContext_until_one_is_scheduled() {
        AsyncExecutor<NodeAgentContext> async = new AsyncExecutor<>(manager::nextContext);
        manager.waitUntilWaitingForNextContext();
        assertFalse(async.isCompleted());

        NodeAgentContext context1 = generateContext();
        manager.scheduleTickWith(context1, clock.instant());

        async.awaitResult();
        assertEquals(Optional.of(context1), async.response);
        assertFalse(async.exception.isPresent());
    }

    @Test(timeout = TIMEOUT)
    public void blocks_in_nextContext_until_interrupt() {
        AsyncExecutor<NodeAgentContext> async = new AsyncExecutor<>(manager::nextContext);
        manager.waitUntilWaitingForNextContext();
        assertFalse(async.isCompleted());

        manager.interrupt();

        async.awaitResult();
        assertEquals(Optional.of(InterruptedException.class), async.exception.map(Exception::getClass));
        assertFalse(async.response.isPresent());
    }

    @Test(timeout = TIMEOUT)
    public void setFrozen_does_not_block_with_no_timeout() {
        assertFalse(manager.setFrozen(false, Duration.ZERO));

        // Generate new context and get it from the supplier, this completes the unfreeze
        NodeAgentContext context1 = generateContext();
        AsyncExecutor<NodeAgentContext> async = new AsyncExecutor<>(manager::nextContext);
        manager.waitUntilWaitingForNextContext();
        manager.scheduleTickWith(context1, clock.instant());
        assertSame(context1, async.awaitResult().response.get());

        assertTrue(manager.setFrozen(false, Duration.ZERO));
    }

    @Test(timeout = TIMEOUT)
    public void setFrozen_blocks_at_least_for_duration_of_timeout() {
        long wantedDurationMillis = 100;
        long start = clock.millis();
        assertFalse(manager.setFrozen(false, Duration.ofMillis(wantedDurationMillis)));
        long actualDurationMillis = clock.millis() - start;

        assertTrue(actualDurationMillis >= wantedDurationMillis);
    }

    @Test(timeout = TIMEOUT)
    public void setFrozen_is_successful_if_converged_in_time() throws InterruptedException {
        AsyncExecutor<NodeAgentContext> asyncConsumer1 = new AsyncExecutor<>(() -> {
            NodeAgentContext context = manager.nextContext();
            Thread.sleep(200); // Simulate running NodeAgent::converge
            return context;
        });
        manager.waitUntilWaitingForNextContext();

        NodeAgentContext context1 = generateContext();
        manager.scheduleTickWith(context1, clock.instant());
        Thread.sleep(10);

        // Scheduler wants to freeze
        AsyncExecutor<Boolean> asyncScheduler = new AsyncExecutor<>(() -> manager.setFrozen(true, Duration.ofMillis(500)));
        Thread.sleep(20);
        assertFalse(asyncConsumer1.isCompleted()); // Still running NodeAgent::converge
        assertSame(context1, asyncConsumer1.awaitResult().response.get());
        assertFalse(asyncScheduler.isCompleted()); // Still waiting for consumer to converge to frozen

        AsyncExecutor<NodeAgentContext> asyncConsumer2 = new AsyncExecutor<>(manager::nextContext);
        manager.waitUntilWaitingForNextContext();
        assertFalse(asyncConsumer2.isCompleted()); // Waiting for next context
        asyncScheduler.awaitResult(); // We should be able to converge to frozen now

        // Interrupt manager to end asyncConsumer2
        manager.interrupt();
        asyncConsumer2.awaitResult();

        assertEquals(Optional.of(true), asyncScheduler.response);
    }

    private static NodeAgentContext generateContext() {
        return NodeAgentContextImpl.builder("container-123.domain.tld").build();
    }

    private static class AsyncExecutor<T> {
        private final CountDownLatch latch = new CountDownLatch(1);
        private volatile Optional<T> response = Optional.empty();
        private volatile Optional<Exception> exception = Optional.empty();

        private AsyncExecutor(Callable<T> supplier) {
            new Thread(() -> {
                try {
                    response = Optional.of(supplier.call());
                } catch (Exception e) {
                    exception = Optional.of(e);
                }
                latch.countDown();
            }).start();
        }

        private AsyncExecutor<T> awaitResult() {
            try {
                latch.await();
            } catch (InterruptedException ignored) { }
            return this;
        }

        private boolean isCompleted() {
            return latch.getCount() == 0;
        }
    }
}