summaryrefslogtreecommitdiff
path: root/src/test/java/com/zaxxer/hikari/osgi/OSGiBundleTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/zaxxer/hikari/osgi/OSGiBundleTest.java')
-rw-r--r--src/test/java/com/zaxxer/hikari/osgi/OSGiBundleTest.java118
1 files changed, 70 insertions, 48 deletions
diff --git a/src/test/java/com/zaxxer/hikari/osgi/OSGiBundleTest.java b/src/test/java/com/zaxxer/hikari/osgi/OSGiBundleTest.java
index 761a802..a41b916 100644
--- a/src/test/java/com/zaxxer/hikari/osgi/OSGiBundleTest.java
+++ b/src/test/java/com/zaxxer/hikari/osgi/OSGiBundleTest.java
@@ -17,6 +17,10 @@ package com.zaxxer.hikari.osgi;
import org.junit.Test;
import org.junit.runner.RunWith;
+import org.junit.runner.manipulation.Filter;
+import org.junit.runner.manipulation.NoTestsRemainException;
+import org.junit.runner.notification.RunNotifier;
+import org.junit.runners.model.InitializationError;
import org.ops4j.pax.exam.Configuration;
import org.ops4j.pax.exam.Option;
import org.ops4j.pax.exam.junit.PaxExam;
@@ -24,9 +28,9 @@ import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import javax.inject.Inject;
-
import java.io.File;
+import static com.zaxxer.hikari.pool.TestElf.isJava9;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.ops4j.pax.exam.CoreOptions.*;
@@ -34,58 +38,76 @@ import static org.ops4j.pax.exam.CoreOptions.*;
/**
* @author lburgazzoli
*/
-@RunWith(PaxExam.class)
+@RunWith(OSGiBundleTest.ConditionalPaxExam.class)
public class OSGiBundleTest
{
- @Inject
- BundleContext context;
+ @Test
+ public void checkInject()
+ {
+ assertNotNull(context);
+ }
+
+ @Test
+ public void checkBundle()
+ {
+ Boolean bundleFound = false;
+ Boolean bundleActive = false;
- @Configuration
- public Option[] config()
- {
- return options(
- systemProperty("org.osgi.framework.storage.clean").value("true"),
- systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level").value("WARN"),
- mavenBundle("org.slf4j","slf4j-api","1.7.5"),
- mavenBundle("org.slf4j","slf4j-simple","1.7.5").noStart(),
- mavenBundle("org.javassist", "javassist", "3.19.0-GA"),
- new File("target/classes").exists()
- ? bundle("reference:file:target/classes")
- : bundle("reference:file:../target/classes"),
- junitBundles(),
- cleanCaches()
- );
- }
+ Bundle[] bundles = context.getBundles();
+ for (Bundle bundle : bundles) {
+ if (bundle != null) {
+ if (bundle.getSymbolicName().equals("com.zaxxer.HikariCP")) {
+ bundleFound = true;
+ if (bundle.getState() == Bundle.ACTIVE) {
+ bundleActive = true;
+ }
+ }
+ }
+ }
- @Test
- public void checkInject()
- {
- assertNotNull(context);
- }
+ assertTrue(bundleFound);
+ assertTrue(bundleActive);
+ }
- @Test
- public void checkBundle()
- {
- Boolean bundleFound = false;
- Boolean bundleActive = false;
+ @Inject
+ BundleContext context;
- Bundle[] bundles = context.getBundles();
- for(Bundle bundle : bundles)
- {
- if(bundle != null)
- {
- if(bundle.getSymbolicName().equals("com.zaxxer.HikariCP"))
- {
- bundleFound = true;
- if(bundle.getState() == Bundle.ACTIVE)
- {
- bundleActive = true;
- }
- }
- }
- }
+ @Configuration
+ public Option[] config()
+ {
+ return options(
+ systemProperty("org.osgi.framework.storage.clean").value("true"),
+ systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level").value("WARN"),
+ mavenBundle("org.slf4j", "slf4j-api", "1.7.5"),
+ mavenBundle("org.slf4j", "slf4j-simple", "1.7.5").noStart(),
+ new File("target/classes").exists()
+ ? bundle("reference:file:target/classes")
+ : bundle("reference:file:../target/classes"),
+ junitBundles(),
+ cleanCaches()
+ );
+ }
+
+ public static class ConditionalPaxExam extends PaxExam
+ {
+ public ConditionalPaxExam(Class<?> klass) throws InitializationError {
+ super(klass);
+ }
+
+ @Override
+ public void run(RunNotifier notifier) {
+ if (!isJava9()) {
+ super.run(notifier);
+ }
+ }
+
+ @Override
+ public void filter(Filter filter) throws NoTestsRemainException {
+ if (isJava9()) {
+ throw new NoTestsRemainException();
+ }
- assertTrue(bundleFound);
- assertTrue(bundleActive);
- }
+ super.filter(filter);
+ }
+ }
}