use of com.ibm.watson.developer_cloud.assistant.v1.model.Intent in project java-sdk by watson-developer-cloud.
the class AssistantServiceIT method createExampleIntent.
public void createExampleIntent() {
exampleIntent = "Hello";
try {
CreateIntentOptions createOptions = new CreateIntentOptions.Builder(workspaceId, exampleIntent).description("Example Intent").build();
service.createIntent(createOptions).execute();
} catch (Exception ex) {
// Exception is okay if is for Unique Violation
assertTrue(ex.getLocalizedMessage().startsWith("Unique Violation"));
}
}
use of com.ibm.watson.developer_cloud.assistant.v1.model.Intent in project java-sdk by watson-developer-cloud.
the class AssistantServiceIT method testCreateIntent.
/**
* Test createIntent.
*/
@Test
public void testCreateIntent() {
// gotta be unique
String intentName = "Hello" + UUID.randomUUID().toString();
String intentDescription = "Description of " + intentName;
String intentExample = "Example of " + intentName;
List<CreateExample> intentExamples = new ArrayList<CreateExample>();
intentExamples.add(new CreateExample.Builder().text(intentExample).build());
Date start = new Date();
CreateIntentOptions createOptions = new CreateIntentOptions.Builder(workspaceId, intentName).description(intentDescription).examples(intentExamples).build();
Intent response = service.createIntent(createOptions).execute();
try {
assertNotNull(response);
assertNotNull(response.getIntentName());
assertEquals(response.getIntentName(), intentName);
assertNotNull(response.getDescription());
assertEquals(response.getDescription(), intentDescription);
Date now = new Date();
ListExamplesOptions listOptions = new ListExamplesOptions.Builder(workspaceId, intentName).includeAudit(true).build();
ExampleCollection ecResponse = service.listExamples(listOptions).execute();
assertNotNull(ecResponse);
assertNotNull(ecResponse.getExamples());
List<Example> examples = ecResponse.getExamples();
assertTrue(examples.size() == 1);
assertEquals(examples.get(0).getExampleText(), intentExample);
assertTrue(fuzzyBefore(examples.get(0).getCreated(), now));
assertTrue(fuzzyAfter(examples.get(0).getCreated(), start));
assertTrue(fuzzyBefore(examples.get(0).getUpdated(), now));
assertTrue(fuzzyAfter(examples.get(0).getUpdated(), start));
} catch (Exception ex) {
fail(ex.getMessage());
} finally {
// Clean up
DeleteIntentOptions deleteOptions = new DeleteIntentOptions.Builder(workspaceId, intentName).build();
service.deleteIntent(deleteOptions).execute();
}
}
use of com.ibm.watson.developer_cloud.assistant.v1.model.Intent in project java-sdk by watson-developer-cloud.
the class AssistantServiceIT method testListIntentsWithPaging.
/**
* Test listIntents with paging.
*/
@Test
public void testListIntentsWithPaging() {
// gotta be unique
String intentName1 = "First" + UUID.randomUUID().toString();
// gotta be unique
String intentName2 = "Second" + UUID.randomUUID().toString();
CreateIntentOptions createOptions = new CreateIntentOptions.Builder(workspaceId, intentName1).build();
service.createIntent(createOptions).execute();
service.createIntent(createOptions.newBuilder().intent(intentName2).build()).execute();
try {
ListIntentsOptions listOptions = new ListIntentsOptions.Builder().workspaceId(workspaceId).export(true).pageLimit(1L).sort("modified").includeAudit(true).build();
IntentCollection response = service.listIntents(listOptions).execute();
assertNotNull(response);
assertNotNull(response.getIntents());
assertNotNull(response.getPagination());
assertNotNull(response.getPagination().getRefreshUrl());
assertNotNull(response.getPagination().getNextUrl());
assertNotNull(response.getPagination().getCursor());
boolean found1 = false, found2 = false;
while (true) {
assertNotNull(response.getIntents());
assertTrue(response.getIntents().size() == 1);
found1 |= response.getIntents().get(0).getIntentName().equals(intentName1);
found2 |= response.getIntents().get(0).getIntentName().equals(intentName2);
// verify sort
assertTrue(found1 || !found2);
if (response.getPagination().getCursor() == null) {
break;
}
String cursor = response.getPagination().getCursor();
response = service.listIntents(listOptions.newBuilder().cursor(cursor).build()).execute();
}
assertTrue(found1 && found2);
} catch (Exception ex) {
fail(ex.getMessage());
} finally {
// Clean up
DeleteIntentOptions deleteOptions = new DeleteIntentOptions.Builder(workspaceId, intentName1).build();
service.deleteIntent(deleteOptions).execute();
service.deleteIntent(deleteOptions.newBuilder().intent(intentName2).build()).execute();
}
}
use of com.ibm.watson.developer_cloud.assistant.v1.model.Intent in project java-sdk by watson-developer-cloud.
the class AssistantServiceIT method testListIntents.
/**
* Test listIntents.
*/
@Test
public void testListIntents() {
// gotta be unique
String intentName = "Hello" + UUID.randomUUID().toString();
try {
ListIntentsOptions listOptions = new ListIntentsOptions.Builder(workspaceId).includeAudit(true).build();
IntentCollection response = service.listIntents(listOptions).execute();
assertNotNull(response);
assertNotNull(response.getIntents());
assertNotNull(response.getPagination());
assertNotNull(response.getPagination().getRefreshUrl());
// nextUrl may be null
// Now add an intent and make sure we get it back
String intentDescription = "Description of " + intentName;
String intentExample = "Example of " + intentName;
List<CreateExample> intentExamples = new ArrayList<CreateExample>();
intentExamples.add(new CreateExample.Builder().text(intentExample).build());
Date start = new Date();
CreateIntentOptions createOptions = new CreateIntentOptions.Builder(workspaceId, intentName).description(intentDescription).examples(intentExamples).build();
service.createIntent(createOptions).execute();
long count = response.getIntents().size();
ListIntentsOptions listOptions2 = new ListIntentsOptions.Builder(workspaceId).export(true).pageLimit(count + 1).includeAudit(true).build();
IntentCollection response2 = service.listIntents(listOptions2).execute();
assertNotNull(response2);
assertNotNull(response2.getIntents());
List<IntentExport> intents = response2.getIntents();
assertTrue(intents.size() > count);
IntentExport ieResponse = null;
for (IntentExport resp : intents) {
if (resp.getIntentName().equals(intentName)) {
ieResponse = resp;
break;
}
}
assertNotNull(ieResponse);
assertNotNull(ieResponse.getDescription());
assertEquals(ieResponse.getDescription(), intentDescription);
assertNotNull(ieResponse.getExamples());
assertTrue(ieResponse.getExamples().size() == 1);
assertEquals(ieResponse.getExamples().get(0).getExampleText(), intentExample);
Date now = new Date();
assertTrue(fuzzyBefore(ieResponse.getCreated(), now));
assertTrue(fuzzyAfter(ieResponse.getCreated(), start));
assertTrue(fuzzyBefore(ieResponse.getUpdated(), now));
assertTrue(fuzzyAfter(ieResponse.getUpdated(), start));
} catch (Exception ex) {
fail(ex.getMessage());
} finally {
// Clean up
DeleteIntentOptions deleteOptions = new DeleteIntentOptions.Builder(workspaceId, intentName).build();
service.deleteIntent(deleteOptions).execute();
}
}
use of com.ibm.watson.developer_cloud.assistant.v1.model.Intent in project java-sdk by watson-developer-cloud.
the class AssistantTest method testCreateIntentOptionsBuilder.
/**
* Test CreateIntentOptions builder.
*/
@Test
public void testCreateIntentOptionsBuilder() {
String intent = "anIntent";
CreateExample intentExample0 = new CreateExample.Builder().text("intentExample0").build();
CreateExample intentExample1 = new CreateExample.Builder().text("intentExample1").build();
CreateIntentOptions createOptions = new CreateIntentOptions.Builder().workspaceId(WORKSPACE_ID).intent(intent).addExample(intentExample0).addExample(intentExample1).build();
assertEquals(createOptions.workspaceId(), WORKSPACE_ID);
assertEquals(createOptions.intent(), intent);
assertEquals(createOptions.examples().size(), 2);
assertEquals(createOptions.examples().get(0), intentExample0);
assertEquals(createOptions.examples().get(1), intentExample1);
CreateIntentOptions.Builder builder = createOptions.newBuilder();
CreateExample intentExample2 = new CreateExample.Builder().text("intentExample2").build();
builder.examples(Arrays.asList(intentExample2));
CreateIntentOptions options2 = builder.build();
assertEquals(options2.workspaceId(), WORKSPACE_ID);
assertEquals(options2.intent(), intent);
assertEquals(options2.examples().size(), 1);
assertEquals(options2.examples().get(0), intentExample2);
}
Aggregations