aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/test/java/com/yahoo/vespa/config/server/configchange/RefeedActionsFormatterTest.java
blob: fa615cd362a5a6f39696f66511398afe37381cd0 (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
// Copyright Vespa.ai. 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, CHANGE_MSG, DOC_TYPE, CLUSTER, SERVICE_NAME).
                build().getRefeedActions();
        assertEquals("field-type-change: 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, CHANGE_MSG, DOC_TYPE, CLUSTER, SERVICE_NAME).
                refeed(CHANGE_ID, CHANGE_MSG_2, DOC_TYPE, CLUSTER, SERVICE_NAME).
                refeed(CHANGE_ID_2, CHANGE_MSG_2, DOC_TYPE, CLUSTER, SERVICE_NAME).
                refeed(CHANGE_ID_2, CHANGE_MSG_2, DOC_TYPE, CLUSTER, SERVICE_NAME).
                refeed(CHANGE_ID, CHANGE_MSG_2, DOC_TYPE_2, CLUSTER, SERVICE_NAME).
                build().getRefeedActions();
        assertEquals("field-type-change: Consider removing data and re-feed document type 'book' in cluster 'foo' because:\n" +
                     "    1) other change\n" +
                     "field-type-change: Consider removing data and re-feed document type 'music' in cluster 'foo' because:\n" +
                     "    1) change\n" +
                     "    2) other change\n" +
                     "indexing-change: Consider removing data and re-feed document type 'music' in cluster 'foo' because:\n" +
                     "    1) other change\n",
                new RefeedActionsFormatter(actions).format());
    }

}