Spaces:
Build error
Build error
File size: 12,383 Bytes
f1f433f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
from os import remove
from pathlib import Path
from shutil import copyfile
from tempfile import TemporaryDirectory
from unittest import TestCase
from voicevox_engine.preset import Preset, PresetError, PresetManager
class TestPresetManager(TestCase):
def setUp(self):
self.tmp_dir = TemporaryDirectory()
self.tmp_dir_path = Path(self.tmp_dir.name)
def tearDown(self):
self.tmp_dir.cleanup()
def test_validation(self):
preset_manager = PresetManager(preset_path=Path("test/presets-test-1.yaml"))
presets = preset_manager.load_presets()
self.assertFalse(presets is None)
def test_validation_same(self):
preset_manager = PresetManager(preset_path=Path("test/presets-test-1.yaml"))
presets = preset_manager.load_presets()
presets2 = preset_manager.load_presets()
self.assertFalse(presets is None)
self.assertEqual(presets, presets2)
def test_validation_2(self):
preset_manager = PresetManager(preset_path=Path("test/presets-test-2.yaml"))
with self.assertRaises(PresetError, msg="プリセットの設定ファイルにミスがあります"):
preset_manager.load_presets()
def test_preset_id(self):
preset_manager = PresetManager(preset_path=Path("test/presets-test-3.yaml"))
with self.assertRaises(PresetError, msg="プリセットのidに重複があります"):
preset_manager.load_presets()
def test_empty_file(self):
preset_manager = PresetManager(preset_path=Path("test/presets-test-4.yaml"))
with self.assertRaises(PresetError, msg="プリセットの設定ファイルが空の内容です"):
preset_manager.load_presets()
def test_not_exist_file(self):
preset_manager = PresetManager(preset_path=Path("test/presets-dummy.yaml"))
with self.assertRaises(PresetError, msg="プリセットの設定ファイルが見つかりません"):
preset_manager.load_presets()
def test_add_preset(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
preset = Preset(
**{
"id": 10,
"name": "test10",
"speaker_uuid": "7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff",
"style_id": 2,
"speedScale": 1,
"pitchScale": 1,
"intonationScale": 0.5,
"volumeScale": 1,
"prePhonemeLength": 0.1,
"postPhonemeLength": 0.1,
}
)
id = preset_manager.add_preset(preset)
self.assertEqual(id, 10)
self.assertEqual(len(preset_manager.presets), 3)
for _preset in preset_manager.presets:
if _preset.id == id:
self.assertEqual(_preset, preset)
remove(temp_path)
def test_add_preset_load_failure(self):
preset_manager = PresetManager(preset_path=Path("test/presets-test-2.yaml"))
with self.assertRaises(PresetError, msg="プリセットの設定ファイルにミスがあります"):
preset_manager.add_preset(
Preset(
**{
"id": 1,
"name": "",
"speaker_uuid": "",
"style_id": 0,
"speedScale": 0,
"pitchScale": 0,
"intonationScale": 0,
"volumeScale": 0,
"prePhonemeLength": 0,
"postPhonemeLength": 0,
}
)
)
def test_add_preset_conflict_id(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
preset = Preset(
**{
"id": 2,
"name": "test3",
"speaker_uuid": "7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff",
"style_id": 2,
"speedScale": 1,
"pitchScale": 1,
"intonationScale": 0.5,
"volumeScale": 1,
"prePhonemeLength": 0.1,
"postPhonemeLength": 0.1,
}
)
id = preset_manager.add_preset(preset)
self.assertEqual(id, 3)
self.assertEqual(len(preset_manager.presets), 3)
for _preset in preset_manager.presets:
if _preset.id == id:
self.assertEqual(_preset, preset)
remove(temp_path)
def test_add_preset_conflict_id2(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
preset = Preset(
**{
"id": -1,
"name": "test3",
"speaker_uuid": "7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff",
"style_id": 2,
"speedScale": 1,
"pitchScale": 1,
"intonationScale": 0.5,
"volumeScale": 1,
"prePhonemeLength": 0.1,
"postPhonemeLength": 0.1,
}
)
id = preset_manager.add_preset(preset)
self.assertEqual(id, 3)
self.assertEqual(len(preset_manager.presets), 3)
for _preset in preset_manager.presets:
if _preset.id == id:
self.assertEqual(_preset, preset)
remove(temp_path)
def test_add_preset_write_failure(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
preset = Preset(
**{
"id": 10,
"name": "test10",
"speaker_uuid": "7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff",
"style_id": 2,
"speedScale": 1,
"pitchScale": 1,
"intonationScale": 0.5,
"volumeScale": 1,
"prePhonemeLength": 0.1,
"postPhonemeLength": 0.1,
}
)
preset_manager.load_presets()
preset_manager.load_presets = lambda: []
preset_manager.preset_path = ""
with self.assertRaises(PresetError, msg="プリセットの設定ファイルに書き込み失敗しました"):
preset_manager.add_preset(preset)
self.assertEqual(len(preset_manager.presets), 2)
remove(temp_path)
def test_update_preset(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
preset = Preset(
**{
"id": 1,
"name": "test1 new",
"speaker_uuid": "7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff",
"style_id": 2,
"speedScale": 1,
"pitchScale": 1,
"intonationScale": 0.5,
"volumeScale": 1,
"prePhonemeLength": 0.1,
"postPhonemeLength": 0.1,
}
)
id = preset_manager.update_preset(preset)
self.assertEqual(id, 1)
self.assertEqual(len(preset_manager.presets), 2)
for _preset in preset_manager.presets:
if _preset.id == id:
self.assertEqual(_preset, preset)
remove(temp_path)
def test_update_preset_load_failure(self):
preset_manager = PresetManager(preset_path=Path("test/presets-test-2.yaml"))
with self.assertRaises(PresetError, msg="プリセットの設定ファイルにミスがあります"):
preset_manager.update_preset(
Preset(
**{
"id": 1,
"name": "",
"speaker_uuid": "",
"style_id": 0,
"speedScale": 0,
"pitchScale": 0,
"intonationScale": 0,
"volumeScale": 0,
"prePhonemeLength": 0,
"postPhonemeLength": 0,
}
)
)
def test_update_preset_not_found(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
preset = Preset(
**{
"id": 10,
"name": "test1 new",
"speaker_uuid": "7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff",
"style_id": 2,
"speedScale": 1,
"pitchScale": 1,
"intonationScale": 0.5,
"volumeScale": 1,
"prePhonemeLength": 0.1,
"postPhonemeLength": 0.1,
}
)
with self.assertRaises(PresetError, msg="更新先のプリセットが存在しません"):
preset_manager.update_preset(preset)
self.assertEqual(len(preset_manager.presets), 2)
remove(temp_path)
def test_update_preset_write_failure(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
preset = Preset(
**{
"id": 1,
"name": "test1 new",
"speaker_uuid": "7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff",
"style_id": 2,
"speedScale": 1,
"pitchScale": 1,
"intonationScale": 0.5,
"volumeScale": 1,
"prePhonemeLength": 0.1,
"postPhonemeLength": 0.1,
}
)
preset_manager.load_presets()
preset_manager.load_presets = lambda: []
preset_manager.preset_path = ""
with self.assertRaises(PresetError, msg="プリセットの設定ファイルに書き込み失敗しました"):
preset_manager.update_preset(preset)
self.assertEqual(len(preset_manager.presets), 2)
self.assertEqual(preset_manager.presets[0].name, "test")
remove(temp_path)
def test_delete_preset(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
id = preset_manager.delete_preset(1)
self.assertEqual(id, 1)
self.assertEqual(len(preset_manager.presets), 1)
remove(temp_path)
def test_delete_preset_load_failure(self):
preset_manager = PresetManager(preset_path=Path("test/presets-test-2.yaml"))
with self.assertRaises(PresetError, msg="プリセットの設定ファイルにミスがあります"):
preset_manager.delete_preset(10)
def test_delete_preset_not_found(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
with self.assertRaises(PresetError, msg="削除対象のプリセットが存在しません"):
preset_manager.delete_preset(10)
self.assertEqual(len(preset_manager.presets), 2)
remove(temp_path)
def test_delete_preset_write_failure(self):
temp_path = self.tmp_dir_path / "presets-test-temp.yaml"
copyfile(Path("test/presets-test-1.yaml"), temp_path)
preset_manager = PresetManager(preset_path=temp_path)
preset_manager.load_presets()
preset_manager.load_presets = lambda: []
preset_manager.preset_path = ""
with self.assertRaises(PresetError, msg="プリセットの設定ファイルに書き込み失敗しました"):
preset_manager.delete_preset(1)
self.assertEqual(len(preset_manager.presets), 2)
remove(temp_path)
|