Search in sources :

Example 21 with Words

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

the class TextToSpeechTest method testGetVoiceWOptions.

// Test the getVoice operation with a valid options model parameter
@Test
public void testGetVoiceWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"url\": \"url\", \"gender\": \"gender\", \"name\": \"name\", \"language\": \"language\", \"description\": \"description\", \"customizable\": true, \"supported_features\": {\"custom_pronunciation\": false, \"voice_transformation\": false}, \"customization\": {\"customization_id\": \"customizationId\", \"name\": \"name\", \"language\": \"language\", \"owner\": \"owner\", \"created\": \"created\", \"last_modified\": \"lastModified\", \"description\": \"description\", \"words\": [{\"word\": \"word\", \"translation\": \"translation\", \"part_of_speech\": \"Dosi\"}], \"prompts\": [{\"prompt\": \"prompt\", \"prompt_id\": \"promptId\", \"status\": \"status\", \"error\": \"error\", \"speaker_id\": \"speakerId\"}]}}";
    String getVoicePath = "/v1/voices/ar-AR_OmarVoice";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the GetVoiceOptions model
    GetVoiceOptions getVoiceOptionsModel = new GetVoiceOptions.Builder().voice("ar-AR_OmarVoice").customizationId("testString").build();
    // Invoke getVoice() with a valid options model and verify the result
    Response<Voice> response = textToSpeechService.getVoice(getVoiceOptionsModel).execute();
    assertNotNull(response);
    Voice responseObj = response.getResult();
    assertNotNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "GET");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, getVoicePath);
    // Verify query params
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNotNull(query);
    assertEquals(query.get("customization_id"), "testString");
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) Voice(com.ibm.watson.text_to_speech.v1.model.Voice) GetVoiceOptions(com.ibm.watson.text_to_speech.v1.model.GetVoiceOptions) Test(org.testng.annotations.Test)

Example 22 with Words

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

the class TextToSpeechTest method testAddWordWOptions.

// Test the addWord operation with a valid options model parameter
@Test
public void testAddWordWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "";
    String addWordPath = "/v1/customizations/testString/words/testString";
    server.enqueue(new MockResponse().setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the AddWordOptions model
    AddWordOptions addWordOptionsModel = new AddWordOptions.Builder().customizationId("testString").word("testString").translation("testString").partOfSpeech("Dosi").build();
    // Invoke addWord() with a valid options model and verify the result
    Response<Void> response = textToSpeechService.addWord(addWordOptionsModel).execute();
    assertNotNull(response);
    Void responseObj = response.getResult();
    assertNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "PUT");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, addWordPath);
    // Verify that there is no query string
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNull(query);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) AddWordOptions(com.ibm.watson.text_to_speech.v1.model.AddWordOptions) Test(org.testng.annotations.Test)

Example 23 with Words

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

the class TextToSpeechTest method testAddWordsWOptions.

// Test the addWords operation with a valid options model parameter
@Test
public void testAddWordsWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "";
    String addWordsPath = "/v1/customizations/testString/words";
    server.enqueue(new MockResponse().setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the Word model
    Word wordModel = new Word.Builder().word("testString").translation("testString").partOfSpeech("Dosi").build();
    // Construct an instance of the AddWordsOptions model
    AddWordsOptions addWordsOptionsModel = new AddWordsOptions.Builder().customizationId("testString").words(new java.util.ArrayList<Word>(java.util.Arrays.asList(wordModel))).build();
    // Invoke addWords() with a valid options model and verify the result
    Response<Void> response = textToSpeechService.addWords(addWordsOptionsModel).execute();
    assertNotNull(response);
    Void responseObj = response.getResult();
    assertNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "POST");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, addWordsPath);
    // Verify that there is no query string
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNull(query);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) Word(com.ibm.watson.text_to_speech.v1.model.Word) AddWordsOptions(com.ibm.watson.text_to_speech.v1.model.AddWordsOptions) Test(org.testng.annotations.Test)

Example 24 with Words

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

the class TextToSpeechTest method testListCustomModelsWOptions.

// Test the listCustomModels operation with a valid options model parameter
@Test
public void testListCustomModelsWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"customizations\": [{\"customization_id\": \"customizationId\", \"name\": \"name\", \"language\": \"language\", \"owner\": \"owner\", \"created\": \"created\", \"last_modified\": \"lastModified\", \"description\": \"description\", \"words\": [{\"word\": \"word\", \"translation\": \"translation\", \"part_of_speech\": \"Dosi\"}], \"prompts\": [{\"prompt\": \"prompt\", \"prompt_id\": \"promptId\", \"status\": \"status\", \"error\": \"error\", \"speaker_id\": \"speakerId\"}]}]}";
    String listCustomModelsPath = "/v1/customizations";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the ListCustomModelsOptions model
    ListCustomModelsOptions listCustomModelsOptionsModel = new ListCustomModelsOptions.Builder().language("ar-MS").build();
    // Invoke listCustomModels() with a valid options model and verify the result
    Response<CustomModels> response = textToSpeechService.listCustomModels(listCustomModelsOptionsModel).execute();
    assertNotNull(response);
    CustomModels responseObj = response.getResult();
    assertNotNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "GET");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, listCustomModelsPath);
    // Verify query params
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNotNull(query);
    assertEquals(query.get("language"), "ar-MS");
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) SpeakerCustomModels(com.ibm.watson.text_to_speech.v1.model.SpeakerCustomModels) CustomModels(com.ibm.watson.text_to_speech.v1.model.CustomModels) ListCustomModelsOptions(com.ibm.watson.text_to_speech.v1.model.ListCustomModelsOptions) Test(org.testng.annotations.Test)

Example 25 with Words

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

the class TextToSpeech method getWord.

/**
 * Get a custom word.
 *
 * <p>Gets the translation for a single word from the specified custom model. The output shows the
 * translation as it is defined in the model. You must use credentials for the instance of the
 * service that owns a model to list its words.
 *
 * <p>**See also:** [Querying a single word from a custom
 * model](https://cloud.ibm.com/docs/text-to-speech?topic=text-to-speech-customWords#cuWordQueryModel).
 *
 * @param getWordOptions the {@link GetWordOptions} containing the options for the call
 * @return a {@link ServiceCall} with a result of type {@link Translation}
 */
public ServiceCall<Translation> getWord(GetWordOptions getWordOptions) {
    com.ibm.cloud.sdk.core.util.Validator.notNull(getWordOptions, "getWordOptions cannot be null");
    Map<String, String> pathParamsMap = new HashMap<String, String>();
    pathParamsMap.put("customization_id", getWordOptions.customizationId());
    pathParamsMap.put("word", getWordOptions.word());
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/customizations/{customization_id}/words/{word}", pathParamsMap));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("text_to_speech", "v1", "getWord");
    for (Entry<String, String> header : sdkHeaders.entrySet()) {
        builder.header(header.getKey(), header.getValue());
    }
    builder.header("Accept", "application/json");
    ResponseConverter<Translation> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<Translation>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : Translation(com.ibm.watson.text_to_speech.v1.model.Translation) RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) HashMap(java.util.HashMap)

Aggregations

Test (org.junit.Test)22 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)17 MockResponse (okhttp3.mockwebserver.MockResponse)16 Words (com.ibm.watson.developer_cloud.speech_to_text.v1.model.Words)12 Test (org.testng.annotations.Test)12 ListWordsOptions (com.ibm.watson.developer_cloud.speech_to_text.v1.model.ListWordsOptions)11 Ignore (org.junit.Ignore)11 WatsonServiceTest (com.ibm.watson.developer_cloud.WatsonServiceTest)10 Words (com.ibm.watson.speech_to_text.v1.model.Words)9 ListWordsOptions (com.ibm.watson.speech_to_text.v1.model.ListWordsOptions)8 WatsonServiceTest (com.ibm.watson.common.WatsonServiceTest)7 Words (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Words)7 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)6 ListWordsOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.ListWordsOptions)6 Word (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Word)6 File (java.io.File)6 JsonObject (com.google.gson.JsonObject)5 JsonParser (com.google.gson.JsonParser)5 WatsonServiceUnitTest (com.ibm.watson.developer_cloud.WatsonServiceUnitTest)4 CustomModel (com.ibm.watson.text_to_speech.v1.model.CustomModel)4