use of com.spectralogic.ds3autogen.c.models.Request in project ds3_autogen by SpectraLogic.
the class CCodeGeneratorSpectraS3InitRequests_Test method testGenerateInitSpectraS3PutBucketRequest.
@Test
public void testGenerateInitSpectraS3PutBucketRequest() throws TemplateModelException, IOException {
final Map<String, Object> testMap = new HashMap<>();
final Request testRequest = RequestConverter.toRequest(Ds3ModelFixtures.createBucketSpectraS3Request(), new Ds3DocSpecEmptyImpl());
testMap.put("requestEntry", testRequest);
final CCodeGenerator codeGenerator = new CCodeGenerator();
final TestFileUtilsImpl fileUtils = new TestFileUtilsImpl();
codeGenerator.processTemplate(testMap, "request-templates/InitRequest.ftl", fileUtils.getOutputStream());
final ByteArrayOutputStream bstream = (ByteArrayOutputStream) fileUtils.getOutputStream();
final String output = new String(bstream.toByteArray());
final String expectedOutput = "ds3_request* ds3_init_create_bucket(const char* name) {" + "\n" + " struct _ds3_request* request = _common_request_init(HTTP_POST, _build_path(\"/_rest_/bucket/\", NULL, NULL));" + "\n" + " if (name != NULL) {" + "\n" + " _set_query_param((ds3_request*) request, \"name\", name);" + "\n" + " }" + "\n" + " return (ds3_request*) request;" + "\n" + "}\n";
assertEquals(expectedOutput, output);
}
use of com.spectralogic.ds3autogen.c.models.Request in project ds3_autogen by SpectraLogic.
the class CCodeGeneratorSpectraS3Requests_Test method testGenerateSpectraS3GetBucketsRequest.
@Test
public void testGenerateSpectraS3GetBucketsRequest() throws TemplateModelException, IOException {
final Map<String, Object> testMap = new HashMap<>();
final Request testRequest = RequestConverter.toRequest(Ds3ModelFixtures.getBucketsSpectraS3Request(), new Ds3DocSpecEmptyImpl());
testMap.put("requestEntry", testRequest);
final CCodeGenerator codeGenerator = new CCodeGenerator();
final TestFileUtilsImpl fileUtils = new TestFileUtilsImpl();
codeGenerator.processTemplate(testMap, "request-templates/RequestWithResponsePayload.ftl", fileUtils.getOutputStream());
final ByteArrayOutputStream bstream = (ByteArrayOutputStream) fileUtils.getOutputStream();
final String output = new String(bstream.toByteArray());
final String expectedOutput = "ds3_error* ds3_get_buckets(const ds3_client* client, const ds3_request* request, ds3_bucket_list_response** response) {" + "\n" + " ds3_error* error;" + "\n" + " GByteArray* xml_blob;" + "\n" + " ds3_string_multimap* return_headers = NULL;" + "\n" + "\n" + " if (request->path->size < 2) {" + "\n" + " return ds3_create_error(DS3_ERROR_MISSING_ARGS, \"The resource type parameter is required.\");" + "\n" + " }" + "\n" + "\n" + " xml_blob = g_byte_array_new();" + "\n" + " error = _internal_request_dispatcher(client, request, xml_blob, ds3_load_buffer, NULL, NULL, &return_headers);" + "\n" + " if (error != NULL) {" + "\n" + " ds3_string_multimap_free(return_headers);" + "\n" + " g_byte_array_free(xml_blob, TRUE);" + "\n" + " return error;" + "\n" + " }" + "\n" + "\n" + " error = _parse_top_level_ds3_bucket_list_response(client, request, response, xml_blob);" + "\n" + "\n" + " (*response)->paging = _parse_paging_headers(return_headers);" + "\n" + " ds3_string_multimap_free(return_headers);" + "\n" + "\n" + " return error;" + "\n" + "}" + "\n";
assertEquals(expectedOutput, output);
}
Aggregations