Search in sources :

Example 1 with CreateExampleOptions

use of com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions in project java-sdk by watson-developer-cloud.

the class ConversationServiceIT method testDeleteExample.

/**
 * Test deleteExample.
 */
@Test
public void testDeleteExample() {
    createExampleIntent();
    // gotta be unique
    String exampleText = "Howdy " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    service.createExample(createOptions).execute();
    DeleteExampleOptions deleteOptions = new DeleteExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    service.deleteExample(deleteOptions).execute();
    try {
        GetExampleOptions getOptions = new GetExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
        service.getExample(getOptions).execute();
        fail("deleteCounterexample failed");
    } catch (Exception ex) {
        // Expected result
        assertTrue(ex instanceof NotFoundException);
    }
}
Also used : CreateExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.CreateExampleOptions) GetExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.GetExampleOptions) DeleteExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.DeleteExampleOptions) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Example 2 with CreateExampleOptions

use of com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions in project java-sdk by watson-developer-cloud.

the class AssistantServiceIT method testDeleteExample.

/**
 * Test deleteExample.
 */
@Test
public void testDeleteExample() {
    createExampleIntent();
    // gotta be unique
    String exampleText = "Howdy " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    service.createExample(createOptions).execute();
    DeleteExampleOptions deleteOptions = new DeleteExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    service.deleteExample(deleteOptions).execute();
    try {
        GetExampleOptions getOptions = new GetExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
        service.getExample(getOptions).execute();
        fail("deleteCounterexample failed");
    } catch (Exception ex) {
        // Expected result
        assertTrue(ex instanceof NotFoundException);
    }
}
Also used : CreateExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions) GetExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.GetExampleOptions) DeleteExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.DeleteExampleOptions) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Example 3 with CreateExampleOptions

use of com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions in project java-sdk by watson-developer-cloud.

the class AssistantServiceIT method testCreateExample.

/**
 * Test createExample.
 */
@Test
public void testCreateExample() {
    createExampleIntent();
    // gotta be unique
    String exampleText = "Howdy " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    Example response = service.createExample(createOptions).execute();
    try {
        assertNotNull(response);
        assertNotNull(response.getExampleText());
        assertEquals(response.getExampleText(), exampleText);
    } catch (Exception ex) {
        fail(ex.getMessage());
    } finally {
        // Clean up
        DeleteExampleOptions deleteOptions = new DeleteExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
        service.deleteExample(deleteOptions).execute();
    }
}
Also used : CreateExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions) CreateExample(com.ibm.watson.developer_cloud.assistant.v1.model.CreateExample) Example(com.ibm.watson.developer_cloud.assistant.v1.model.Example) DeleteExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.DeleteExampleOptions) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Example 4 with CreateExampleOptions

use of com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions in project java-sdk by watson-developer-cloud.

the class AssistantServiceIT method testListExamplesWithPaging.

/**
 * Test listExamples with paging.
 */
@Test
public void testListExamplesWithPaging() {
    createExampleIntent();
    // gotta be unique
    String exampleText1 = "Alpha " + UUID.randomUUID().toString();
    // gotta be unique
    String exampleText2 = "Zeta " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText1).build();
    service.createExample(createOptions).execute();
    service.createExample(createOptions.newBuilder().text(exampleText2).build()).execute();
    try {
        ListExamplesOptions listOptions = new ListExamplesOptions.Builder(workspaceId, exampleIntent).pageLimit(1L).sort("-text").build();
        ExampleCollection response = service.listExamples(listOptions).execute();
        assertNotNull(response);
        assertNotNull(response.getExamples());
        assertNotNull(response.getPagination());
        assertNotNull(response.getPagination().getRefreshUrl());
        assertNotNull(response.getPagination().getNextUrl());
        assertNotNull(response.getPagination().getCursor());
        boolean found1 = false, found2 = false;
        while (true) {
            assertNotNull(response.getExamples());
            assertTrue(response.getExamples().size() == 1);
            found1 |= response.getExamples().get(0).getExampleText().equals(exampleText1);
            found2 |= response.getExamples().get(0).getExampleText().equals(exampleText2);
            // verify sort
            assertTrue(found2 || !found1);
            if (response.getPagination().getCursor() == null) {
                break;
            }
            String cursor = response.getPagination().getCursor();
            response = service.listExamples(listOptions.newBuilder().cursor(cursor).build()).execute();
        }
        assertTrue(found1 && found2);
    } catch (Exception ex) {
        fail(ex.getMessage());
    } finally {
        // Clean up
        DeleteExampleOptions deleteOptions = new DeleteExampleOptions.Builder(workspaceId, exampleIntent, exampleText1).build();
        service.deleteExample(deleteOptions).execute();
        service.deleteExample(deleteOptions.newBuilder().text(exampleText2).build()).execute();
    }
}
Also used : ListExamplesOptions(com.ibm.watson.developer_cloud.assistant.v1.model.ListExamplesOptions) CreateExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions) DeleteExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.DeleteExampleOptions) ExampleCollection(com.ibm.watson.developer_cloud.assistant.v1.model.ExampleCollection) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Example 5 with CreateExampleOptions

use of com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions in project java-sdk by watson-developer-cloud.

the class ConversationServiceIT method testCreateExample.

/**
 * Test createExample.
 */
@Test
public void testCreateExample() {
    createExampleIntent();
    // gotta be unique
    String exampleText = "Howdy " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    Example response = service.createExample(createOptions).execute();
    try {
        assertNotNull(response);
        assertNotNull(response.getExampleText());
        assertEquals(response.getExampleText(), exampleText);
    } catch (Exception ex) {
        fail(ex.getMessage());
    } finally {
        // Clean up
        DeleteExampleOptions deleteOptions = new DeleteExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
        service.deleteExample(deleteOptions).execute();
    }
}
Also used : CreateExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.CreateExampleOptions) CreateExample(com.ibm.watson.developer_cloud.conversation.v1.model.CreateExample) Example(com.ibm.watson.developer_cloud.conversation.v1.model.Example) DeleteExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.DeleteExampleOptions) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Aggregations

NotFoundException (com.ibm.watson.developer_cloud.service.exception.NotFoundException)12 UnauthorizedException (com.ibm.watson.developer_cloud.service.exception.UnauthorizedException)12 Test (org.junit.Test)12 CreateExampleOptions (com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions)6 DeleteExampleOptions (com.ibm.watson.developer_cloud.assistant.v1.model.DeleteExampleOptions)6 CreateExampleOptions (com.ibm.watson.developer_cloud.conversation.v1.model.CreateExampleOptions)6 DeleteExampleOptions (com.ibm.watson.developer_cloud.conversation.v1.model.DeleteExampleOptions)6 Example (com.ibm.watson.developer_cloud.assistant.v1.model.Example)5 CreateExample (com.ibm.watson.developer_cloud.assistant.v1.model.CreateExample)4 CreateExample (com.ibm.watson.developer_cloud.conversation.v1.model.CreateExample)4 Example (com.ibm.watson.developer_cloud.conversation.v1.model.Example)4 Date (java.util.Date)4 ExampleCollection (com.ibm.watson.developer_cloud.assistant.v1.model.ExampleCollection)2 GetExampleOptions (com.ibm.watson.developer_cloud.assistant.v1.model.GetExampleOptions)2 ListExamplesOptions (com.ibm.watson.developer_cloud.assistant.v1.model.ListExamplesOptions)2 ExampleCollection (com.ibm.watson.developer_cloud.conversation.v1.model.ExampleCollection)2 GetExampleOptions (com.ibm.watson.developer_cloud.conversation.v1.model.GetExampleOptions)2 ListExamplesOptions (com.ibm.watson.developer_cloud.conversation.v1.model.ListExamplesOptions)2 JsonObject (com.google.gson.JsonObject)1 UpdateExampleOptions (com.ibm.watson.developer_cloud.assistant.v1.model.UpdateExampleOptions)1