summaryrefslogtreecommitdiffstats
path: root/configserver/src/test/java/com/yahoo/vespa/config/server/configchange/RefeedActionsFormatterTest.java
blob: 720008aa8f96787f7a679e97b1f139db103d799b (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.configchange;

import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static com.yahoo.vespa.config.server.configchange.Utils.*;

/**
 * @author geirst
 * @since 5.44
 */
public class RefeedActionsFormatterTest {

    @Test
    public void formatting_of_single_action() {
        RefeedActions actions = new ConfigChangeActionsBuilder().
                refeed(CHANGE_ID, false, CHANGE_MSG, DOC_TYPE, CLUSTER, SERVICE_NAME).
                build().getRefeedActions();
        assertEquals("change-id: Consider removing data and re-feed document type 'music' in cluster 'foo' because:\n" +
                     "    1) change\n",
                     new RefeedActionsFormatter(actions).format());
    }

    @Test
    public void formatting_of_multiple_actions() {
        RefeedActions actions = new ConfigChangeActionsBuilder().
                refeed(CHANGE_ID,   false, CHANGE_MSG,   DOC_TYPE,   CLUSTER, SERVICE_NAME).
                refeed(CHANGE_ID,   false, CHANGE_MSG_2, DOC_TYPE,   CLUSTER, SERVICE_NAME).
                refeed(CHANGE_ID_2, false, CHANGE_MSG_2, DOC_TYPE,   CLUSTER, SERVICE_NAME).
                refeed(CHANGE_ID_2, true, CHANGE_MSG_2, DOC_TYPE,   CLUSTER, SERVICE_NAME).
                refeed(CHANGE_ID,   false, CHANGE_MSG_2, DOC_TYPE_2, CLUSTER, SERVICE_NAME).
                build().getRefeedActions();
        assertEquals("change-id: Consider removing data and re-feed document type 'book' in cluster 'foo' because:\n" +
                     "    1) other change\n" +
                     "change-id: Consider removing data and re-feed document type 'music' in cluster 'foo' because:\n" +
                     "    1) change\n" +
                     "    2) other change\n" +
                     "other-change-id: Consider removing data and re-feed document type 'music' in cluster 'foo' because:\n" +
                     "    1) other change\n" +
                     "(allowed) other-change-id: Consider removing data and re-feed document type 'music' in cluster 'foo' because:\n" +
                     "    1) other change\n",
                new RefeedActionsFormatter(actions).format());
    }

}