Search in sources :

Example 1 with GetExampleOptions

use of com.ibm.watson.developer_cloud.conversation.v1.model.GetExampleOptions 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 GetExampleOptions

use of com.ibm.watson.developer_cloud.conversation.v1.model.GetExampleOptions 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 GetExampleOptions

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

the class AssistantServiceIT method testGetExample.

/**
 * Test getExample.
 */
@Test
public void testGetExample() {
    createExampleIntent();
    Date start = new Date();
    // gotta be unique
    String exampleText = "Howdy " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    service.createExample(createOptions).execute();
    try {
        GetExampleOptions getOptions = new GetExampleOptions.Builder(workspaceId, exampleIntent, exampleText).includeAudit(true).build();
        Example response = service.getExample(getOptions).execute();
        assertNotNull(response);
        assertNotNull(response.getExampleText());
        assertEquals(response.getExampleText(), exampleText);
        assertNotNull(response.getCreated());
        assertNotNull(response.getUpdated());
        Date now = new Date();
        assertTrue(fuzzyBefore(response.getCreated(), now));
        assertTrue(fuzzyAfter(response.getCreated(), start));
        assertTrue(fuzzyBefore(response.getUpdated(), now));
        assertTrue(fuzzyAfter(response.getUpdated(), start));
    } 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) GetExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.GetExampleOptions) 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) Date(java.util.Date) 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 GetExampleOptions

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

the class ConversationServiceIT method testGetExample.

/**
 * Test getExample.
 */
@Test
public void testGetExample() {
    createExampleIntent();
    Date start = new Date();
    // gotta be unique
    String exampleText = "Howdy " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    service.createExample(createOptions).execute();
    try {
        GetExampleOptions getOptions = new GetExampleOptions.Builder(workspaceId, exampleIntent, exampleText).includeAudit(true).build();
        Example response = service.getExample(getOptions).execute();
        assertNotNull(response);
        assertNotNull(response.getExampleText());
        assertEquals(response.getExampleText(), exampleText);
        assertNotNull(response.getCreated());
        assertNotNull(response.getUpdated());
        Date now = new Date();
        assertTrue(fuzzyBefore(response.getCreated(), now));
        assertTrue(fuzzyAfter(response.getCreated(), start));
        assertTrue(fuzzyBefore(response.getUpdated(), now));
        assertTrue(fuzzyAfter(response.getUpdated(), start));
    } 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) GetExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.GetExampleOptions) 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) Date(java.util.Date) 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 GetExampleOptions

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

the class Conversation method getExample.

/**
 * Get user input example.
 *
 * Get information about a user input example.
 *
 * @param getExampleOptions the {@link GetExampleOptions} containing the options for the call
 * @return a {@link ServiceCall} with a response type of {@link Example}
 */
public ServiceCall<Example> getExample(GetExampleOptions getExampleOptions) {
    Validator.notNull(getExampleOptions, "getExampleOptions cannot be null");
    String[] pathSegments = { "v1/workspaces", "intents", "examples" };
    String[] pathParameters = { getExampleOptions.workspaceId(), getExampleOptions.intent(), getExampleOptions.text() };
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments, pathParameters));
    builder.query(VERSION, versionDate);
    if (getExampleOptions.includeAudit() != null) {
        builder.query("include_audit", String.valueOf(getExampleOptions.includeAudit()));
    }
    return createServiceCall(builder.build(), ResponseConverterUtils.getObject(Example.class));
}
Also used : RequestBuilder(com.ibm.watson.developer_cloud.http.RequestBuilder) Example(com.ibm.watson.developer_cloud.conversation.v1.model.Example)

Aggregations

NotFoundException (com.ibm.watson.developer_cloud.service.exception.NotFoundException)4 UnauthorizedException (com.ibm.watson.developer_cloud.service.exception.UnauthorizedException)4 Test (org.junit.Test)4 CreateExampleOptions (com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions)2 DeleteExampleOptions (com.ibm.watson.developer_cloud.assistant.v1.model.DeleteExampleOptions)2 GetExampleOptions (com.ibm.watson.developer_cloud.assistant.v1.model.GetExampleOptions)2 CreateExampleOptions (com.ibm.watson.developer_cloud.conversation.v1.model.CreateExampleOptions)2 DeleteExampleOptions (com.ibm.watson.developer_cloud.conversation.v1.model.DeleteExampleOptions)2 Example (com.ibm.watson.developer_cloud.conversation.v1.model.Example)2 GetExampleOptions (com.ibm.watson.developer_cloud.conversation.v1.model.GetExampleOptions)2 Date (java.util.Date)2 CreateExample (com.ibm.watson.developer_cloud.assistant.v1.model.CreateExample)1 Example (com.ibm.watson.developer_cloud.assistant.v1.model.Example)1 CreateExample (com.ibm.watson.developer_cloud.conversation.v1.model.CreateExample)1 RequestBuilder (com.ibm.watson.developer_cloud.http.RequestBuilder)1