File size: 12,376 Bytes
edc06cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
from os import remove
from pathlib import Path
from shutil import copyfile

import pytest

from voicevox_engine.preset.model import Preset
from voicevox_engine.preset.preset_manager import (
    PresetInputError,
    PresetInternalError,
    PresetManager,
)

presets_test_1_yaml_path = Path("test/unit/preset/presets-test-1.yaml")
presets_test_2_yaml_path = Path("test/unit/preset/presets-test-2.yaml")
presets_test_3_yaml_path = Path("test/unit/preset/presets-test-3.yaml")
presets_test_4_yaml_path = Path("test/unit/preset/presets-test-4.yaml")


def test_validation() -> None:
    preset_manager = PresetManager(preset_path=presets_test_1_yaml_path)
    presets = preset_manager.load_presets()
    assert presets is not None


def test_validation_same() -> None:
    preset_manager = PresetManager(preset_path=presets_test_1_yaml_path)
    presets = preset_manager.load_presets()
    presets2 = preset_manager.load_presets()
    assert presets is not None
    assert presets == presets2


def test_validation_2() -> None:
    preset_manager = PresetManager(preset_path=presets_test_2_yaml_path)
    true_msg = "プリセットの設定ファイルにミスがあります"
    with pytest.raises(PresetInternalError, match=true_msg):
        preset_manager.load_presets()


def test_preset_id() -> None:
    preset_manager = PresetManager(preset_path=presets_test_3_yaml_path)
    true_msg = "プリセットのidに重複があります"
    with pytest.raises(PresetInternalError, match=true_msg):
        preset_manager.load_presets()


def test_empty_file() -> None:
    preset_manager = PresetManager(preset_path=presets_test_4_yaml_path)
    true_msg = "プリセットの設定ファイルが空の内容です"
    with pytest.raises(PresetInternalError, match=true_msg):
        preset_manager.load_presets()


def test_not_exist_file() -> None:
    preset_manager = PresetManager(preset_path=Path("test/presets-dummy.yaml"))
    true_msg = "プリセットの設定ファイルが見つかりません"
    with pytest.raises(PresetInternalError, match=true_msg):
        preset_manager.load_presets()


def test_add_preset(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_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,
            "pauseLength": None,
            "pauseLengthScale": 1.0,
        }
    )
    id = preset_manager.add_preset(preset)
    assert id == 10
    assert len(preset_manager.presets) == 3
    for _preset in preset_manager.presets:
        if _preset.id == id:
            assert _preset == preset
    remove(preset_path)


def test_add_preset_load_failure() -> None:
    preset_manager = PresetManager(preset_path=presets_test_2_yaml_path)
    true_msg = "プリセットの設定ファイルにミスがあります"
    with pytest.raises(PresetInternalError, match=true_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,
                    "pauseLength": 0,
                    "pauseLengthScale": 0,
                }
            )
        )


def test_add_preset_conflict_id(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_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,
            "pauseLength": None,
            "pauseLengthScale": 1.0,
        }
    )
    id = preset_manager.add_preset(preset)
    assert id == 3
    assert len(preset_manager.presets) == 3
    for _preset in preset_manager.presets:
        if _preset.id == id:
            assert _preset == preset
    remove(preset_path)


def test_add_preset_conflict_id2(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_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,
            "pauseLength": None,
            "pauseLengthScale": 1.0,
        }
    )
    id = preset_manager.add_preset(preset)
    assert id == 3
    assert len(preset_manager.presets) == 3
    for _preset in preset_manager.presets:
        if _preset.id == id:
            assert _preset == preset
    remove(preset_path)


def test_add_preset_write_failure(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_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,
            "pauseLength": None,
            "pauseLengthScale": 1.0,
        }
    )
    preset_manager.load_presets()
    preset_manager._refresh_cache = lambda: None  # type:ignore[method-assign]
    preset_manager.preset_path = ""  # type: ignore[assignment]
    true_msg = "プリセットの設定ファイルが見つかりません"
    with pytest.raises(PresetInternalError, match=true_msg):
        preset_manager.add_preset(preset)
    assert len(preset_manager.presets) == 2
    remove(preset_path)


def test_update_preset(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_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,
            "pauseLength": None,
            "pauseLengthScale": 1.0,
        }
    )
    id = preset_manager.update_preset(preset)
    assert id == 1
    assert len(preset_manager.presets) == 2
    for _preset in preset_manager.presets:
        if _preset.id == id:
            assert _preset == preset
    remove(preset_path)


def test_update_preset_load_failure() -> None:
    preset_manager = PresetManager(preset_path=presets_test_2_yaml_path)
    true_msg = "プリセットの設定ファイルにミスがあります"
    with pytest.raises(PresetInternalError, match=true_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,
                    "pauseLength": 0,
                    "pauseLengthScale": 0,
                }
            )
        )


def test_update_preset_not_found(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_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,
            "pauseLength": None,
            "pauseLengthScale": 1.0,
        }
    )
    true_msg = "更新先のプリセットが存在しません"
    with pytest.raises(PresetInputError, match=true_msg):
        preset_manager.update_preset(preset)
    assert len(preset_manager.presets) == 2
    remove(preset_path)


def test_update_preset_write_failure(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_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,
            "pauseLength": None,
            "pauseLengthScale": 1.0,
        }
    )
    preset_manager.load_presets()
    preset_manager._refresh_cache = lambda: None  # type:ignore[method-assign]
    preset_manager.preset_path = ""  # type: ignore[assignment]
    true_msg = "プリセットの設定ファイルが見つかりません"
    with pytest.raises(PresetInternalError, match=true_msg):
        preset_manager.update_preset(preset)
    assert len(preset_manager.presets) == 2
    assert preset_manager.presets[0].name == "test"
    remove(preset_path)


def test_delete_preset(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_path)
    id = preset_manager.delete_preset(1)
    assert id == 1
    assert len(preset_manager.presets) == 1
    remove(preset_path)


def test_delete_preset_load_failure() -> None:
    preset_manager = PresetManager(preset_path=presets_test_2_yaml_path)
    true_msg = "プリセットの設定ファイルにミスがあります"
    with pytest.raises(PresetInternalError, match=true_msg):
        preset_manager.delete_preset(10)


def test_delete_preset_not_found(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_path)
    true_msg = "削除対象のプリセットが存在しません"
    with pytest.raises(PresetInputError, match=true_msg):
        preset_manager.delete_preset(10)
    assert len(preset_manager.presets) == 2
    remove(preset_path)


def test_delete_preset_write_failure(tmp_path: Path) -> None:
    preset_path = tmp_path / "presets.yaml"
    copyfile(presets_test_1_yaml_path, preset_path)
    preset_manager = PresetManager(preset_path=preset_path)
    preset_manager.load_presets()
    preset_manager._refresh_cache = lambda: None  # type:ignore[method-assign]
    preset_manager.preset_path = ""  # type: ignore[assignment]
    true_msg = "プリセットの設定ファイルが見つかりません"
    with pytest.raises(PresetInternalError, match=true_msg):
        preset_manager.delete_preset(1)
    assert len(preset_manager.presets) == 2
    remove(preset_path)