use of com.ibm.watson.discovery.v2.model.ListCollectionsOptions in project java-sdk by watson-developer-cloud.
the class DiscoveryServiceTest method getCollectionsIsSuccessful.
/**
* Gets the collections is successful.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void getCollectionsIsSuccessful() throws InterruptedException {
server.enqueue(jsonResponse(getCollsResp));
ListCollectionsOptions getRequest = new ListCollectionsOptions.Builder(environmentId).build();
ListCollectionsResponse response = discoveryService.listCollections(getRequest).execute().getResult();
RecordedRequest request = server.takeRequest();
assertEquals(COLL1_PATH, request.getPath());
assertEquals(GET, request.getMethod());
assertEquals(getCollsResp, response);
}
use of com.ibm.watson.discovery.v2.model.ListCollectionsOptions in project java-sdk by watson-developer-cloud.
the class VisualRecognitionTest method testListCollectionsWOptions.
@Test
public void testListCollectionsWOptions() throws Throwable {
// Schedule some responses.
String mockResponseBody = "{\"collections\": [{\"collection_id\": \"collectionId\", \"name\": \"name\", \"description\": \"description\", \"created\": \"2019-01-01T12:00:00.000Z\", \"updated\": \"2019-01-01T12:00:00.000Z\", \"image_count\": 10, \"training_status\": {\"objects\": {\"ready\": false, \"in_progress\": true, \"data_changed\": false, \"latest_failed\": true, \"rscnn_ready\": true, \"description\": \"description\"}}}]}";
String listCollectionsPath = "/v4/collections";
server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
constructClientService();
// Construct an instance of the ListCollectionsOptions model
ListCollectionsOptions listCollectionsOptionsModel = new ListCollectionsOptions();
// Invoke operation with valid options model (positive test)
Response<CollectionsList> response = visualRecognitionService.listCollections(listCollectionsOptionsModel).execute();
assertNotNull(response);
CollectionsList responseObj = response.getResult();
assertNotNull(responseObj);
// Verify the contents of the request
RecordedRequest request = server.takeRequest();
assertNotNull(request);
assertEquals(request.getMethod(), "GET");
// Check query
Map<String, String> query = TestUtilities.parseQueryString(request);
assertNotNull(query);
// Get query params
assertEquals(query.get("version"), "testString");
// Check request path
String parsedPath = TestUtilities.parseReqPath(request);
assertEquals(parsedPath, listCollectionsPath);
}
Aggregations