aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test/java/com/yahoo/jdisc/application/ApplicationNotReadyTestCase.java
blob: 1ac091fcc681312ff01de3c8122bc772417493c7 (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
// Copyright Yahoo. 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.Inject;
import com.google.inject.ProvisionException;
import com.yahoo.jdisc.test.TestDriver;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;


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

    @Test
    void requireThatExceptionIsThrown() {
        try {
            TestDriver.newInjectedApplicationInstanceWithoutOsgi(MyApplication.class);
            fail();
        } catch (ProvisionException e) {
            Throwable t = e.getCause();
            assertNotNull(t);
            assertTrue(t instanceof ApplicationNotReadyException);
        }
    }

    private static class MyApplication implements Application {

        @Inject
        MyApplication(ContainerActivator activator) {
            activator.activateContainer(activator.newContainerBuilder());
        }

        @Override
        public void start() {

        }

        @Override
        public void stop() {

        }

        @Override
        public void destroy() {

        }
    }
}