aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test/java/com/yahoo/jdisc/service/BindingSetNotFoundTestCase.java
blob: ad09c9d745ec6f11ac840f011510b067da0a732b (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.service;

import com.google.inject.AbstractModule;
import com.yahoo.jdisc.application.BindingSetSelector;
import com.yahoo.jdisc.test.TestDriver;
import org.junit.jupiter.api.Test;

import java.net.URI;

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


/**
 * @author Simon Thoresen Hult
 */
public class BindingSetNotFoundTestCase {

    @Test
    void requireThatAccessorsWork() {
        BindingSetNotFoundException e = new BindingSetNotFoundException("foo");
        assertEquals("foo", e.bindingSet());
    }

    @Test
    void requireThatBindingSetNotFoundIsThrown() {
        TestDriver driver = TestDriver.newSimpleApplicationInstanceWithoutOsgi(new AbstractModule() {

            @Override
            protected void configure() {
                bind(BindingSetSelector.class).toInstance(new MySelector("foo"));
            }
        });
        driver.activateContainer(driver.newContainerBuilder());
        try {
            driver.newReference(URI.create("http://host"));
            fail();
        } catch (BindingSetNotFoundException e) {
            assertEquals("foo", e.bindingSet());
        }
        driver.close();
    }

    private static class MySelector implements BindingSetSelector {

        final String setName;

        MySelector(String setName) {
            this.setName = setName;
        }

        @Override
        public String select(URI uri) {
            return setName;
        }
    }
}