Search in sources :

Example 1 with ClassifierList

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

the class NaturalLanguageClassifierIT method cListClassifiers.

/**
 * Test list classifiers.
 */
@Test
public void cListClassifiers() {
    ListClassifiersOptions listOptions = new ListClassifiersOptions.Builder().build();
    final ClassifierList classifiers = service.listClassifiers(listOptions).execute();
    assertNotNull(classifiers);
    // #324: Classifiers may be empty, because of other tests interfering.
    // The build should not fail here, because this is out of our control.
    Assume.assumeFalse(classifiers.getClassifiers().isEmpty());
}
Also used : ClassifierList(com.ibm.watson.developer_cloud.natural_language_classifier.v1.model.ClassifierList) ListClassifiersOptions(com.ibm.watson.developer_cloud.natural_language_classifier.v1.model.ListClassifiersOptions) Test(org.junit.Test) WatsonServiceTest(com.ibm.watson.developer_cloud.WatsonServiceTest)

Example 2 with ClassifierList

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

the class NaturalLanguageClassifierTest method testListClassifiersWOptions.

@Test
public void testListClassifiersWOptions() throws Throwable {
    // Schedule some responses.
    String mockResponseBody = "{\"classifiers\": [{\"name\": \"name\", \"url\": \"url\", \"status\": \"Non Existent\", \"classifier_id\": \"classifierId\", \"created\": \"2019-01-01T12:00:00.000Z\", \"status_description\": \"statusDescription\", \"language\": \"language\"}]}";
    String listClassifiersPath = "/v1/classifiers";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    constructClientService();
    // Construct an instance of the ListClassifiersOptions model
    ListClassifiersOptions listClassifiersOptionsModel = new ListClassifiersOptions();
    // Invoke operation with valid options model (positive test)
    Response<ClassifierList> response = naturalLanguageClassifierService.listClassifiers(listClassifiersOptionsModel).execute();
    assertNotNull(response);
    ClassifierList 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);
    assertNull(query);
    // Check request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, listClassifiersPath);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) ClassifierList(com.ibm.watson.natural_language_classifier.v1.model.ClassifierList) ListClassifiersOptions(com.ibm.watson.natural_language_classifier.v1.model.ListClassifiersOptions) Test(org.testng.annotations.Test)

Example 3 with ClassifierList

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

the class NaturalLanguageClassifierIT method cListClassifiers.

/**
 * Test list classifiers.
 */
@Test
public void cListClassifiers() {
    ListClassifiersOptions listOptions = new ListClassifiersOptions();
    final ClassifierList classifiers = service.listClassifiers(listOptions).execute().getResult();
    assertNotNull(classifiers);
    // #324: Classifiers may be empty, because of other tests interfering.
    // The build should not fail here, because this is out of our control.
    Assume.assumeFalse(classifiers.getClassifiers().isEmpty());
}
Also used : ClassifierList(com.ibm.watson.natural_language_classifier.v1.model.ClassifierList) ListClassifiersOptions(com.ibm.watson.natural_language_classifier.v1.model.ListClassifiersOptions) WatsonServiceTest(com.ibm.watson.common.WatsonServiceTest) Test(org.junit.Test)

Example 4 with ClassifierList

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

the class NaturalLanguageClassifier method listClassifiers.

/**
 * List classifiers.
 *
 * Returns an empty array if no classifiers are available.
 *
 * @param listClassifiersOptions the {@link ListClassifiersOptions} containing the options for the call
 * @return a {@link ServiceCall} with a response type of {@link ClassifierList}
 */
public ServiceCall<ClassifierList> listClassifiers(ListClassifiersOptions listClassifiersOptions) {
    String[] pathSegments = { "v1/classifiers" };
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments));
    if (listClassifiersOptions != null) {
    }
    return createServiceCall(builder.build(), ResponseConverterUtils.getObject(ClassifierList.class));
}
Also used : RequestBuilder(com.ibm.watson.developer_cloud.http.RequestBuilder) ClassifierList(com.ibm.watson.developer_cloud.natural_language_classifier.v1.model.ClassifierList)

Example 5 with ClassifierList

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

the class NaturalLanguageClassifierTest method testGetClassifiers.

/**
 * Test get classifiers.
 *
 * @throws InterruptedException the interrupted exception
 */
@Test
public void testGetClassifiers() throws InterruptedException {
    server.enqueue(jsonResponse(classifiers));
    final ClassifierList response = service.listClassifiers().execute();
    final RecordedRequest request = server.takeRequest();
    assertEquals(CLASSIFIERS_PATH, request.getPath());
    assertEquals(classifiers, response);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) ClassifierList(com.ibm.watson.developer_cloud.natural_language_classifier.v1.model.ClassifierList) Test(org.junit.Test) WatsonServiceUnitTest(com.ibm.watson.developer_cloud.WatsonServiceUnitTest)

Aggregations

ClassifierList (com.ibm.watson.developer_cloud.natural_language_classifier.v1.model.ClassifierList)3 ClassifierList (com.ibm.watson.natural_language_classifier.v1.model.ClassifierList)3 Test (org.junit.Test)3 ListClassifiersOptions (com.ibm.watson.natural_language_classifier.v1.model.ListClassifiersOptions)2 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)2 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)1 WatsonServiceTest (com.ibm.watson.common.WatsonServiceTest)1 WatsonServiceTest (com.ibm.watson.developer_cloud.WatsonServiceTest)1 WatsonServiceUnitTest (com.ibm.watson.developer_cloud.WatsonServiceUnitTest)1 RequestBuilder (com.ibm.watson.developer_cloud.http.RequestBuilder)1 ListClassifiersOptions (com.ibm.watson.developer_cloud.natural_language_classifier.v1.model.ListClassifiersOptions)1 MockResponse (okhttp3.mockwebserver.MockResponse)1 Test (org.testng.annotations.Test)1