use of com.ibm.watson.discovery.v1.model.DeleteEnvironmentResponse in project java-sdk by watson-developer-cloud.
the class DiscoveryTest method testDeleteEnvironmentWOptions.
// Test the deleteEnvironment operation with a valid options model parameter
@Test
public void testDeleteEnvironmentWOptions() throws Throwable {
// Register a mock response
String mockResponseBody = "{\"environment_id\": \"environmentId\", \"status\": \"deleted\"}";
String deleteEnvironmentPath = "/v1/environments/testString";
server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
// Construct an instance of the DeleteEnvironmentOptions model
DeleteEnvironmentOptions deleteEnvironmentOptionsModel = new DeleteEnvironmentOptions.Builder().environmentId("testString").build();
// Invoke deleteEnvironment() with a valid options model and verify the result
Response<DeleteEnvironmentResponse> response = discoveryService.deleteEnvironment(deleteEnvironmentOptionsModel).execute();
assertNotNull(response);
DeleteEnvironmentResponse responseObj = response.getResult();
assertNotNull(responseObj);
// Verify the contents of the request sent to the mock server
RecordedRequest request = server.takeRequest();
assertNotNull(request);
assertEquals(request.getMethod(), "DELETE");
// Verify request path
String parsedPath = TestUtilities.parseReqPath(request);
assertEquals(parsedPath, deleteEnvironmentPath);
// Verify query params
Map<String, String> query = TestUtilities.parseQueryString(request);
assertNotNull(query);
assertEquals(query.get("version"), "testString");
}
use of com.ibm.watson.discovery.v1.model.DeleteEnvironmentResponse in project java-sdk by watson-developer-cloud.
the class Discovery method deleteEnvironment.
/**
* Delete environment.
*
* @param deleteEnvironmentOptions the {@link DeleteEnvironmentOptions} containing the options for
* the call
* @return a {@link ServiceCall} with a result of type {@link DeleteEnvironmentResponse}
*/
public ServiceCall<DeleteEnvironmentResponse> deleteEnvironment(DeleteEnvironmentOptions deleteEnvironmentOptions) {
com.ibm.cloud.sdk.core.util.Validator.notNull(deleteEnvironmentOptions, "deleteEnvironmentOptions cannot be null");
Map<String, String> pathParamsMap = new HashMap<String, String>();
pathParamsMap.put("environment_id", deleteEnvironmentOptions.environmentId());
RequestBuilder builder = RequestBuilder.delete(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/environments/{environment_id}", pathParamsMap));
Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("discovery", "v1", "deleteEnvironment");
for (Entry<String, String> header : sdkHeaders.entrySet()) {
builder.header(header.getKey(), header.getValue());
}
builder.header("Accept", "application/json");
builder.query("version", String.valueOf(this.version));
ResponseConverter<DeleteEnvironmentResponse> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<DeleteEnvironmentResponse>() {
}.getType());
return createServiceCall(builder.build(), responseConverter);
}
use of com.ibm.watson.discovery.v1.model.DeleteEnvironmentResponse in project java-sdk by watson-developer-cloud.
the class DiscoveryServiceTest method deleteEnvironmentIsSuccessful.
// Deleted test for createEnvironment with null name as this does not fail in the current SDK
/**
* Delete environment is successful.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void deleteEnvironmentIsSuccessful() throws InterruptedException {
server.enqueue(jsonResponse(deleteEnvResp));
DeleteEnvironmentOptions deleteRequest = new DeleteEnvironmentOptions.Builder(environmentId).build();
DeleteEnvironmentResponse response = discoveryService.deleteEnvironment(deleteRequest).execute().getResult();
RecordedRequest request = server.takeRequest();
assertEquals(ENV1_PATH, request.getPath());
assertEquals(DELETE, request.getMethod());
assertEquals(deleteEnvResp.getEnvironmentId(), response.getEnvironmentId());
assertEquals(deleteEnvResp.getStatus(), response.getStatus());
}
Aggregations