Search in sources :

Example 1 with GetTrainingQueryOptions

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

the class Discovery method getTrainingQuery.

/**
 * Get a training data query.
 *
 * <p>Get details for a specific training data query, including the query string and all examples.
 *
 * @param getTrainingQueryOptions the {@link GetTrainingQueryOptions} containing the options for
 *     the call
 * @return a {@link ServiceCall} with a result of type {@link TrainingQuery}
 */
public ServiceCall<TrainingQuery> getTrainingQuery(GetTrainingQueryOptions getTrainingQueryOptions) {
    com.ibm.cloud.sdk.core.util.Validator.notNull(getTrainingQueryOptions, "getTrainingQueryOptions cannot be null");
    Map<String, String> pathParamsMap = new HashMap<String, String>();
    pathParamsMap.put("project_id", getTrainingQueryOptions.projectId());
    pathParamsMap.put("query_id", getTrainingQueryOptions.queryId());
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v2/projects/{project_id}/training_data/queries/{query_id}", pathParamsMap));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("discovery", "v2", "getTrainingQuery");
    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<TrainingQuery> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<TrainingQuery>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) HashMap(java.util.HashMap) TrainingQuery(com.ibm.watson.discovery.v2.model.TrainingQuery)

Example 2 with GetTrainingQueryOptions

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

the class DiscoveryTest method testGetTrainingQueryWOptions.

@Test
public void testGetTrainingQueryWOptions() throws Throwable {
    // Schedule some responses.
    String mockResponseBody = "{\"query_id\": \"queryId\", \"natural_language_query\": \"naturalLanguageQuery\", \"filter\": \"filter\", \"created\": \"2019-01-01T12:00:00.000Z\", \"updated\": \"2019-01-01T12:00:00.000Z\", \"examples\": [{\"document_id\": \"documentId\", \"collection_id\": \"collectionId\", \"relevance\": 9, \"created\": \"2019-01-01T12:00:00.000Z\", \"updated\": \"2019-01-01T12:00:00.000Z\"}]}";
    String getTrainingQueryPath = "/v2/projects/testString/training_data/queries/testString";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    constructClientService();
    // Construct an instance of the GetTrainingQueryOptions model
    GetTrainingQueryOptions getTrainingQueryOptionsModel = new GetTrainingQueryOptions.Builder().projectId("testString").queryId("testString").build();
    // Invoke operation with valid options model (positive test)
    Response<TrainingQuery> response = discoveryService.getTrainingQuery(getTrainingQueryOptionsModel).execute();
    assertNotNull(response);
    TrainingQuery 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, getTrainingQueryPath);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) GetTrainingQueryOptions(com.ibm.watson.discovery.v2.model.GetTrainingQueryOptions) TrainingQuery(com.ibm.watson.discovery.v2.model.TrainingQuery) Test(org.testng.annotations.Test)

Aggregations

TrainingQuery (com.ibm.watson.discovery.v2.model.TrainingQuery)2 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)1 GetTrainingQueryOptions (com.ibm.watson.discovery.v2.model.GetTrainingQueryOptions)1 HashMap (java.util.HashMap)1 MockResponse (okhttp3.mockwebserver.MockResponse)1 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)1 Test (org.testng.annotations.Test)1