|
@@ -5,6 +5,7 @@ import (
|
|
|
"testing"
|
|
|
|
|
|
"git.ali33.ru/fcg-xvii/go-tools/text/config"
|
|
|
+ _ "git.ali33.ru/fcg-xvii/go-tools/text/config/ini"
|
|
|
)
|
|
|
|
|
|
var (
|
|
@@ -12,10 +13,11 @@ var (
|
|
|
)
|
|
|
|
|
|
func init() {
|
|
|
- if f, err := os.Open("test_data/ya.config"); err == nil {
|
|
|
- config.SplitToVals(f, "::", &yaFolderID, &yaAPIKey)
|
|
|
- f.Close()
|
|
|
+ if conf, err := config.FromFile("ini", "test_data/ya.config"); err == nil {
|
|
|
+ yaFolderID = conf.ValueDefault("folder_id", yaFolderID).(string)
|
|
|
+ yaAPIKey = conf.ValueDefault("api_key", yaAPIKey).(string)
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
func TestTextToSpeech(t *testing.T) {
|
|
@@ -26,6 +28,8 @@ func TestTextToSpeech(t *testing.T) {
|
|
|
|
|
|
// init request config
|
|
|
config := TTSDefaultConfigText(yaFolderID, yaAPIKey, "Привет, это тест синтеза речи с помощью сервиса Яндекса")
|
|
|
+ config.Emotion = "good"
|
|
|
+ config.Voice = VoiceJane
|
|
|
|
|
|
r, err := TextToSpeech(config)
|
|
|
if err != nil {
|