Search in sources :

Example 6 with Translation

use of com.ibm.watson.text_to_speech.v1.model.Translation 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 7 with Translation

use of com.ibm.watson.text_to_speech.v1.model.Translation 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)

Example 8 with Translation

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

the class TextToSpeech method getPronunciation.

/**
 * Get pronunciation.
 *
 * <p>Gets the phonetic pronunciation for the specified word. You can request the pronunciation
 * for a specific format. You can also request the pronunciation for a specific voice to see the
 * default translation for the language of that voice or for a specific custom model to see the
 * translation for that model.
 *
 * <p>**See also:** [Querying a word from a
 * language](https://cloud.ibm.com/docs/text-to-speech?topic=text-to-speech-customWords#cuWordsQueryLanguage).
 *
 * <p>**Note:** The Arabic, Chinese, Czech, Dutch (Belgian and Netherlands), Australian English,
 * Korean, and Swedish languages and voices are supported only for IBM Cloud; they are deprecated
 * for IBM Cloud Pak for Data. Also, the `ar-AR_OmarVoice` voice is deprecated; use the
 * `ar-MS_OmarVoice` voice instead.
 *
 * @param getPronunciationOptions the {@link GetPronunciationOptions} containing the options for
 *     the call
 * @return a {@link ServiceCall} with a result of type {@link Pronunciation}
 */
public ServiceCall<Pronunciation> getPronunciation(GetPronunciationOptions getPronunciationOptions) {
    com.ibm.cloud.sdk.core.util.Validator.notNull(getPronunciationOptions, "getPronunciationOptions cannot be null");
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/pronunciation"));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("text_to_speech", "v1", "getPronunciation");
    for (Entry<String, String> header : sdkHeaders.entrySet()) {
        builder.header(header.getKey(), header.getValue());
    }
    builder.header("Accept", "application/json");
    builder.query("text", String.valueOf(getPronunciationOptions.text()));
    if (getPronunciationOptions.voice() != null) {
        builder.query("voice", String.valueOf(getPronunciationOptions.voice()));
    }
    if (getPronunciationOptions.format() != null) {
        builder.query("format", String.valueOf(getPronunciationOptions.format()));
    }
    if (getPronunciationOptions.customizationId() != null) {
        builder.query("customization_id", String.valueOf(getPronunciationOptions.customizationId()));
    }
    ResponseConverter<Pronunciation> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<Pronunciation>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) Pronunciation(com.ibm.watson.text_to_speech.v1.model.Pronunciation)

Example 9 with Translation

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

the class TextToSpeechTest method testListWordsWOptions.

// Test the listWords operation with a valid options model parameter
@Test
public void testListWordsWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"words\": [{\"word\": \"word\", \"translation\": \"translation\", \"part_of_speech\": \"Dosi\"}]}";
    String listWordsPath = "/v1/customizations/testString/words";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the ListWordsOptions model
    ListWordsOptions listWordsOptionsModel = new ListWordsOptions.Builder().customizationId("testString").build();
    // Invoke listWords() with a valid options model and verify the result
    Response<Words> response = textToSpeechService.listWords(listWordsOptionsModel).execute();
    assertNotNull(response);
    Words 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, listWordsPath);
    // 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) Words(com.ibm.watson.text_to_speech.v1.model.Words) ListWordsOptions(com.ibm.watson.text_to_speech.v1.model.ListWordsOptions) Test(org.testng.annotations.Test)

Example 10 with Translation

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

the class TextToSpeechTest method testGetCustomModelWOptions.

// Test the getCustomModel operation with a valid options model parameter
@Test
public void testGetCustomModelWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"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 getCustomModelPath = "/v1/customizations/testString";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the GetCustomModelOptions model
    GetCustomModelOptions getCustomModelOptionsModel = new GetCustomModelOptions.Builder().customizationId("testString").build();
    // Invoke getCustomModel() with a valid options model and verify the result
    Response<CustomModel> response = textToSpeechService.getCustomModel(getCustomModelOptionsModel).execute();
    assertNotNull(response);
    CustomModel 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, getCustomModelPath);
    // 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) GetCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.GetCustomModelOptions) CustomModel(com.ibm.watson.text_to_speech.v1.model.CustomModel) Test(org.testng.annotations.Test)

Aggregations

RecordedRequest (okhttp3.mockwebserver.RecordedRequest)11 MockResponse (okhttp3.mockwebserver.MockResponse)10 Test (org.testng.annotations.Test)10 Translation (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Translation)5 GetWordOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetWordOptions)4 Word (com.ibm.watson.developer_cloud.text_to_speech.v1.model.Word)4 AddWordsOptions (com.ibm.watson.developer_cloud.text_to_speech.v1.model.AddWordsOptions)3 CustomModel (com.ibm.watson.text_to_speech.v1.model.CustomModel)3 Translation (com.ibm.watson.text_to_speech.v1.model.Translation)3 Word (com.ibm.watson.text_to_speech.v1.model.Word)3 File (java.io.File)3 InputStream (java.io.InputStream)3 Test (org.junit.Test)3 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)2 Authenticator (com.ibm.cloud.sdk.core.security.Authenticator)2 IamAuthenticator (com.ibm.cloud.sdk.core.security.IamAuthenticator)2 WatsonServiceTest (com.ibm.watson.developer_cloud.WatsonServiceTest)2 AddWordOptions (com.ibm.watson.text_to_speech.v1.model.AddWordOptions)2 AddWordsOptions (com.ibm.watson.text_to_speech.v1.model.AddWordsOptions)2 CreateCustomModelOptions (com.ibm.watson.text_to_speech.v1.model.CreateCustomModelOptions)2