summaryrefslogtreecommitdiffstats
path: root/node-repository/src/test/java/com/yahoo/vespa/hosted/provision/os/OsVersionsTest.java
blob: 06f9dcfae68d2313f7dec15c1385a367ec4ef8a3 (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
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.os;

import com.yahoo.component.Version;
import com.yahoo.config.provision.NodeType;
import com.yahoo.vespa.hosted.provision.NodeRepositoryTester;
import org.junit.Test;

import java.time.Duration;
import java.util.Map;

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

/**
 * @author mpolden
 */
public class OsVersionsTest {

    private final OsVersions versions = new OsVersions(
                new NodeRepositoryTester().nodeRepository().database(),
                Duration.ofDays(1) // Long TTL to avoid timed expiry during test
        );

    @Test
    public void test_versions() {
        assertTrue("No versions set", versions.targets().isEmpty());
        assertSame("Caches empty target versions", versions.targets(), versions.targets());

        // Upgrade OS
        Version version1 = Version.fromString("7.1");
        versions.setTarget(NodeType.host, version1, false);
        Map<NodeType, OsVersion> targetVersions = versions.targets();
        assertSame("Caches target versions", targetVersions, versions.targets());
        assertEquals(version1, versions.targetFor(NodeType.host).get().version());

        // Upgrade OS again
        Version version2 = Version.fromString("7.2");
        versions.setTarget(NodeType.host, version2, false);
        assertNotSame("Cache invalidated", targetVersions, versions.targets());
        assertEquals(version2, versions.targetFor(NodeType.host).get().version());

        // Downgrading fails
        try {
            versions.setTarget(NodeType.host, version1, false);
            fail("Expected exception");
        } catch (IllegalArgumentException ignored) {}

        // Forcing downgrade succeeds
        versions.setTarget(NodeType.host, version1, true);
        assertEquals(version1, versions.targetFor(NodeType.host).get().version());

        // Target can be removed
        versions.removeTarget(NodeType.host);
        assertFalse(versions.targetFor(NodeType.host).isPresent());
    }

}