aboutsummaryrefslogtreecommitdiffstats
path: root/service-monitor/src/test/java/com/yahoo/vespa/service/monitor/internal/health/HealthMonitorTest.java
blob: 2a20302735351c485689cba0b0c0bc22e8552994 (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
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.service.monitor.internal.health;

import com.yahoo.vespa.applicationmodel.ServiceStatus;
import org.junit.Test;

import java.time.Duration;

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

public class HealthMonitorTest {
    @Test
    public void initiallyDown() {
        HealthClient healthClient = mock(HealthClient.class);
        try (HealthMonitor monitor = new HealthMonitor(healthClient, Duration.ofHours(12))) {
            monitor.startMonitoring();
            assertEquals(ServiceStatus.DOWN, monitor.getStatus());
        }
    }

    @Test
    public void eventuallyUp() {
        HealthClient healthClient = mock(HealthClient.class);
        when(healthClient.getHealthInfo()).thenReturn(HealthInfo.fromHealthStatusCode(HealthInfo.UP_STATUS_CODE));
        try (HealthMonitor monitor = new HealthMonitor(healthClient, Duration.ofMillis(10))) {
            monitor.startMonitoring();

            while (monitor.getStatus() != ServiceStatus.UP) {
                try {
                    Thread.sleep(1);
                } catch (InterruptedException e) {
                    // ignore
                }
            }
        }
    }
}