use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BaseResponseGenerator_Test method toConstructorParams_FullList_Test.
@Test
public void toConstructorParams_FullList_Test() {
final String expected = "final TypeOne argOne, final TypeTwo argTwo, final TypeThree argThree";
final ImmutableList<Arguments> args = ImmutableList.of(new Arguments("TypeOne", "ArgOne"), new Arguments("TypeTwo", "ArgTwo"), new Arguments("TypeThree", "ArgThree"));
final String result = generator.toConstructorParams(args);
assertThat(result, is(expected));
}
use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BaseResponseGenerator_Test method toParam_ComponentType_Test.
@Test
public void toParam_ComponentType_Test() {
final Ds3ResponseCode responseCode = new Ds3ResponseCode(200, ImmutableList.of(new Ds3ResponseType("array", "com.test.ComponentType")));
final Optional<Arguments> result = toParam(responseCode);
assertTrue(result.isPresent());
assertThat(result.get().getName(), is("componentTypeListResult"));
assertThat(result.get().getType(), is("List<ComponentType>"));
}
use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class GetObjectResponseGenerator_Test method toConstructorParamsWithChecksum_FullList_Test.
@Test
public void toConstructorParamsWithChecksum_FullList_Test() {
final String expected = "final Metadata metadata, final long objectSize, final String checksum, final ChecksumType.Type checksumType";
final ImmutableList<Arguments> args = ImmutableList.of(new Arguments("Metadata", "Metadata"), new Arguments("long", "ObjectSize"));
assertThat(generator.toConstructorParamsWithChecksum(args), is(expected));
}
use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BaseRequestGenerator_Test method toConstructorList_Test.
@Test
public void toConstructorList_Test() {
final ImmutableList<Ds3Param> params = createTestDs3ParamList();
final Ds3Request request = createDs3RequestTestData(true, null, params);
final ImmutableList<RequestConstructor> result = generator.toConstructorList(request, "", new Ds3DocSpecEmptyImpl());
assertThat(result.size(), is(1));
final RequestConstructor constructor = result.get(0);
assertThat(constructor.getAdditionalLines().size(), is(0));
assertThat(constructor.isDeprecated(), is(false));
final ImmutableList<Arguments> constructorParams = constructor.getParameters();
assertThat(constructorParams.size(), is(3));
assertThat(constructorParams.get(0).getName(), is("MaxUploadSize"));
assertThat(constructorParams.get(1).getName(), is("Name"));
assertThat(constructorParams.get(2).getName(), is("Priority"));
final ImmutableList<Arguments> constructorAssignments = constructor.getAssignments();
assertThat(constructorAssignments.size(), is(3));
assertThat(constructorAssignments.get(0).getName(), is("MaxUploadSize"));
assertThat(constructorAssignments.get(1).getName(), is("Name"));
assertThat(constructorAssignments.get(2).getName(), is("Priority"));
final ImmutableList<QueryParam> queryParams = constructor.getQueryParams();
assertThat(queryParams.size(), is(4));
assertThat(queryParams.get(0).getName(), is("IgnoreNamingConflicts"));
assertThat(queryParams.get(1).getName(), is("MaxUploadSize"));
assertThat(queryParams.get(2).getName(), is("Name"));
assertThat(queryParams.get(3).getName(), is("Priority"));
}
use of com.spectralogic.ds3autogen.api.models.Arguments in project ds3_autogen by SpectraLogic.
the class BaseRequestGenerator_Test method splitUuidConstructor_Test.
@Test
public void splitUuidConstructor_Test() {
final ImmutableList<Arguments> args = ImmutableList.of(new Arguments("String", "StringArg"), new Arguments("UUID", "UuidArg"), new Arguments("int", "IntArg"));
final RequestConstructor constructor = new RequestConstructor(args, args, argsToQueryParams(args), "");
final ImmutableList<RequestConstructor> result = splitUuidConstructor(constructor);
assertThat(result.size(), is(2));
assertThat(getAllArgumentTypes(result.get(0).getParameters()), hasItem("UUID"));
assertThat(getQueryParamTypes(result.get(0).getQueryParams()), hasItem("UUID"));
assertThat(getAllArgumentTypes(result.get(0).getAssignments()), hasItem("UUID"));
assertThat(getAllArgumentTypes(result.get(1).getParameters()), not(hasItem("UUID")));
assertThat(getQueryParamTypes(result.get(1).getQueryParams()), not(hasItem("UUID")));
assertThat(getAllArgumentTypes(result.get(1).getAssignments()), not(hasItem("UUID")));
}
Aggregations