use of com.ibm.watson.developer_cloud.speech_to_text.v1.model.Words in project java-sdk by watson-developer-cloud.
the class SpeechToTextTest method testListWords.
/**
* Test list words.
*
* @throws InterruptedException the interrupted exception
* @throws FileNotFoundException the file not found exception
*/
@Test
public void testListWords() throws InterruptedException, FileNotFoundException {
String id = "foo";
String wordsAsStr = getStringFromInputStream(new FileInputStream("src/test/resources/speech_to_text/words.json"));
JsonObject words = new JsonParser().parse(wordsAsStr).getAsJsonObject();
server.enqueue(new MockResponse().addHeader(CONTENT_TYPE, HttpMediaType.APPLICATION_JSON).setBody(wordsAsStr));
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(id).build();
Words result = service.listWords(listOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals("GET", request.getMethod());
assertEquals(String.format(PATH_WORDS, id), request.getPath());
assertEquals(words.get("words"), GSON.toJsonTree(result.getWords()));
}
use of com.ibm.watson.developer_cloud.speech_to_text.v1.model.Words in project java-sdk by watson-developer-cloud.
the class SpeechToTextTest method testListWordsSort.
/**
* Test list words with sort order alphabetical.
*
* @throws InterruptedException the interrupted exception
* @throws FileNotFoundException the file not found exception
*/
@Test
public void testListWordsSort() throws InterruptedException, FileNotFoundException {
String id = "foo";
String wordsAsStr = getStringFromInputStream(new FileInputStream("src/test/resources/speech_to_text/words.json"));
JsonObject words = new JsonParser().parse(wordsAsStr).getAsJsonObject();
server.enqueue(new MockResponse().addHeader(CONTENT_TYPE, HttpMediaType.APPLICATION_JSON).setBody(wordsAsStr));
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(id).sort(ListWordsOptions.Sort.ALPHABETICAL).build();
Words result = service.listWords(listOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals("GET", request.getMethod());
assertEquals(String.format(PATH_WORDS, id) + "?sort=alphabetical", request.getPath());
assertEquals(words.get("words"), GSON.toJsonTree(result.getWords()));
}
use of com.ibm.watson.developer_cloud.speech_to_text.v1.model.Words in project java-sdk by watson-developer-cloud.
the class SpeechToTextTest method testListWordsTypeSort.
/**
* Test list words with word type all and sort order alphabetical.
*
* @throws InterruptedException the interrupted exception
* @throws FileNotFoundException the file not found exception
*/
@Test
public void testListWordsTypeSort() throws InterruptedException, FileNotFoundException {
String id = "foo";
String wordsAsStr = getStringFromInputStream(new FileInputStream("src/test/resources/speech_to_text/words.json"));
JsonObject words = new JsonParser().parse(wordsAsStr).getAsJsonObject();
server.enqueue(new MockResponse().addHeader(CONTENT_TYPE, HttpMediaType.APPLICATION_JSON).setBody(wordsAsStr));
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(id).sort(ListWordsOptions.Sort.ALPHABETICAL).wordType(ListWordsOptions.WordType.ALL).build();
Words result = service.listWords(listOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals("GET", request.getMethod());
assertEquals(String.format(PATH_WORDS, id) + "?word_type=all&sort=alphabetical", request.getPath());
assertEquals(words.get("words"), GSON.toJsonTree(result.getWords()));
}
use of com.ibm.watson.developer_cloud.speech_to_text.v1.model.Words in project java-sdk by watson-developer-cloud.
the class CustomizationsIT method testAddWords.
/**
* Test add words and list words.
*/
@Test
public void testAddWords() {
model = createVoiceModel();
final List<Word> expected = instantiateWords();
AddWordsOptions addOptions = new AddWordsOptions.Builder().customizationId(model.getCustomizationId()).words(expected).build();
service.addWords(addOptions).execute();
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(model.getCustomizationId()).build();
final Words words = service.listWords(listOptions).execute();
assertEquals(expected.size(), words.getWords().size());
}
use of com.ibm.watson.developer_cloud.speech_to_text.v1.model.Words in project java-sdk by watson-developer-cloud.
the class CustomizationsTest method testListWords.
/**
* Test list words.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void testListWords() throws InterruptedException {
final List<Word> expected = instantiateWords();
server.enqueue(jsonResponse(ImmutableMap.of(WORDS, expected)));
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(CUSTOMIZATION_ID).build();
final Words result = service.listWords(listOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals(String.format(WORDS_PATH, CUSTOMIZATION_ID), request.getPath());
assertEquals("GET", request.getMethod());
assertEquals(expected, result.getWords());
}
Aggregations