Search in sources :

Example 1 with ListCollectionsOptions

use of com.ibm.watson.discovery.v1.model.ListCollectionsOptions in project java-sdk by watson-developer-cloud.

the class DiscoveryServiceTest method getCollectionsIsSuccessful.

@Test
public void getCollectionsIsSuccessful() throws InterruptedException {
    server.enqueue(jsonResponse(getCollsResp));
    ListCollectionsOptions getRequest = new ListCollectionsOptions.Builder(environmentId).build();
    ListCollectionsResponse response = discoveryService.listCollections(getRequest).execute();
    RecordedRequest request = server.takeRequest();
    assertEquals(COLL1_PATH, request.getPath());
    assertEquals(GET, request.getMethod());
    assertEquals(getCollsResp, response);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) ListCollectionsOptions(com.ibm.watson.developer_cloud.discovery.v1.model.ListCollectionsOptions) ListCollectionsResponse(com.ibm.watson.developer_cloud.discovery.v1.model.ListCollectionsResponse) WatsonServiceUnitTest(com.ibm.watson.developer_cloud.WatsonServiceUnitTest) Test(org.junit.Test)

Example 2 with ListCollectionsOptions

use of com.ibm.watson.discovery.v1.model.ListCollectionsOptions in project java-sdk by watson-developer-cloud.

the class DiscoveryTest method testListCollectionsWOptions.

// Test the listCollections operation with a valid options model parameter
@Test
public void testListCollectionsWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"collections\": [{\"collection_id\": \"collectionId\", \"name\": \"name\", \"description\": \"description\", \"created\": \"2019-01-01T12:00:00.000Z\", \"updated\": \"2019-01-01T12:00:00.000Z\", \"status\": \"active\", \"configuration_id\": \"configurationId\", \"language\": \"language\", \"document_counts\": {\"available\": 9, \"processing\": 10, \"failed\": 6, \"pending\": 7}, \"disk_usage\": {\"used_bytes\": 9}, \"training_status\": {\"total_examples\": 13, \"available\": false, \"processing\": true, \"minimum_queries_added\": false, \"minimum_examples_added\": true, \"sufficient_label_diversity\": true, \"notices\": 7, \"successfully_trained\": \"2019-01-01T12:00:00.000Z\", \"data_updated\": \"2019-01-01T12:00:00.000Z\"}, \"crawl_status\": {\"source_crawl\": {\"status\": \"running\", \"next_crawl\": \"2019-01-01T12:00:00.000Z\"}}, \"smart_document_understanding\": {\"enabled\": true, \"total_annotated_pages\": 19, \"total_pages\": 10, \"total_documents\": 14, \"custom_fields\": {\"defined\": 7, \"maximum_allowed\": 14}}}]}";
    String listCollectionsPath = "/v1/environments/testString/collections";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the ListCollectionsOptions model
    ListCollectionsOptions listCollectionsOptionsModel = new ListCollectionsOptions.Builder().environmentId("testString").name("testString").build();
    // Invoke listCollections() with a valid options model and verify the result
    Response<ListCollectionsResponse> response = discoveryService.listCollections(listCollectionsOptionsModel).execute();
    assertNotNull(response);
    ListCollectionsResponse 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(), "GET");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, listCollectionsPath);
    // Verify query params
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNotNull(query);
    assertEquals(query.get("version"), "testString");
    assertEquals(query.get("name"), "testString");
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) ListCollectionsOptions(com.ibm.watson.discovery.v1.model.ListCollectionsOptions) ListCollectionsResponse(com.ibm.watson.discovery.v1.model.ListCollectionsResponse) Test(org.testng.annotations.Test)

Example 3 with ListCollectionsOptions

use of com.ibm.watson.discovery.v1.model.ListCollectionsOptions in project java-sdk by watson-developer-cloud.

the class DiscoveryServiceIT method listCollectionsIsSuccessful.

// Collections
@Test
public void listCollectionsIsSuccessful() {
    createTestCollection();
    ListCollectionsOptions listOptions = new ListCollectionsOptions.Builder(environmentId).build();
    ListCollectionsResponse listResponse = discovery.listCollections(listOptions).execute();
    assertFalse(listResponse.getCollections().isEmpty());
}
Also used : ListCollectionsOptions(com.ibm.watson.developer_cloud.discovery.v1.model.ListCollectionsOptions) ListCollectionsResponse(com.ibm.watson.developer_cloud.discovery.v1.model.ListCollectionsResponse) Test(org.junit.Test) WatsonServiceTest(com.ibm.watson.developer_cloud.WatsonServiceTest)

Example 4 with ListCollectionsOptions

use of com.ibm.watson.discovery.v1.model.ListCollectionsOptions in project java-sdk by watson-developer-cloud.

the class DiscoveryTest method testListCollectionsWOptions.

@Test
public void testListCollectionsWOptions() throws Throwable {
    // Schedule some responses.
    String mockResponseBody = "{\"collections\": [{\"collection_id\": \"collectionId\", \"name\": \"name\"}]}";
    String listCollectionsPath = "/v2/projects/testString/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.Builder().projectId("testString").build();
    // Invoke operation with valid options model (positive test)
    Response<ListCollectionsResponse> response = discoveryService.listCollections(listCollectionsOptionsModel).execute();
    assertNotNull(response);
    ListCollectionsResponse 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);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) ListCollectionsOptions(com.ibm.watson.discovery.v2.model.ListCollectionsOptions) ListCollectionsResponse(com.ibm.watson.discovery.v2.model.ListCollectionsResponse) Test(org.testng.annotations.Test)

Example 5 with ListCollectionsOptions

use of com.ibm.watson.discovery.v1.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);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) ListCollectionsOptions(com.ibm.watson.discovery.v1.model.ListCollectionsOptions) ListCollectionsResponse(com.ibm.watson.discovery.v1.model.ListCollectionsResponse) WatsonServiceUnitTest(com.ibm.watson.common.WatsonServiceUnitTest)

Aggregations

RecordedRequest (okhttp3.mockwebserver.RecordedRequest)5 ListCollectionsResponse (com.ibm.watson.discovery.v1.model.ListCollectionsResponse)3 MockResponse (okhttp3.mockwebserver.MockResponse)3 Test (org.testng.annotations.Test)3 ListCollectionsOptions (com.ibm.watson.developer_cloud.discovery.v1.model.ListCollectionsOptions)2 ListCollectionsResponse (com.ibm.watson.developer_cloud.discovery.v1.model.ListCollectionsResponse)2 ListCollectionsOptions (com.ibm.watson.discovery.v1.model.ListCollectionsOptions)2 Test (org.junit.Test)2 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)1 WatsonServiceUnitTest (com.ibm.watson.common.WatsonServiceUnitTest)1 WatsonServiceTest (com.ibm.watson.developer_cloud.WatsonServiceTest)1 WatsonServiceUnitTest (com.ibm.watson.developer_cloud.WatsonServiceUnitTest)1 ListCollectionsOptions (com.ibm.watson.discovery.v2.model.ListCollectionsOptions)1 ListCollectionsResponse (com.ibm.watson.discovery.v2.model.ListCollectionsResponse)1 CollectionsList (com.ibm.watson.visual_recognition.v4.model.CollectionsList)1 ListCollectionsOptions (com.ibm.watson.visual_recognition.v4.model.ListCollectionsOptions)1 HashMap (java.util.HashMap)1