use of io.dropwizard.client.JerseyClientBuilder in project verify-hub by alphagov.
the class CountriesResourceIntegrationTest method setUp.
@BeforeClass
public static void setUp() {
JerseyClientConfiguration jerseyClientConfiguration = JerseyClientConfigurationBuilder.aJerseyClientConfiguration().withTimeout(Duration.seconds(10)).build();
client = new JerseyClientBuilder(configAppRule.getEnvironment()).using(jerseyClientConfiguration).build(CountriesResourceIntegrationTest.class.getSimpleName());
}
use of io.dropwizard.client.JerseyClientBuilder in project verify-hub by alphagov.
the class IdentityProviderResourceIntegrationTest method setUp.
@BeforeClass
public static void setUp() {
configAppRule.newApplication();
JerseyClientConfiguration jerseyClientConfiguration = JerseyClientConfigurationBuilder.aJerseyClientConfiguration().withTimeout(Duration.seconds(10)).build();
client = new JerseyClientBuilder(configAppRule.getEnvironment()).using(jerseyClientConfiguration).build(IdentityProviderResourceIntegrationTest.class.getSimpleName());
}
use of io.dropwizard.client.JerseyClientBuilder in project verify-hub by alphagov.
the class TransactionsResourceIntegrationTest method setUp.
@BeforeClass
public static void setUp() throws Exception {
configAppRule.newApplication();
JerseyClientConfiguration jerseyClientConfiguration = JerseyClientConfigurationBuilder.aJerseyClientConfiguration().withTimeout(Duration.seconds(10)).build();
client = new JerseyClientBuilder(configAppRule.getEnvironment()).using(jerseyClientConfiguration).build(TransactionsResourceIntegrationTest.class.getSimpleName());
}
use of io.dropwizard.client.JerseyClientBuilder in project dropwizard by dropwizard.
the class App1Test method custom204OnEmptyOptional.
@Test
public void custom204OnEmptyOptional() {
final Client client = new JerseyClientBuilder(RULE.getEnvironment()).build("test client 1");
final String url = String.format("http://localhost:%d/empty-optional", RULE.getLocalPort());
final Response response = client.target(url).request().get();
assertThat(response.getStatus()).isEqualTo(204);
}
use of io.dropwizard.client.JerseyClientBuilder in project dropwizard by dropwizard.
the class DropwizardSSLConnectionSocketFactoryTest method shouldBeOkIfHostnameVerificationOffAndServerHostnameMatchesAndFailVerfierSpecified.
@Test
public void shouldBeOkIfHostnameVerificationOffAndServerHostnameMatchesAndFailVerfierSpecified() throws Exception {
tlsConfiguration.setVerifyHostname(false);
final Client client = new JerseyClientBuilder(TLS_APP_RULE.getEnvironment()).using(jerseyClientConfiguration).using(new FailVerifier()).build("bad_host_fail_verifier_working");
final Response response = client.target(String.format("https://localhost:%d", TLS_APP_RULE.getLocalPort())).request().get();
assertThat(response.getStatus()).isEqualTo(200);
}
Aggregations