aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/notification/NotificationFormatterTest.java
blob: 875487144d96ac111e6ff5ed832d50e4e6007dca (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.notification;

import com.yahoo.config.provision.ApplicationId;
import com.yahoo.config.provision.ApplicationName;
import com.yahoo.config.provision.ClusterSpec;
import com.yahoo.config.provision.InstanceName;
import com.yahoo.config.provision.RegionName;
import com.yahoo.config.provision.TenantName;
import com.yahoo.config.provision.zone.ZoneId;
import com.yahoo.vespa.hosted.controller.api.identifiers.DeploymentId;
import com.yahoo.vespa.hosted.controller.api.integration.ConsoleUrls;
import com.yahoo.vespa.hosted.controller.api.integration.deployment.JobType;
import com.yahoo.vespa.hosted.controller.api.integration.deployment.RunId;
import com.yahoo.vespa.hosted.controller.application.TenantAndApplicationId;
import org.junit.jupiter.api.Test;

import java.net.URI;
import java.time.Instant;
import java.util.List;

import static org.junit.jupiter.api.Assertions.assertEquals;

/**
 * @author enygaard
 */
public class NotificationFormatterTest {
    private final TenantName tenant = TenantName.from("scoober");
    private final ApplicationName application = ApplicationName.from("myapp");
    private final InstanceName instance = InstanceName.from("beta");
    private final ApplicationId applicationId = ApplicationId.from(tenant, application, instance);
    private final DeploymentId deploymentId = new DeploymentId(applicationId, ZoneId.defaultId());
    private final ClusterSpec.Id cluster = new ClusterSpec.Id("content");

    private final NotificationFormatter formatter = new NotificationFormatter(new ConsoleUrls(URI.create("https://console.tld")));

    @Test
    void applicationPackage() {
        var notification = new Notification(Instant.now(), Notification.Type.applicationPackage, Notification.Level.warning, NotificationSource.from(applicationId), List.of("1", "2"));
        var content = formatter.format(notification);
        assertEquals("Application package", content.prettyType());
        assertEquals("Application package for myapp.beta has 2 warnings", content.messagePrefix());
        assertEquals("https://console.tld/tenant/scoober/application/myapp/prod/instance/beta", content.uri());
    }

    @Test
    void deployment() {
        var runId = new RunId(applicationId, JobType.prod(RegionName.defaultName()), 1001);
        var notification = new Notification(Instant.now(), Notification.Type.deployment, Notification.Level.warning, NotificationSource.from(runId), List.of("1"));
        var content = formatter.format(notification);
        assertEquals("Deployment", content.prettyType());
        assertEquals("production-default #1001 for myapp.beta has a warning", content.messagePrefix());
        assertEquals("https://console.tld/tenant/scoober/application/myapp/prod/instance/beta/job/production-default/run/1001", content.uri());
    }

    @Test
    void deploymentError() {
        var runId = new RunId(applicationId, JobType.prod(RegionName.defaultName()), 1001);
        var notification = new Notification(Instant.now(), Notification.Type.deployment, Notification.Level.error, NotificationSource.from(runId), List.of("1"));
        var content = formatter.format(notification);
        assertEquals("Deployment", content.prettyType());
        assertEquals("production-default #1001 for myapp.beta has failed", content.messagePrefix());
        assertEquals("https://console.tld/tenant/scoober/application/myapp/prod/instance/beta/job/production-default/run/1001", content.uri());
    }

    @Test
    void testPackage() {
        var notification = new Notification(Instant.now(), Notification.Type.testPackage, Notification.Level.warning, NotificationSource.from(TenantAndApplicationId.from(applicationId)), List.of("1"));
        var content = formatter.format(notification);
        assertEquals("Test package", content.prettyType());
        assertEquals("There is a problem with tests for myapp", content.messagePrefix());
        assertEquals("https://console.tld/tenant/scoober/application/myapp/prod/instance", content.uri());
    }

    @Test
    void reindex() {
        var notification = new Notification(Instant.now(), Notification.Type.reindex, Notification.Level.info, NotificationSource.from(deploymentId, cluster), List.of("1"));
        var content = formatter.format(notification);
        assertEquals("Reindex", content.prettyType());
        assertEquals("Cluster content in prod.default for myapp.beta is reindexing", content.messagePrefix());
        assertEquals("https://console.tld/tenant/scoober/application/myapp/prod/instance/beta?beta.prod.default=clusters%2Ccontent%3Dreindexing", content.uri());
    }

    @Test
    void feedBlock() {
        var notification = new Notification(Instant.now(), Notification.Type.feedBlock, Notification.Level.warning, NotificationSource.from(deploymentId, cluster), List.of("1"));
        var content = formatter.format(notification);
        assertEquals("Nearly feed blocked", content.prettyType());
        assertEquals("Cluster content in prod.default for myapp.beta is nearly feed blocked", content.messagePrefix());
        assertEquals("https://console.tld/tenant/scoober/application/myapp/prod/instance/beta?beta.prod.default=clusters%2Ccontent", content.uri());
    }
}