use of com.spectralogic.ds3autogen.docspec.Ds3DocSpecEmptyImpl 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.docspec.Ds3DocSpecEmptyImpl in project ds3_autogen by SpectraLogic.
the class StreamRequestPayloadGenerator_Test method toConstructorList_Test.
@Test
public void toConstructorList_Test() {
final ImmutableList<RequestConstructor> result = generator.toConstructorList(getCreateMultiPartUploadPart(), "", new Ds3DocSpecEmptyImpl());
assertThat(result.size(), is(2));
assertThat(result.get(0).getParameters().size(), is(6));
assertThat(result.get(0).getParameters().get(0).getName(), is("BucketName"));
assertThat(result.get(0).getParameters().get(1).getName(), is("ObjectName"));
assertThat(result.get(0).getParameters().get(2).getName(), is("PartNumber"));
assertThat(result.get(0).getParameters().get(3).getName(), is("UploadId"));
assertThat(result.get(0).getParameters().get(4).getName(), is("Size"));
assertThat(result.get(0).getParameters().get(5).getName(), is("Channel"));
assertThat(result.get(1).getParameters().size(), is(6));
assertThat(result.get(1).getParameters().get(0).getName(), is("BucketName"));
assertThat(result.get(1).getParameters().get(1).getName(), is("ObjectName"));
assertThat(result.get(1).getParameters().get(2).getName(), is("PartNumber"));
assertThat(result.get(1).getParameters().get(3).getName(), is("UploadId"));
assertThat(result.get(1).getParameters().get(4).getName(), is("Size"));
assertThat(result.get(1).getParameters().get(5).getName(), is("Stream"));
}
use of com.spectralogic.ds3autogen.docspec.Ds3DocSpecEmptyImpl 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.docspec.Ds3DocSpecEmptyImpl in project ds3_autogen by SpectraLogic.
the class BulkRequestGenerator_Test method toWithConstructor_VoidParam_Test.
@Test
public void toWithConstructor_VoidParam_Test() {
final String expectedResult = " public GetJobsRequestHandler withFullDetails(final boolean fullDetails) {\n" + " this.fullDetails = fullDetails;\n" + " if (this.fullDetails) {\n" + " this.getQueryParams().put(\"full_details\", null);\n" + " } else {\n" + " this.getQueryParams().remove(\"full_details\");\n" + " }\n" + " return this;\n" + " }\n";
final Arguments arg = new Arguments("void", "FullDetails");
final String result = generator.toWithConstructor(arg, "GetJobsRequestHandler", new Ds3DocSpecEmptyImpl());
assertThat(result, is(expectedResult));
}
use of com.spectralogic.ds3autogen.docspec.Ds3DocSpecEmptyImpl in project ds3_autogen by SpectraLogic.
the class BulkRequestGenerator_Test method toWithConstructor_MaxUploadSizeParam_Test.
@Test
public void toWithConstructor_MaxUploadSizeParam_Test() {
final String expectedResult = " public CreatePutJobRequestHandler withMaxUploadSize(final long maxUploadSize) {\n" + " if (maxUploadSize > MIN_UPLOAD_SIZE_IN_BYTES) {\n" + " this.getQueryParams().put(\"max_upload_size\", Long.toString(maxUploadSize));\n" + " } else {\n" + " this.getQueryParams().put(\"max_upload_size\", MAX_UPLOAD_SIZE_IN_BYTES);\n" + " }\n" + " return this;\n" + " }\n";
final Arguments arg = new Arguments("long", "MaxUploadSize");
final String result = generator.toWithConstructor(arg, "CreatePutJobRequestHandler", new Ds3DocSpecEmptyImpl());
assertThat(result, is(expectedResult));
}
Aggregations