-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
UsfmTextUpdaterTests.cs
446 lines (386 loc) · 14.2 KB
/
UsfmTextUpdaterTests.cs
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
using NUnit.Framework;
namespace SIL.Machine.Corpora;
[TestFixture]
public class UsfmTextUpdaterTests
{
[Test]
public void GetUsfm_Verse_CharStyle()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 1:1"), "First verse of the first chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\id MAT - Test\r\n"));
Assert.That(target, Contains.Substring("\\v 1 First verse of the first chapter.\r\n"));
}
[Test]
public void GetUsfm_IdText()
{
string target = UpdateUsfm(idText: "- Updated");
Assert.That(target, Contains.Substring("\\id MAT - Updated\r\n"));
}
[Test]
public void GetUsfm_StripAllText()
{
string target = UpdateUsfm(stripAllText: true);
Assert.That(target, Contains.Substring("\\id MAT\r\n"));
Assert.That(target, Contains.Substring("\\v 1\r\n"));
Assert.That(target, Contains.Substring("\\s\r\n"));
Assert.That(target, Contains.Substring("\\ms\r\n"));
}
[Test]
public void GetUsfm_PreferExisting()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 1:6"), "Text 6"),
(ScrRef("MAT 1:7"), "Text 7"),
};
string target = UpdateUsfm(rows, preferExistingText: true);
Assert.That(target, Contains.Substring("\\id MAT - Test\r\n"));
Assert.That(target, Contains.Substring("\\v 6 Verse 6 content.\r\n"));
Assert.That(target, Contains.Substring("\\v 7 Text 7\r\n"));
}
[Test]
public void GetUsfm_PreferRows()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 1:6"), "Text 6"),
(ScrRef("MAT 1:7"), "Text 7"),
};
string target = UpdateUsfm(rows, preferExistingText: false);
Assert.That(target, Contains.Substring("\\id MAT - Test\r\n"));
Assert.That(target, Contains.Substring("\\v 6 Text 6\r\n"));
Assert.That(target, Contains.Substring("\\v 7 Text 7\r\n"));
}
[Test]
public void GetUsfm_Verse_SkipNote()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:1"), "First verse of the second chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\v 1 First verse of the second chapter.\r\n"));
}
[Test]
public void GetUsfm_Verse_ReplaceNote()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:1"), "First verse of the second chapter."),
(ScrRef("MAT 2:1/1:f"), "This is a new footnote.")
};
string target = UpdateUsfm(rows);
Assert.That(
target,
Contains.Substring("\\v 1 First verse of the second chapter. \\f + \\ft This is a new footnote.\\f*\r\n")
);
}
[Test]
public void GetUsfm_Verse_RowVerseSegment()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:1a"), "First verse of the second chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\v 1 First verse of the second chapter.\r\n"));
}
[Test]
public void GetUsfm_Verse_UsfmVerseSegment()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:7"), "Seventh verse of the second chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\v 7a Seventh verse of the second chapter.\r\n"));
}
[Test]
public void GetUsfm_Verse_MultipleParas()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 1:2"), "Second verse of the first chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\v 2 Second verse of the first chapter.\r\n\\li2\r\n"));
}
[Test]
public void GetUsfm_Verse_Table()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:9"), "Ninth verse of the second chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\v 9 Ninth verse of the second chapter. \\tcr2 \\tc3 \\tcr4\r\n"));
}
[Test]
public void GetUsfm_Verse_RangeSingleRowMultipleVerses()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(
ScrRef("MAT 2:11", "MAT 2:12"),
"Eleventh verse of the second chapter. Twelfth verse of the second chapter."
)
};
string target = UpdateUsfm(rows);
Assert.That(
target,
Contains.Substring(
"\\v 11-12 Eleventh verse of the second chapter. Twelfth verse of the second chapter.\r\n"
)
);
}
[Test]
public void GetUsfm_Verse_RangeSingleRowSingleVerse()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:11"), "Eleventh verse of the second chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\v 11-12 Eleventh verse of the second chapter.\r\n"));
}
[Test]
public void GetUsfm_Verse_RangeMultipleRowsSingleVerse()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:11"), "Eleventh verse of the second chapter."),
(ScrRef("MAT 2:12"), "Twelfth verse of the second chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(
target,
Contains.Substring(
"\\v 11-12 Eleventh verse of the second chapter. Twelfth verse of the second chapter.\r\n"
)
);
}
[Test]
public void GetUsfm_Verse_2_2a_2b()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:2"), "Verse 2."),
(ScrRef("MAT 2:2a"), "Verse 2a."),
(ScrRef("MAT 2:2b"), "Verse 2b.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\v 2-3 Verse 2. Verse 2a. Verse 2b.\r\n"));
}
[Test]
public void GetUsfm_Verse_OptBreak()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:2"), "Second verse of the second chapter."),
(ScrRef("MAT 2:3"), "Third verse of the second chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(
target,
Contains.Substring("\\v 2-3 Second verse of the second chapter. Third verse of the second chapter.\r\n")
);
}
[Test]
public void GetUsfm_Verse_Milestone()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:10"), "Tenth verse of the second chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(
target,
Contains.Substring("\\v 10 Tenth verse of the second chapter. \\tc3-4 \\qt-s |Jesus\\*\\qt-e\\*\r\n")
);
}
[Test]
public void GetUsfm_Verse_Unmatched()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 1:3"), "Third verse of the first chapter.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\v 3 Third verse of the first chapter.\r\n"));
}
[Test]
public void GetUsfm_NonVerse_CharStyle()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)> { (ScrRef("MAT 2:0/3:s1"), "The second chapter.") };
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\s1 The second chapter.\r\n"));
}
[Test]
public void GetUsfm_NonVerse_Paragraph()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)> { (ScrRef("MAT 1:0/8:s"), "The first chapter.") };
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\s The first chapter.\r\n"));
}
[Test]
public void GetUsfm_NonVerse_Relaxed()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 1:0/s"), "The first chapter."),
(ScrRef("MAT 1:1"), "First verse of the first chapter."),
(ScrRef("MAT 2:0/tr/tc1"), "The first cell of the table."),
(ScrRef("MAT 2:0/tr/tc2"), "The second cell of the table."),
(ScrRef("MAT 2:0/tr/tc1"), "The third cell of the table.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\s The first chapter.\r\n"));
Assert.That(target, Contains.Substring("\\v 1 First verse of the first chapter.\r\n"));
Assert.That(
target,
Contains.Substring("\\tr \\tc1 The first cell of the table. \\tc2 The second cell of the table.\r\n")
);
Assert.That(
target,
Contains.Substring("\\tr \\tc1 The third cell of the table. \\tc2 Row two, column two.\r\n")
);
}
[Test]
public void GetUsfm_NonVerse_Sidebar()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:3/1:esb/1:ms"), "The first paragraph of the sidebar.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\ms The first paragraph of the sidebar.\r\n"));
}
[Test]
public void GetUsfm_NonVerse_Table()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:0/1:tr/1:tc1"), "The first cell of the table."),
(ScrRef("MAT 2:0/2:tr/1:tc1"), "The third cell of the table.")
};
string target = UpdateUsfm(rows);
Assert.That(
target,
Contains.Substring("\\tr \\tc1 The first cell of the table. \\tc2 Row one, column two.\r\n")
);
Assert.That(
target,
Contains.Substring("\\tr \\tc1 The third cell of the table. \\tc2 Row two, column two.\r\n")
);
}
[Test]
public void GetUsfm_NonVerse_OptBreak()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:3/1:esb/2:p"), "The second paragraph of the sidebar.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\p The second paragraph of the sidebar.\r\n"));
}
[Test]
public void GetUsfm_NonVerse_Milestone()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 2:7a/1:s"), "A new section header.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\s A new section header. \\ts-s\\*\r\n"));
}
[Test]
public void GetUsfm_NonVerse_SkipNote()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 1:0/3:ip"), "The introductory paragraph.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\ip The introductory paragraph.\r\n"));
}
[Test]
public void GetUsfm_NonVerse_ReplaceNote()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 1:0/3:ip"), "The introductory paragraph."),
(ScrRef("MAT 1:0/3:ip/1:fe"), "This is a new endnote.")
};
string target = UpdateUsfm(rows);
Assert.That(
target,
Contains.Substring("\\ip The introductory paragraph. \\fe + \\ft This is a new endnote.\\fe*\r\n")
);
}
[Test]
public void GetUsfm_Verse_DoubleVaVp()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("MAT 3:1"), "Updating later in the book to start.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\id MAT - Test\r\n"));
Assert.That(
target,
Contains.Substring("\\v 1 \\va 2\\va*\\vp 1 (2)\\vp*Updating later in the book to start.\r\n")
);
}
[Test]
public void GetUsfm_Verse_LastVerse()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)> { (ScrRef("MAT 4:1"), "Updating the last verse.") };
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\id MAT - Test\r\n"));
Assert.That(target, Contains.Substring("\\v 1 Updating the last verse.\r\n"));
}
[Test]
public void GetUsfm_Verse_PretranslationsBeforeText()
{
var rows = new List<(IReadOnlyList<ScriptureRef>, string)>
{
(ScrRef("GEN 1:1"), "Pretranslations before the start"),
(ScrRef("GEN 1:2"), "Pretranslations before the start"),
(ScrRef("GEN 1:3"), "Pretranslations before the start"),
(ScrRef("GEN 1:4"), "Pretranslations before the start"),
(ScrRef("GEN 1:5"), "Pretranslations before the start"),
(ScrRef("MAT 1:0/3:ip"), "The introductory paragraph.")
};
string target = UpdateUsfm(rows);
Assert.That(target, Contains.Substring("\\ip The introductory paragraph.\r\n"));
}
private static ScriptureRef[] ScrRef(params string[] refs)
{
return refs.Select(r => ScriptureRef.Parse(r)).ToArray();
}
private static string UpdateUsfm(
IReadOnlyList<(IReadOnlyList<ScriptureRef>, string)>? rows = null,
string? idText = null,
bool stripAllText = false,
bool preferExistingText = false
)
{
string source = ReadUsfm();
var updater = new UsfmTextUpdater(
rows,
idText,
stripAllText: stripAllText,
preferExistingText: preferExistingText
);
UsfmParser.Parse(source, updater);
return updater.GetUsfm();
}
private static string ReadUsfm()
{
return File.ReadAllText(Path.Combine(CorporaTestHelpers.UsfmTestProjectPath, "41MATTes.SFM"));
}
}