aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/test/NonWorkingRequest.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-06-15 23:09:44 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-06-15 23:09:44 +0200
commit72231250ed81e10d66bfe70701e64fa5fe50f712 (patch)
tree2728bba1131a6f6e5bdf95afec7d7ff9358dac50 /jdisc_core/src/main/java/com/yahoo/jdisc/test/NonWorkingRequest.java
Publish
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/test/NonWorkingRequest.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/test/NonWorkingRequest.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/test/NonWorkingRequest.java b/jdisc_core/src/main/java/com/yahoo/jdisc/test/NonWorkingRequest.java
new file mode 100644
index 00000000000..1a285f3bf22
--- /dev/null
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/test/NonWorkingRequest.java
@@ -0,0 +1,40 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.jdisc.test;
+
+import com.google.inject.Module;
+import com.yahoo.jdisc.Container;
+import com.yahoo.jdisc.Request;
+import com.yahoo.jdisc.application.Application;
+
+import java.net.URI;
+
+/**
+ * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
+ */
+public final class NonWorkingRequest {
+
+ private NonWorkingRequest() {
+ // hide
+ }
+
+ /**
+ * <p>Factory method to create a {@link Request} without an associated {@link Container}. The design of jDISC does
+ * not allow this, so this method internally creates TestDriver, activates a Container, and creates a new Request
+ * from that Container. Before returning, this method {@link Request#release() closes} the Request, and calls {@link
+ * TestDriver#close()} on the TestDriver. This means that you MUST NOT attempt to access any Container features
+ * through the created Request. This factory is only for directed feature tests that require a non-null
+ * Request.</p>
+ *
+ * @param uri The URI string to assign to the Request.
+ * @param guiceModules The guice modules to inject into the {@link Application}.
+ * @return A non-working Request.
+ */
+ public static Request newInstance(String uri, Module... guiceModules) {
+ TestDriver driver = TestDriver.newSimpleApplicationInstanceWithoutOsgi(guiceModules);
+ driver.activateContainer(driver.newContainerBuilder());
+ Request request = new Request(driver, URI.create(uri));
+ request.release();
+ driver.close();
+ return request;
+ }
+}