aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/test/java/com/yahoo/config/subscription/ConfigSourceSetTest.java
blob: 2e46623ef9ac491439f9aa25ea509f00ee4c86d0 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.subscription;

import org.junit.Test;
import org.junit.After;

import java.util.Set;

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

/**
 * @author <a href="gv@yahoo-inc.com">G. Voldengen</a>
 */
public class ConfigSourceSetTest {

    @Test
    public void testEquals() {
        assertEquals(new ConfigSourceSet(), new ConfigSourceSet());
        assertNotEquals(new ConfigSourceSet(), new ConfigSourceSet(new String[]{"a"}));

        assertEquals(new ConfigSourceSet(new String[]{"a"}), new ConfigSourceSet(new String[]{"a"}));
        assertEquals(new ConfigSourceSet(new String[]{"a"}), new ConfigSourceSet(new String[]{"  A  "}));
        assertEquals(new ConfigSourceSet(new String[]{"a"}), new ConfigSourceSet(new String[]{"A", "a"}));
        assertEquals(new ConfigSourceSet(new String[]{"A"}), new ConfigSourceSet(new String[]{"a", " a  "}));

        assertNotEquals(new ConfigSourceSet(new String[]{"a"}), new ConfigSourceSet(new String[]{"b"}));
        assertNotEquals(new ConfigSourceSet(new String[]{"a"}), new ConfigSourceSet(new String[]{"a", "b"}));

        assertEquals(new ConfigSourceSet(new String[]{"a", "b"}), new ConfigSourceSet(new String[]{"a", "b"}));
        assertEquals(new ConfigSourceSet(new String[]{"b", "a"}), new ConfigSourceSet(new String[]{"a", "b"}));
        assertEquals(new ConfigSourceSet(new String[]{"A", " b"}), new ConfigSourceSet(new String[]{"a ", "B"}));
        assertEquals(new ConfigSourceSet(new String[]{"b", "a", "c"}), new ConfigSourceSet(new String[]{"a", "b", "c"}));

        assertNotEquals(new ConfigSourceSet(new String[]{"a", "b"}), new ConfigSourceSet(new String[]{"b", "c"}));
        assertNotEquals("foo", new ConfigSourceSet());
    }

    @Test
    public void testIterationOrder() {
        String[] hosts = new String[]{"primary", "fallback", "last-resort"};
        ConfigSourceSet css = new ConfigSourceSet(hosts);

        Set<String> sources = css.getSources();
        assertEquals(hosts.length, sources.size());
        int i = 0;
        for (String s : sources) {
            assertEquals(hosts[i++], s);
        }
    }

    @Test
    public void testDefaultSourceFromProperty() {
        // TODO: Unable to set environment, so only able to test property usage for now
        System.setProperty("configsources", "foo:123,bar:345,tcp/baz:333,quux");
        ConfigSourceSet set = ConfigSourceSet.createDefault();
        assertEquals(4, set.getSources().size());
        assertTrue(set.getSources().contains("tcp/foo:123"));
        assertTrue(set.getSources().contains("tcp/bar:345"));
        assertTrue(set.getSources().contains("tcp/baz:333"));
        assertTrue(set.getSources().contains("tcp/quux"));
    }

    @After
    public void cleanup() {
        System.clearProperty("configsources");
    }
}