Initial version with all API bundles deployed in the integraiton test.
[xmlrouter] / integrationtest / src / test / java / org / wamblee / xmlrouter / integrationtest / XmlRouterIntegrationTest.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.xmlrouter.integrationtest;
17
18 import static org.ops4j.pax.exam.CoreOptions.*;
19
20 import org.junit.Test;
21 import org.junit.runner.RunWith;
22 import org.ops4j.pax.exam.Option;
23 import org.ops4j.pax.exam.junit.Configuration;
24 import org.ops4j.pax.exam.junit.JUnit4TestRunner;
25 import org.osgi.framework.BundleContext;
26
27 @RunWith(JUnit4TestRunner.class)
28 public class XmlRouterIntegrationTest {
29
30     @Configuration()
31     public Option[] config() {
32         return options(
33             // Test dependencies
34             mavenBundle().groupId("junit").artifactId("junit-dep")
35                 .version("4.8.2"), //
36             mavenBundle().groupId("org.mockito").artifactId("mockito-all")
37                 .version("1.8.5"), //
38
39             // Dependencies from wamblee utils (TODO create bundle of
40             // support-general with optional dependencies).
41             mavenBundle().groupId("org.eclipse.persistence")
42                 .artifactId("javax.persistence").version("2.0.0"), //
43             wrappedBundle(mavenBundle().groupId("net.sf.ehcache")
44                 .artifactId("ehcache-core").version("2.2.0")), //
45
46             // XML Router API packages.
47             mavenBundle().groupId("org.wamblee.xmlrouter")
48                 .artifactId("xmlrouter-common").versionAsInProject(),//
49             mavenBundle().groupId("org.wamblee.xmlrouter")
50                 .artifactId("xmlrouter-config").versionAsInProject(),//
51             mavenBundle().groupId("org.wamblee.xmlrouter")
52                 .artifactId("xmlrouter-publish").versionAsInProject(),//
53             mavenBundle().groupId("org.wamblee.xmlrouter")
54                 .artifactId("xmlrouter-subscribe").versionAsInProject(),//
55             mavenBundle().groupId("org.wamblee.xmlrouter")
56                 .artifactId("xmlrouter-listener").versionAsInProject(),//
57
58             // OSGI runtimes
59             felix());
60     }
61
62     /*
63      * @Configuration() public Option[] config() { return
64      * options(mavenBundle().groupId("junit").artifactId("junit-dep")
65      * .version("4.8.2"), // mockito 1.7 //
66      * wrappedBundle(mavenBundle().groupId("org.mockito") //
67      * .artifactId("mockito-all").version("1.7")), // mockito 1.8.5 //
68      * mavenBundle().groupId("org.objenesis").artifactId("objenesis") //
69      * .version("1.0"), // // mavenBundle("org.hamcrest",
70      * "hamcrest-core").version("1.1"),//
71      * mavenBundle().groupId("org.mockito").artifactId("mockito-all")
72      * .version("1.8.5"), // felix()); }
73      */
74
75     @Test
76     public void test1(BundleContext aContext) {
77         System.out.println("=== Got context " + aContext);
78
79     }
80
81 }