aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-api/src/test/java/ai/vespa/hosted/api/TestConfigTest.java
blob: 320bce678c37cf53979aba0e290f029ab3c5017e (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.hosted.api;

import com.yahoo.config.provision.ApplicationId;
import com.yahoo.config.provision.SystemName;
import com.yahoo.config.provision.zone.ZoneId;
import org.junit.Test;

import java.io.IOException;
import java.net.URI;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.time.Instant;
import java.util.List;
import java.util.Map;

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

/**
 * @author jonmv
 */
public class TestConfigTest {

    @Test
    public void testDeserialization() throws IOException {
        TestConfig config = TestConfig.fromJson(Files.readAllBytes(Paths.get("src/test/resources/test-config.json")));
        assertEquals(ApplicationId.from("t", "a", "i"),
                     config.application());
        assertEquals(ZoneId.from("dev", "aws-us-east-1c"),
                     config.zone());
        assertEquals(SystemName.PublicCd,
                     config.system());
        assertTrue(config.isCI());
        assertEquals("1.2.3", config.platformVersion());
        assertEquals(321, config.applicationVersion());
        assertEquals(Instant.ofEpochMilli(1600000000L), config.deployedAt());
        assertEquals(Map.of(ZoneId.from("dev", "aws-us-east-1c"),
                            Map.of("default", URI.create("https://dev.endpoint:443/")),
                            ZoneId.from("prod", "aws-us-east-1a"),
                            Map.of("default", URI.create("https://prod.endpoint:443/"))),
                     config.deployments());
        assertEquals(Map.of(ZoneId.from("prod", "aws-us-east-1c"),
                            List.of("documents")),
                     config.contentClusters());
    }

    @Test
    public void testClustersOnly() throws IOException {
        TestConfig config = TestConfig.fromJson(Files.readAllBytes(Paths.get("src/test/resources/clusters-only-config.json")));
        assertEquals(ApplicationId.defaultId(),
                     config.application());
        assertEquals(Map.of("default", URI.create("https://localhost:8080/"),
                            "container", URI.create("https://localhost:8081/")),
                     config.deployments().get(ZoneId.defaultId()));
    }

}