aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test/java/com/yahoo/jdisc/service/NoBindingSetSelectedTestCase.java
blob: 68733b35adb9bbc8ace1905e1cb1343fe9d35d1d (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
// 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 NoBindingSetSelectedTestCase {

    @Test
    void requireThatAccessorsWork() {
        URI uri = URI.create("http://host/path");
        NoBindingSetSelectedException e = new NoBindingSetSelectedException(uri);
        assertEquals(uri, e.uri());
    }

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

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

    private static class MySelector implements BindingSetSelector {

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

}