use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsIT method testGetVoiceCustomization.
/**
* Test get voice with customization.
*/
@Test
public void testGetVoiceCustomization() {
model = createVoiceModel();
GetVoiceModelOptions getVoiceModelOptions = new GetVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).build();
final VoiceModel model2 = service.getVoiceModel(getVoiceModelOptions).execute();
GetVoiceOptions getVoiceOptions = new GetVoiceOptions.Builder().customizationId(model.getCustomizationId()).voice(GetVoiceOptions.Voice.EN_US_ALLISONVOICE).build();
final Voice voice = service.getVoice(getVoiceOptions).execute();
assertNotNull(model);
assertNotNull(model2);
assertNotNull(voice);
assertEquals(model2.getCustomizationId(), voice.getCustomization().getCustomizationId());
assertEquals(model2.getName(), voice.getCustomization().getName());
assertEquals(model2.getDescription(), voice.getCustomization().getDescription());
assertEquals(model2.getLanguage(), voice.getCustomization().getLanguage());
assertEquals(model2.getOwner(), voice.getCustomization().getOwner());
assertEquals(model2.getCreated(), voice.getCustomization().getCreated());
assertEquals(model2.getLastModified(), voice.getCustomization().getLastModified());
}
use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsIT method testUpdateVoiceModel.
/**
* Test update voice model with new name and ignored language change.
*/
@Test
public void testUpdateVoiceModel() {
final String newName = "new test";
final String newLanguage = "pt-BR";
model = createVoiceModel();
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).build();
model = service.getVoiceModel(getOptions).execute();
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).name(newName).build();
service.updateVoiceModel(updateOptions).execute();
final VoiceModel model2 = service.getVoiceModel(getOptions).execute();
// comparison at service
assertModelsEqual(model, model2);
// value at service
assertEquals(model2.getLanguage(), MODEL_LANGUAGE);
}
use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsIT method testDeleteVoiceModel.
/**
* Test delete voice model.
*/
@Test
public void testDeleteVoiceModel() {
model = createVoiceModel();
DeleteVoiceModelOptions deleteOptions = new DeleteVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).build();
service.deleteVoiceModel(deleteOptions).execute();
try {
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).build();
service.getVoiceModel(getOptions).execute();
fail("deleting customization failed");
} catch (UnauthorizedException e) {
// success!
}
}
use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsIT method testUpdateVoiceModelWords.
/**
* Test update voice model with new name and new custom translations.
*/
@Test
public void testUpdateVoiceModelWords() {
final String newName = "new test";
model = createVoiceModel();
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).build();
model = service.getVoiceModel(getOptions).execute();
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(model.getCustomizationId()).name(newName).words(instantiateWords()).build();
service.updateVoiceModel(updateOptions).execute();
final VoiceModel model2 = service.getVoiceModel(getOptions).execute();
assertModelsEqual(model, model2);
assertNotEquals(model.getWords(), model2.getWords());
}
use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.GetVoiceModelOptions in project java-sdk by watson-developer-cloud.
the class CustomizationsTest method testUpdateVoiceModelWords.
/**
* Test update voice model with new words.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void testUpdateVoiceModelWords() throws InterruptedException {
// Create the custom voice model.
server.enqueue(jsonResponse(voiceModelWords));
CreateVoiceModelOptions createOptions = new CreateVoiceModelOptions.Builder().name(MODEL_NAME).language(MODEL_LANGUAGE).description(MODEL_DESCRIPTION).build();
final VoiceModel result = service.createVoiceModel(createOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals(CUSTOMIZATION_ID, result.getCustomizationId());
// Update the custom voice model with new words.
server.enqueue(new MockResponse().setResponseCode(201));
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(CUSTOMIZATION_ID).name(MODEL_NAME).description(MODEL_DESCRIPTION).words(instantiateWords()).build();
service.updateVoiceModel(updateOptions).execute();
final RecordedRequest updateRequest = server.takeRequest();
assertEquals(String.format(VOICE_MODEL_PATH, CUSTOMIZATION_ID), updateRequest.getPath());
assertEquals("POST", request.getMethod());
// Compare expected with actual results.
server.enqueue(jsonResponse(voiceModelWords));
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder().customizationId(CUSTOMIZATION_ID).build();
final VoiceModel getResult = service.getVoiceModel(getOptions).execute();
final RecordedRequest getRequest = server.takeRequest();
assertEquals(String.format(VOICE_MODEL_PATH, CUSTOMIZATION_ID), getRequest.getPath());
assertEquals("GET", getRequest.getMethod());
assertEquals(voiceModelWords, getResult);
assertNotNull(voiceModelWords.getWords());
assertEquals(voiceModelWords.getWords(), getResult.getWords());
}
Aggregations