Skip to content
This repository has been archived by the owner on Aug 13, 2020. It is now read-only.

Commit

Permalink
Add tests to cover Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaun Francis committed Apr 22, 2016
1 parent 35aedc5 commit cabfbbd
Showing 1 changed file with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import static uk.gov.justice.services.adapters.test.utils.builder.ActionBuilder.action;
import static uk.gov.justice.services.adapters.test.utils.builder.RamlBuilder.raml;
import static uk.gov.justice.services.adapters.test.utils.builder.RamlBuilder.restRamlWithDefaults;
import static uk.gov.justice.services.adapters.test.utils.builder.RamlBuilder.restRamlWithTitleVersion;
import static uk.gov.justice.services.adapters.test.utils.builder.ResourceBuilder.resource;
import static uk.gov.justice.services.adapters.test.utils.config.GeneratorConfigUtil.configurationWithBasePackage;
import static uk.gov.justice.services.adapters.test.utils.reflection.ReflectionUtil.firstMethodOf;
Expand All @@ -40,6 +41,8 @@ public class RestClientGenerator_CodeStructureTest {

private static final String BASE_PACKAGE = "org.raml.test";
private static final Map<String, String> NOT_USED_GENERATOR_PROPERTIES = ImmutableMap.of("serviceComponent", "QUERY_CONTROLLER");
private static final String BASE_URI_WITH_LESS_THAN_EIGHT_PARTS = "http://localhost:8080/command/api/rest/service";
private static final String BASE_URI_WITH_MORE_THAN_EIGHT_PARTS = "http://localhost:8080/warname/command/api/rest/service/extra";

private RestClientGenerator restClientGenerator;

Expand Down Expand Up @@ -114,7 +117,7 @@ public void shouldGenerateMethodAnnotatedWithHandlesAnnotation() throws Exceptio
}

@Test
public void shouldGenerateMethodAceptingEnvelope() throws MalformedURLException {
public void shouldGenerateMethodAcceptingEnvelope() throws MalformedURLException {
restClientGenerator.run(
restRamlWithDefaults()
.with(resource("/some/path/{recipeId}")
Expand Down Expand Up @@ -162,6 +165,29 @@ public void shouldThrowExceptionIfServiceComponentPropertyNotValid() {

}

@Test
public void shouldThrowExceptionIfBaseUriHasLessThanEightParts() {

exception.expect(IllegalArgumentException.class);
exception.expectMessage(containsString("baseUri must have 8 parts"));

restClientGenerator.run(
restRamlWithTitleVersion().withBaseUri(BASE_URI_WITH_LESS_THAN_EIGHT_PARTS).build(),
configurationWithBasePackage(BASE_PACKAGE, outputFolder, NOT_USED_GENERATOR_PROPERTIES));

}

@Test
public void shouldThrowExceptionIfBaseUriHasMoreThanEightParts() {

exception.expect(IllegalArgumentException.class);
exception.expectMessage(containsString("baseUri must have 8 parts"));

restClientGenerator.run(
restRamlWithTitleVersion().withBaseUri(BASE_URI_WITH_MORE_THAN_EIGHT_PARTS).build(),
configurationWithBasePackage(BASE_PACKAGE, outputFolder, NOT_USED_GENERATOR_PROPERTIES));

}

private void assertBaseUriField(Field field) {
assertThat(Modifier.isStatic(field.getModifiers()), is(true));
Expand Down

0 comments on commit cabfbbd

Please sign in to comment.