org.glassfish.jersey.test.spi.TestContainerException Java Examples
The following examples show how to use
org.glassfish.jersey.test.spi.TestContainerException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MCRJerseyTest.java From mycore with GNU General Public License v3.0 | 6 votes |
@Override public void start() { System.out.println("Starting GrizzlyTestContainer..."); try { this.server = GrizzlyHttpServerFactory.createHttpServer(uri, rc); // Initialize and register Jersey Servlet WebappContext context = new WebappContext("WebappContext", ""); ServletRegistration registration = context.addServlet("ServletContainer", ServletContainer.class); registration.setInitParameter("javax.ws.rs.Application", rc.getClass().getName()); // Add an init parameter - this could be loaded from a parameter in the constructor registration.setInitParameter("myparam", "myvalue"); registration.addMapping("/*"); context.deploy(server); } catch (ProcessingException e) { throw new TestContainerException(e); } }
Example #2
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-tomcat-mybatis with MIT License | 6 votes |
/** * An extending class must implement the {@link #configure()} method to * provide an application descriptor. * * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest() throws TestContainerException { ResourceConfig config = getResourceConfig(configure()); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #3
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-tomcat-mybatis with MIT License | 6 votes |
/** * An extending class must implement the {@link #configure()} method to * provide an application descriptor. * * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest() throws TestContainerException { ResourceConfig config = getResourceConfig(configure()); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #4
Source File: AbstractTestClass.java From helix with Apache License 2.0 | 6 votes |
/** * Starts a HelixRestServer for the test suite. * @return */ protected HelixRestServer startRestServer() { // Create namespace manifest map List<HelixRestNamespace> namespaces = new ArrayList<>(); // Add test namespace namespaces.add(new HelixRestNamespace(TEST_NAMESPACE, HelixRestNamespace.HelixMetadataStoreType.ZOOKEEPER, _zkAddrTestNS, false)); // Add default namesapce namespaces.add(new HelixRestNamespace(ZK_ADDR)); HelixRestServer server; try { server = new HelixRestServer(namespaces, getBaseUri().getPort(), getBaseUri().getPath(), Collections.singletonList(_auditLogger)); server.start(); } catch (Exception ex) { throw new TestContainerException(ex); } return server; }
Example #5
Source File: SecurityModuleIntTest.java From crnk-framework with Apache License 2.0 | 6 votes |
protected TestContainerFactory getTestContainerFactory() throws TestContainerException { final TestContainerFactory testContainerFactory = super.getTestContainerFactory(); return new TestContainerFactory() { @Override public TestContainer create(URI baseUri, DeploymentContext deploymentContext) { TestContainer container = testContainerFactory.create(baseUri, deploymentContext); try { Field field = container.getClass().getDeclaredField("server"); field.setAccessible(true); Server server = (Server) field.get(container); Handler handler = server.getHandler(); SecurityHandler securityHandler = identityManager.getSecurityHandler(); if (securityHandler.getHandler() == null) { securityHandler.setHandler(handler); } server.setHandler(securityHandler); } catch (Exception e) { throw new IllegalStateException(e); } return container; } }; }
Example #6
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-jpa2-hibernate with MIT License | 6 votes |
/** * An extending class must implement the {@link #configure()} method to * provide an application descriptor. * * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest() throws TestContainerException { ResourceConfig config = getResourceConfig(configure()); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #7
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-tomcat-mybatis with MIT License | 5 votes |
/** * Construct a new instance with an {@link Application} class. * * @param jaxrsApplicationClass an application describing how to configure the * test container. * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest(Class<? extends Application> jaxrsApplicationClass) throws TestContainerException { ResourceConfig config = ResourceConfig.forApplicationClass(jaxrsApplicationClass); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #8
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-tomcat-mybatis with MIT License | 5 votes |
/** * Construct a new instance with an application descriptor that defines * how the test container is configured. * * @param jaxrsApplication an application describing how to configure the * test container. * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest(Application jaxrsApplication) throws TestContainerException { ResourceConfig config = getResourceConfig(jaxrsApplication); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #9
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-tomcat-mybatis with MIT License | 5 votes |
/** * Construct a new instance with an {@link Application} class. * * @param jaxrsApplicationClass an application describing how to configure the * test container. * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest(Class<? extends Application> jaxrsApplicationClass) throws TestContainerException { ResourceConfig config = ResourceConfig.forApplicationClass(jaxrsApplicationClass); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #10
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-tomcat-mybatis with MIT License | 5 votes |
/** * Construct a new instance with an application descriptor that defines * how the test container is configured. * * @param jaxrsApplication an application describing how to configure the * test container. * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest(Application jaxrsApplication) throws TestContainerException { ResourceConfig config = getResourceConfig(jaxrsApplication); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #11
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-jpa2-hibernate with MIT License | 5 votes |
/** * Construct a new instance with an {@link Application} class. * * @param jaxrsApplicationClass an application describing how to configure the * test container. * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest(Class<? extends Application> jaxrsApplicationClass) throws TestContainerException { ResourceConfig config = ResourceConfig.forApplicationClass(jaxrsApplicationClass); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #12
Source File: AbstractTestClass.java From helix with Apache License 2.0 | 5 votes |
@Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return new TestContainerFactory() { @Override public TestContainer create(final URI baseUri, DeploymentContext deploymentContext) { return new TestContainer() { @Override public ClientConfig getClientConfig() { return null; } @Override public URI getBaseUri() { return baseUri; } @Override public void start() { if (_helixRestServer == null) { _helixRestServer = startRestServer(); } } @Override public void stop() { } }; } }; }
Example #13
Source File: SpringContextJerseyTest.java From demo-restWS-spring-jersey-jpa2-hibernate with MIT License | 5 votes |
/** * Construct a new instance with an application descriptor that defines * how the test container is configured. * * @param jaxrsApplication an application describing how to configure the * test container. * @throws TestContainerException if the default test container factory * cannot be obtained, or the application descriptor is not * supported by the test container factory. */ public SpringContextJerseyTest(Application jaxrsApplication) throws TestContainerException { ResourceConfig config = getResourceConfig(jaxrsApplication); config.register(new ServiceFinderBinder<TestContainerFactory>(TestContainerFactory.class, null, RuntimeType.SERVER)); if (isLogRecordingEnabled()) { registerLogHandler(); } this.application = new ApplicationHandler(config); this.tc = getContainer(application, getTestContainerFactory()); if (isLogRecordingEnabled()) { loggedStartupRecords.addAll(loggedRuntimeRecords); loggedRuntimeRecords.clear(); unregisterLogHandler(); } }
Example #14
Source File: AuthBaseTest.java From dropwizard-java8 with Apache License 2.0 | 4 votes |
@Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return new GrizzlyWebTestContainerFactory(); }
Example #15
Source File: AuthBaseTest.java From dropwizard-auth-jwt with Apache License 2.0 | 4 votes |
@Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return new GrizzlyWebTestContainerFactory(); }
Example #16
Source File: HttpClientSourceIT.java From datacollector with Apache License 2.0 | 4 votes |
@Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return new GrizzlyWebTestContainerFactory(); }
Example #17
Source File: HttpClientSourcePaginationIT.java From datacollector with Apache License 2.0 | 4 votes |
@Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return new GrizzlyWebTestContainerFactory(); }
Example #18
Source File: BaseHttpTargetTest.java From datacollector with Apache License 2.0 | 4 votes |
@Override protected final TestContainerFactory getTestContainerFactory() throws TestContainerException { return new GrizzlyWebTestContainerFactory(); }
Example #19
Source File: JerseyRule.java From jax-rs-pac4j with Apache License 2.0 | 4 votes |
@Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return JerseyRule.this.getTestContainerFactory(); }
Example #20
Source File: JerseyRule.java From jax-rs-pac4j with Apache License 2.0 | 4 votes |
@Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return JerseyRule.this.getTestContainerFactory(); }
Example #21
Source File: MCRJerseyTest.java From mycore with GNU General Public License v3.0 | 4 votes |
@Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return new ExtendedGrizzlyTestContainerFactory(); }
Example #22
Source File: ResourceTest.java From onos with Apache License 2.0 | 2 votes |
/** * Configures the jetty test container as default test container. * * @return test container factory * @throws TestContainerException */ @Override protected TestContainerFactory getTestContainerFactory() throws TestContainerException { return new JettyTestContainerFactory(); }