now also deploying the XML router itself in the integration 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             // XML Router API packages.
40             mavenBundle().groupId("org.wamblee.xmlrouter")
41                 .artifactId("xmlrouter-common").versionAsInProject(),//
42             mavenBundle().groupId("org.wamblee.xmlrouter")
43                 .artifactId("xmlrouter-config").versionAsInProject(),//
44             mavenBundle().groupId("org.wamblee.xmlrouter")
45                 .artifactId("xmlrouter-publish").versionAsInProject(),//
46             mavenBundle().groupId("org.wamblee.xmlrouter")
47                 .artifactId("xmlrouter-subscribe").versionAsInProject(),//
48             mavenBundle().groupId("org.wamblee.xmlrouter")
49                 .artifactId("xmlrouter-listener").versionAsInProject(),//
50             mavenBundle().groupId("org.wamblee.xmlrouter")
51                 .artifactId("xmlrouter-router-bundle").versionAsInProject(), //
52
53             // OSGI runtimes
54             felix());
55     }
56
57     /*
58      * @Configuration() public Option[] config() { return
59      * options(mavenBundle().groupId("junit").artifactId("junit-dep")
60      * .version("4.8.2"), // mockito 1.7 //
61      * wrappedBundle(mavenBundle().groupId("org.mockito") //
62      * .artifactId("mockito-all").version("1.7")), // mockito 1.8.5 //
63      * mavenBundle().groupId("org.objenesis").artifactId("objenesis") //
64      * .version("1.0"), // // mavenBundle("org.hamcrest",
65      * "hamcrest-core").version("1.1"),//
66      * mavenBundle().groupId("org.mockito").artifactId("mockito-all")
67      * .version("1.8.5"), // felix()); }
68      */
69
70     @Test
71     public void test1(BundleContext aContext) {
72         System.out.println("=== Got context " + aContext);
73
74     }
75
76 }