-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathOrcaAppTestUITests.swift
More file actions
501 lines (412 loc) · 19.3 KB
/
Copy pathOrcaAppTestUITests.swift
File metadata and controls
501 lines (412 loc) · 19.3 KB
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
//
// Copyright 2024-2025 Picovoice Inc.
// You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
// file accompanying this source.
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
// an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
//
import XCTest
import Orca
class OrcaAppTestUITests: BaseTest {
override func setUpWithError() throws {
continueAfterFailure = true
}
func runTestSynthesize(orca: Orca, model: String, testCase: SentenceTests) throws {
let (pcm, wordArray) = try orca.synthesize(text: testCase.text, randomState: Int64(testCase.random_state))
XCTAssertGreaterThan(pcm.count, 0)
XCTAssertGreaterThan(wordArray.count, 0)
let groundTruth = try self.getPcm(fileUrl: self.getAudioFileUrl(model: model, synthesis_type: "single"))
XCTAssertTrue(compareArrays(arr1: pcm, arr2: groundTruth, step: 1))
}
func testSynthesize() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestSynthesize(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestStreaming(orca: Orca, model: String, testCase: SentenceTests) throws {
let orcaStream = try orca.streamOpen(randomState: Int64(testCase.random_state))
var fullPcm = [Int16]()
for c in testCase.text {
if let pcm = try orcaStream.synthesize(text: String(c)) {
if !pcm.isEmpty {
fullPcm.append(contentsOf: pcm)
}
}
}
if let flushedPcm = try orcaStream.flush(), !flushedPcm.isEmpty {
fullPcm.append(contentsOf: flushedPcm)
}
orcaStream.close()
let groundTruth = try self.getPcm(fileUrl: self.getAudioFileUrl(model: model, synthesis_type: "stream"))
XCTAssertTrue(compareArrays(arr1: fullPcm, arr2: groundTruth, step: 1))
orca.delete()
}
func testStreaming() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestStreaming(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestMaxCharacterLimit(orca: Orca, model: String, testCase: SentenceTests) {
XCTAssertGreaterThan(orca.maxCharacterLimit!, 0)
}
func testMaxCharacterLimit() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestMaxCharacterLimit(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestSampleRate(orca: Orca, model: String, testCase: SentenceTests) throws {
XCTAssertGreaterThan(orca.sampleRate!, 0)
}
func testSampleRate() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestSampleRate(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestValidCharacters(orca: Orca, model: String, testCase: SentenceTests) throws {
XCTAssertGreaterThan(orca.validCharacters!.count, 0)
}
func testValidCharacters() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestValidCharacters(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestSynthesizeCustomPron(orca: Orca, model: String, testCase: SentenceTests) throws {
let (pcm, wordArray) = try orca.synthesize(text: testCase.text_custom_pronunciation)
XCTAssertGreaterThan(pcm.count, 0)
XCTAssertGreaterThan(wordArray.count, 0)
}
func testSynthesizeCustomPron() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestSynthesizeCustomPron(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestSynthesizeSpeechRate(orca: Orca, model: String, testCase: SentenceTests) throws {
let (pcm: pcmFast, wordArray: wordArrayFast) = try orca.synthesize(text: testCase.text, speechRate: 1.3)
let (pcm: pcmSlow, wordArray: wordArraySlow) = try orca.synthesize(text: testCase.text, speechRate: 0.7)
XCTAssertLessThan(pcmFast.count, pcmSlow.count)
XCTAssertEqual(wordArrayFast.count, wordArraySlow.count)
do {
let (pcm, wordArray) = try orca.synthesize(text: testCase.text, speechRate: 9999)
XCTAssertNil(pcm)
XCTAssertNil(wordArray)
} catch { }
}
func testSynthesizeSpeechRate() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestSynthesizeSpeechRate(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestSynthesizeRandomState(orca: Orca, model: String, testCase: SentenceTests) throws {
let (pcm: pcm1, wordArray: wordArray1) = try orca.synthesize(text: testCase.text, randomState: 1)
XCTAssertGreaterThan(pcm1.count, 0)
XCTAssertGreaterThan(wordArray1.count, 0)
let (pcm: pcm2, wordArray: wordArray2) = try orca.synthesize(text: testCase.text, randomState: 2)
XCTAssertGreaterThan(pcm2.count, 0)
XCTAssertGreaterThan(wordArray2.count, 0)
XCTAssertNotEqual(pcm1, pcm2)
}
func testSynthesizeRandomState() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestSynthesizeRandomState(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestSynthesizeToFile(orca: Orca, model: String, testCase: SentenceTests) throws {
let audioDir = try FileManager.default.url(
for: .documentDirectory,
in: .userDomainMask,
appropriateFor: nil,
create: false)
let audioFile = audioDir.appendingPathComponent("test.wav")
let wordArrayFromURL = try orca.synthesizeToFile(text: testCase.text, outputURL: audioFile)
XCTAssert(FileManager().fileExists(atPath: audioFile.path))
XCTAssertGreaterThan(wordArrayFromURL.count, 0)
try FileManager().removeItem(at: audioFile)
let wordArrayFromPath = try orca.synthesizeToFile(text: testCase.text, outputPath: audioFile.path)
XCTAssert(FileManager().fileExists(atPath: audioFile.path))
XCTAssertGreaterThan(wordArrayFromPath.count, 0)
try FileManager().removeItem(at: audioFile)
}
func testSynthesizeToFile() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestSynthesizeToFile(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
let textQuotes = "iOS uses different quotation marks for ‘single’ and “double” quotes."
func runTestSynthesizeQuotes(orca: Orca, model: String, testCase: SentenceTests) throws {
let (pcm, wordArray) = try orca.synthesize(text: textQuotes)
XCTAssertGreaterThan(pcm.count, 0)
XCTAssertGreaterThan(wordArray.count, 0)
}
func testSynthesizeQuotes() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestSynthesizeQuotes(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestStreamingQuotes(orca: Orca, model: String, testCase: SentenceTests) throws {
let orcaStream = try orca.streamOpen(randomState: Int64(testCase.random_state))
var fullPcm = [Int16]()
for c in textQuotes {
if let pcm = try orcaStream.synthesize(text: String(c)) {
if !pcm.isEmpty {
fullPcm.append(contentsOf: pcm)
}
}
}
if let flushedPcm = try orcaStream.flush(), !flushedPcm.isEmpty {
fullPcm.append(contentsOf: flushedPcm)
}
orcaStream.close()
}
func testStreamingQuotes() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestStreamingQuotes(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestSynthesizeToFileQuotes(orca: Orca, model: String, testCase: SentenceTests) throws {
let audioDir = try FileManager.default.url(
for: .documentDirectory,
in: .userDomainMask,
appropriateFor: nil,
create: false)
let audioFile = audioDir.appendingPathComponent("test.wav")
let wordArrayFromURL = try orca.synthesizeToFile(text: textQuotes, outputURL: audioFile)
XCTAssert(FileManager().fileExists(atPath: audioFile.path))
XCTAssertGreaterThan(wordArrayFromURL.count, 0)
try FileManager().removeItem(at: audioFile)
let wordArrayFromPath = try orca.synthesizeToFile(text: textQuotes, outputPath: audioFile.path)
XCTAssert(FileManager().fileExists(atPath: audioFile.path))
XCTAssertGreaterThan(wordArrayFromPath.count, 0)
try FileManager().removeItem(at: audioFile)
}
func testSynthesizeToFileQuotes() throws {
for testCase in self.testData!.tests.sentence_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestSynthesizeToFileQuotes(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestInvalidText(orca: Orca, model: String, testCase: InvalidTests) throws {
for sentence in testCase.text_invalid {
do {
let (pcm, wordArray) = try orca.synthesize(text: sentence)
XCTAssertNil(pcm)
XCTAssertNil(wordArray)
} catch {
XCTAssertTrue(error is OrcaError)
}
}
}
func testInvalidText() throws {
for testCase in self.testData!.tests.invalid_tests {
for model in testCase.models {
try XCTContext.runActivity(named: "(\(testCase.language) \(model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: model),
device: device)
try runTestInvalidText(orca: orca, model: model, testCase: testCase)
orca.delete()
}
}
}
}
func runTestAlignments(orca: Orca, model: String, testCase: AlignmentTests) throws {
let (pcm, wordArray) = try orca.synthesize(
text: testCase.text_alignment,
randomState: Int64(testCase.random_state))
XCTAssertGreaterThan(pcm.count, 0)
XCTAssertGreaterThan(wordArray.count, 0)
let audioDir = try FileManager.default.url(
for: .documentDirectory,
in: .userDomainMask,
appropriateFor: nil,
create: false)
let audioFile = audioDir.appendingPathComponent("test.wav")
let synthToFileWordArray = try orca.synthesizeToFile(
text: testCase.text_alignment,
outputURL: audioFile,
randomState: Int64(testCase.random_state))
try FileManager().removeItem(at: audioFile)
var synthesizeTestData = [OrcaWord]()
for alignment in testCase.alignments {
var phonemeArray = [OrcaPhoneme]()
for phoneme in alignment.phonemes {
phonemeArray.append(OrcaPhoneme(
phoneme: phoneme.phoneme, startSec: phoneme.start_sec, endSec: phoneme.end_sec))
}
synthesizeTestData.append(
OrcaWord(
word: alignment.word,
startSec: alignment.start_sec,
endSec: alignment.end_sec,
phonemeArray: phonemeArray))
}
validateMetadata(words: wordArray, expectedWords: synthesizeTestData, isExpectExact: true)
validateMetadata(words: synthToFileWordArray, expectedWords: synthesizeTestData, isExpectExact: true)
}
func testAlignments() throws {
for testCase in self.testData!.tests.alignment_tests {
try XCTContext.runActivity(named: "(\(testCase.language) \(testCase.model))") { _ in
let orca = try Orca.init(
accessKey: self.accessKey,
modelPath: self.getModelPath(model: testCase.model),
device: device)
try runTestAlignments(orca: orca, model: testCase.model, testCase: testCase)
orca.delete()
}
}
}
func testVersion() throws {
XCTAssertGreaterThan(Orca.version.count, 0)
}
func testGetAvailableDevices() throws {
let devices = try Orca.getAvailableDevices()
XCTAssert(!devices.isEmpty)
for device in devices {
XCTAssert(!device.isEmpty)
}
}
func testMessageStack() throws {
let bundle = Bundle(for: type(of: self))
let modelPath: String = bundle.path(
forResource: "orca_params_en_female",
ofType: "pv",
inDirectory: "test_resources/model_files")!
var first_error: String = ""
do {
let orca: Orca = try Orca(accessKey: "invalid", modelPath: modelPath, device: device)
XCTAssertNil(orca)
} catch {
first_error = "\(error.localizedDescription)"
XCTAssert(first_error.count < 1024)
}
do {
let orca: Orca = try Orca(accessKey: "invalid", modelPath: modelPath, device: device)
XCTAssertNil(orca)
} catch {
XCTAssert("\(error.localizedDescription)".count == first_error.count)
}
}
func testSynthesizeMessageStack() throws {
let bundle = Bundle(for: type(of: self))
let modelPath: String = bundle.path(
forResource: "orca_params_en_female",
ofType: "pv",
inDirectory: "test_resources/model_files")!
let orca: Orca = try Orca(accessKey: accessKey, modelPath: modelPath, device: device)
orca.delete()
do {
let pcm = try orca.synthesize(text: self.testData!.tests.sentence_tests[0].text)
XCTAssertNil(pcm)
} catch {
XCTAssert("\(error.localizedDescription)".count > 0)
}
}
}