aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/test/java/com/yahoo/container/di/ContainerTestBase.java
blob: e7f12d3f2283f65aeda4baefe55d649acabf874d (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.di;

import com.google.inject.Guice;
import com.yahoo.component.ComponentSpecification;
import com.yahoo.config.FileReference;
import com.yahoo.container.bundle.BundleInstantiationSpecification;
import com.yahoo.container.di.ContainerTest.ComponentTakingConfig;
import com.yahoo.container.di.componentgraph.core.ComponentGraph;
import org.junit.After;
import org.junit.Before;
import org.osgi.framework.Bundle;

import java.util.Collection;
import java.util.Set;

import static java.util.Collections.emptySet;

/**
 * @author Tony Vaagenes
 * @author gjoranv
 * @author ollivir
 */
public class ContainerTestBase {

    private ComponentGraph componentGraph;
    protected DirConfigSource dirConfigSource = null;

    @Before
    public void setup() {
        dirConfigSource = new DirConfigSource("ContainerTest-");
    }

    @After
    public void cleanup() {
        dirConfigSource.cleanup();
    }

    @Before
    public void createGraph() {
        componentGraph = new ComponentGraph(0);
    }

    public void complete() {
        try {
            Container container = new Container(new CloudSubscriberFactory(dirConfigSource.configSource()), dirConfigSource.configId(),
                    new ContainerTest.TestDeconstructor(), new Osgi() {
                        @SuppressWarnings("unchecked")
                        @Override
                        public Class<Object> resolveClass(BundleInstantiationSpecification spec) {
                            try {
                                return (Class<Object>) Class.forName(spec.classId.getName());
                            } catch (ClassNotFoundException e) {
                                throw new RuntimeException(e);
                            }
                        }

                        @Override
                        public Set<Bundle> useApplicationBundles(Collection<FileReference> bundles) {
                            return emptySet();
                        }

                        @Override
                        public Bundle getBundle(ComponentSpecification spec) {
                            throw new UnsupportedOperationException("getBundle not supported.");
                        }
                    });
            Container.ComponentGraphResult result = container.waitForNextGraphGeneration(this.componentGraph, Guice.createInjector(), true);
            result.oldComponentsCleanupTask().run();
            this.componentGraph = result.newGraph();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

    public <T> T getInstance(Class<T> componentClass) {
        return componentGraph.getInstance(componentClass);
    }

    protected void writeBootstrapConfigs(ComponentEntry... componentEntries) {
        dirConfigSource.writeConfig("platform-bundles", "");
        dirConfigSource.writeConfig("application-bundles", "");
        StringBuilder components = new StringBuilder();
        for (int i = 0; i < componentEntries.length; i++) {
            components.append(componentEntries[i].asConfig(i));
            components.append('\n');
        }
        dirConfigSource.writeConfig("components", String.format("components[%s]\n%s", componentEntries.length, components));
    }

    protected void writeBootstrapConfigs(String componentId, Class<?> classId) {
        writeBootstrapConfigs(new ComponentEntry(componentId, classId));
    }

    protected void writeBootstrapConfigs(String componentId) {
        writeBootstrapConfigs(componentId, ComponentTakingConfig.class);
    }

    protected void writeBootstrapConfigs() {
        writeBootstrapConfigs(ComponentTakingConfig.class.getName(), ComponentTakingConfig.class);
    }

    protected class ComponentEntry {
        private final String componentId;
        private final Class<?> classId;

        ComponentEntry(String componentId, Class<?> classId) {
            this.componentId = componentId;
            this.classId = classId;
        }

        String asConfig(int position) {
            return "<config>\n" + //
                    "components[" + position + "].id \"" + componentId + "\"\n" + //
                    "components[" + position + "].classId \"" + classId.getName() + "\"\n" + //
                    "components[" + position + "].configId \"" + dirConfigSource.configId() + "\"\n" + //
                    "</config>";
        }
    }

}