use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BulkRequestGenerator_Test method toConstructorAssignmentList_FullList_Test.
@Test
public void toConstructorAssignmentList_FullList_Test() {
final ImmutableList<Arguments> arguments = ImmutableList.of(new Arguments("type", "Priority"), new Arguments("type", "Name1"), new Arguments("type", "WriteOptimization"), new Arguments("type", "BucketName"), new Arguments("type", "Name2"), new Arguments("type", "Objects"));
final ImmutableList<Arguments> result = toConstructorAssignmentList(arguments);
assertThat(result.size(), is(2));
assertThat(result.get(0).getName(), is("Name1"));
assertThat(result.get(1).getName(), is("Name2"));
}
use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BulkRequestGenerator_Test method toWithConstructor_Test.
@Test
public void toWithConstructor_Test() {
final String expectedResult = " public GetBucketRequestHandler withDelimiter(final String delimiter) {\n" + " this.delimiter = delimiter;\n" + " this.updateQueryParam(\"delimiter\", delimiter);\n" + " return this;\n" + " }\n";
final Arguments arg = new Arguments("String", "Delimiter");
final String result = generator.toWithConstructor(arg, "GetBucketRequestHandler", new Ds3DocSpecEmptyImpl());
assertThat(result, is(expectedResult));
}
use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BaseResponseGenerator_Test method toParam_SimpleType_Test.
@Test
public void toParam_SimpleType_Test() {
final Ds3ResponseCode responseCode = new Ds3ResponseCode(200, ImmutableList.of(new Ds3ResponseType("com.test.TestType", null)));
final Optional<Arguments> result = toParam(responseCode);
assertTrue(result.isPresent());
assertThat(result.get().getName(), is("testTypeResult"));
assertThat(result.get().getType(), is("TestType"));
}
use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BaseResponseGenerator_Test method toParamList_FullList_Test.
@Test
public void toParamList_FullList_Test() {
final ImmutableList<Ds3ResponseCode> responseCodes = ImmutableList.of(new Ds3ResponseCode(200, ImmutableList.of(new Ds3ResponseType("com.test.TestTypeB", null))), new Ds3ResponseCode(201, ImmutableList.of(new Ds3ResponseType("null", null))), new Ds3ResponseCode(203, ImmutableList.of(new Ds3ResponseType("com.test.TestTypeA", null))), new Ds3ResponseCode(400, ImmutableList.of(new Ds3ResponseType("com.test.TestTypeC", null))));
final ImmutableList<Arguments> result = generator.toParamList(responseCodes);
assertThat(result.size(), is(2));
assertThat(result.get(0).getName(), is("testTypeAResult"));
assertThat(result.get(1).getName(), is("testTypeBResult"));
}
use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BaseResponseGenerator_Test method toParam_NullPayload_Test.
@Test
public void toParam_NullPayload_Test() {
final Ds3ResponseCode responseCode = new Ds3ResponseCode(200, ImmutableList.of(new Ds3ResponseType("null", null)));
final Optional<Arguments> result = toParam(responseCode);
assertFalse(result.isPresent());
}
Aggregations