aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/application/ServerRepositoryIntegrationTest.java
blob: 04b8865411223addd4ac9cfb0af416919b4dfd3d (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.application;

import com.google.inject.AbstractModule;
import com.google.inject.name.Names;
import com.yahoo.jdisc.service.ServerProvider;
import com.yahoo.jdisc.test.TestDriver;
import org.junit.Test;
import org.osgi.framework.Bundle;

import java.util.Arrays;
import java.util.Iterator;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;


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

    @Test
    public void requireThatInstallFromBundleWorks() throws Exception {
        MyModule module = new MyModule();
        TestDriver driver = TestDriver.newSimpleApplicationInstance(module);
        BundleInstaller installer = new BundleInstaller(driver.osgiFramework());
        Bundle bundle = installer.installAndStart("my-server-provider.jar").get(0);
        ContainerBuilder builder = driver.newContainerBuilder();
        builder.serverProviders().install(bundle, "com.yahoo.jdisc.bundle.MyServerProvider");
        assertTrue(module.init.await(60, TimeUnit.SECONDS));

        Iterator<ServerProvider> it = builder.serverProviders().iterator();
        assertTrue(it.hasNext());
        ServerProvider server = it.next();
        assertNotNull(server);
        server.start();
        assertTrue(module.start.await(60, TimeUnit.SECONDS));
        server.close();
        assertTrue(module.close.await(60, TimeUnit.SECONDS));
        server.release();
        assertTrue(module.destroy.await(60, TimeUnit.SECONDS));
        assertFalse(it.hasNext());
        driver.close();
    }

    @Test
    public void requireThatInstallAllFromBundleWorks() throws Exception {
        TestDriver driver = TestDriver.newSimpleApplicationInstance(new MyModule());
        BundleInstaller installer = new BundleInstaller(driver.osgiFramework());
        Bundle bundle = installer.installAndStart("my-server-provider.jar").get(0);
        ContainerBuilder builder = driver.newContainerBuilder();
        builder.serverProviders().installAll(bundle, Arrays.asList("com.yahoo.jdisc.bundle.MyServerProvider",
                                                                   "com.yahoo.jdisc.bundle.MyServerProvider"));
        Iterator<ServerProvider> it = builder.serverProviders().iterator();
        assertTrue(it.hasNext());
        assertNotNull(it.next());
        assertTrue(it.hasNext());
        assertNotNull(it.next());
        assertFalse(it.hasNext());
        driver.close();
    }

    @Test
    public void requireThatInstallUnknownClassThrows() throws Exception {
        MyModule module = new MyModule();
        TestDriver driver = TestDriver.newSimpleApplicationInstance(module);
        BundleInstaller installer = new BundleInstaller(driver.osgiFramework());
        Bundle bundle = installer.installAndStart("my-server-provider.jar").get(0);
        ContainerBuilder builder = driver.newContainerBuilder();
        try {
            builder.serverProviders().install(bundle, "class.not.Found");
            fail();
        } catch (ClassNotFoundException e) {

        }
        driver.close();
    }

    private static class MyModule extends AbstractModule {

        final CountDownLatch init = new CountDownLatch(1);
        final CountDownLatch start = new CountDownLatch(1);
        final CountDownLatch close = new CountDownLatch(1);
        final CountDownLatch destroy = new CountDownLatch(1);

        @Override
        protected void configure() {
            bind(CountDownLatch.class).annotatedWith(Names.named("Init")).toInstance(init);
            bind(CountDownLatch.class).annotatedWith(Names.named("Start")).toInstance(start);
            bind(CountDownLatch.class).annotatedWith(Names.named("Close")).toInstance(close);
            bind(CountDownLatch.class).annotatedWith(Names.named("Destroy")).toInstance(destroy);
        }
    }
}