Search in sources :

Example 6 with ListCollectionsResponse

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

the class Discovery method listCollections.

/**
 * List collections.
 *
 * Lists existing collections for the service instance.
 *
 * @param listCollectionsOptions the {@link ListCollectionsOptions} containing the options for the call
 * @return a {@link ServiceCall} with a response type of {@link ListCollectionsResponse}
 */
public ServiceCall<ListCollectionsResponse> listCollections(ListCollectionsOptions listCollectionsOptions) {
    Validator.notNull(listCollectionsOptions, "listCollectionsOptions cannot be null");
    String[] pathSegments = { "v1/environments", "collections" };
    String[] pathParameters = { listCollectionsOptions.environmentId() };
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments, pathParameters));
    builder.query(VERSION, versionDate);
    if (listCollectionsOptions.name() != null) {
        builder.query("name", listCollectionsOptions.name());
    }
    return createServiceCall(builder.build(), ResponseConverterUtils.getObject(ListCollectionsResponse.class));
}
Also used : RequestBuilder(com.ibm.watson.developer_cloud.http.RequestBuilder) ListCollectionsResponse(com.ibm.watson.developer_cloud.discovery.v1.model.ListCollectionsResponse)

Example 7 with ListCollectionsResponse

use of com.ibm.watson.discovery.v1.model.ListCollectionsResponse 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 8 with ListCollectionsResponse

use of com.ibm.watson.discovery.v1.model.ListCollectionsResponse 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)

Example 9 with ListCollectionsResponse

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

the class Discovery method listCollections.

/**
 * List collections.
 *
 * <p>Lists existing collections for the service instance.
 *
 * @param listCollectionsOptions the {@link ListCollectionsOptions} containing the options for the
 *     call
 * @return a {@link ServiceCall} with a result of type {@link ListCollectionsResponse}
 */
public ServiceCall<ListCollectionsResponse> listCollections(ListCollectionsOptions listCollectionsOptions) {
    com.ibm.cloud.sdk.core.util.Validator.notNull(listCollectionsOptions, "listCollectionsOptions cannot be null");
    Map<String, String> pathParamsMap = new HashMap<String, String>();
    pathParamsMap.put("environment_id", listCollectionsOptions.environmentId());
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/environments/{environment_id}/collections", pathParamsMap));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("discovery", "v1", "listCollections");
    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));
    if (listCollectionsOptions.name() != null) {
        builder.query("name", String.valueOf(listCollectionsOptions.name()));
    }
    ResponseConverter<ListCollectionsResponse> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<ListCollectionsResponse>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) HashMap(java.util.HashMap) ListCollectionsResponse(com.ibm.watson.discovery.v1.model.ListCollectionsResponse)

Aggregations

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