-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathStringMethodsTests.cs
More file actions
445 lines (344 loc) · 10.6 KB
/
StringMethodsTests.cs
File metadata and controls
445 lines (344 loc) · 10.6 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
/*
* Copyright (c) 2018 - 2024 Daniel Lascelles, https://github.com/dlascelles
* This code is licensed under The MIT License. See LICENSE file in the project root for full license information.
* License URL: https://github.com/dlascelles/Arithmos/blob/master/LICENSE
*/
using ArithmosModels.Enums;
using ArithmosModels.Extensions;
namespace ArithmosModelsTests;
[TestClass]
public class StringMethodsTests
{
[TestMethod]
public void RemoveNonUnicodeCharacters_WithUnicodeString_ShouldReturnSameString()
{
// Arrange
string input = "Hello, こんにちは, Здравствуйте, Γειά σας, مرحبًا, שלום";
// Act
string result = input.RemoveNonUnicodeCharacters();
// Assert
Assert.AreEqual(input, result);
}
[TestMethod]
public void RemoveNonUnicodeCharacters_WithNonUnicodeCharacters_ShouldRemoveNonUnicodeCharacters()
{
// Arrange
string input = "Here are some characters that should be removed: \uFDEF\uFFFE";
// Act
string result = input.RemoveNonUnicodeCharacters();
// Assert
Assert.AreEqual("Here are some characters that should be removed: ", result);
}
[TestMethod]
public void RemoveNonUnicodeCharacters_WithEmptyString_ShouldReturnEmptyString()
{
// Arrange
string input = string.Empty;
// Act
string result = input.RemoveNonUnicodeCharacters();
// Assert
Assert.AreEqual(string.Empty, result);
}
[TestMethod]
public void RemoveNonSpacingMarks_ShouldHandleEmptyString()
{
// Arrange
string input = "";
// Act
string result = input.RemoveNonSpacingMarks();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveNonSpacingMarks_ShouldHandleStringWithNoMarks()
{
// Arrange
string input = "hello world";
// Act
string result = input.RemoveNonSpacingMarks();
// Assert
Assert.AreEqual("hello world", result);
}
[TestMethod]
public void RemoveNonSpacingMarks_ShouldRemoveMarks()
{
// Arrange
string input = "בְּרֵאשִׁ֖ית בָּרָ֣א אֱלֹהִ֑ים";
// Act
string result = input.RemoveNonSpacingMarks();
// Assert
Assert.AreEqual("בראשית ברא אלהים", result);
}
[TestMethod]
public void RemoveExtraSpaces_NullInput_ReturnsEmptyString()
{
// Arrange
string? input = null;
// Act
string result = input.RemoveExtraSpaces();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveExtraSpaces_EmptyStringInput_ReturnsEmptyString()
{
// Arrange
string input = "";
// Act
string result = input.RemoveExtraSpaces();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveExtraSpaces_OnlySpacesInput_ReturnsEmptyString()
{
// Arrange
string input = " ";
// Act
string result = input.RemoveExtraSpaces();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveExtraSpaces_SingleSpaceInput_ReturnsEmptyString()
{
// Arrange
string input = " ";
// Act
string result = input.RemoveExtraSpaces();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveExtraSpaces_NoExtraSpacesInput_ReturnsInputString()
{
// Arrange
string input = "I'm your huckleberry";
// Act
string result = input.RemoveExtraSpaces();
// Assert
Assert.AreEqual(input, result);
}
[TestMethod]
public void RemoveExtraSpaces_WithExtraSpacesInput_RemovesExtraSpaces()
{
// Arrange
string input = " I'm your huckleberry ";
// Act
string result = input.RemoveExtraSpaces();
// Assert
Assert.AreEqual(" I'm your huckleberry ", result);
}
[TestMethod]
public void RemoveNewLines_NullInput_ReturnsEmptyString()
{
// Arrange
string? input = null;
// Act
string result = input.RemoveNewLines();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveNewLines_EmptyStringInput_ReturnsEmptyString()
{
// Arrange
string input = "";
// Act
string result = input.RemoveNewLines();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveNewLines_OnlySpacesInput_ReturnsEmptyString()
{
// Arrange
string input = " ";
// Act
string result = input.RemoveNewLines();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveNewLines_NoNewLinesInput_ReturnsInputString()
{
// Arrange
string input = "I'm your huckleberry";
// Act
string result = input.RemoveExtraSpaces();
// Assert
Assert.AreEqual(input, result);
}
[TestMethod]
public void RemoveNewLines_InputWithNewLines_ReturnsInputWithoutNewLines()
{
// Arrange
string input = "\rI'm \nyo\nur\r\n\r huckleberry\r\n";
// Act
string result = input.RemoveNewLines();
// Assert
Assert.AreEqual("I'm your huckleberry", result);
}
[TestMethod]
public void RemoveNewLines_InputWithNewLines_ReturnsReplacedNewLines()
{
// Arrange
string input = "\rI'm\nyo\nur\r\n\rhuckleberry\r\n";
// Act
string result = input.RemoveNewLines(" ");
// Assert
Assert.AreEqual(" I'm yo ur huckleberry ", result);
}
[TestMethod]
public void RemoveAccents_WithAccentedCharacters_ReturnsAccentsRemoved()
{
// Arrange
string input = "Ἄνδρα μοι ἔννεπε, Μοῦσα, πολύτροπον, ὃς μάλα πολλὰ";
string expected = "Ανδρα μοι εννεπε, Μουσα, πολυτροπον, ος μαλα πολλα";
// Act
string result = input.RemoveAccents();
// Assert
Assert.AreEqual(expected, result);
}
[TestMethod]
public void RemoveAccents_WithAccentedCharacters_ReturnsAccentsRemoved2()
{
// Arrange
string input = "Μῆνιν ἄειδε, θεά, Πηληϊάδεω Ἀχιλῆος";
string expected = "Μηνιν αειδε, θεα, Πηληιαδεω Αχιληος";
// Act
string result = input.RemoveAccents();
// Assert
Assert.AreEqual(expected, result);
}
[TestMethod]
public void RemoveAccents_WithoutAccentedCharacters_ReturnsOriginalString()
{
// Arrange
string input = "This should stay the same";
// Act
string result = input.RemoveAccents();
// Assert
Assert.AreEqual(input, result);
}
[TestMethod]
public void RemoveAccents_EmptyString_ReturnsEmptyString()
{
// Arrange
string input = "";
// Act
string result = input.RemoveAccents();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void RemoveAccents_NullString_ReturnsNull()
{
// Arrange
string? input = null;
// Act
string result = input.RemoveAccents();
// Assert
Assert.AreEqual("", result);
}
[TestMethod]
public void GetAlphabet_WhiteSpace_ReturnsNone()
{
// Arrange
string input = " ";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.None, alphabet);
}
[TestMethod]
public void GetAlphabet_Symbols_ReturnsNone()
{
// Arrange
string input = " '=-_@%^* !>?<>{}||[}\\} }{&#$%^#% ";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.None, alphabet);
}
[TestMethod]
public void GetAlphabet_English_ReturnsEnglish()
{
// Arrange
string input = "Hello my friend, how are you?";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.English, alphabet);
}
[TestMethod]
public void GetAlphabet_Greek_ReturnsGreek()
{
// Arrange
string input = "Γεια σου φιλε μου πως εισαι;";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.Greek, alphabet);
}
[TestMethod]
public void GetAlphabet_Hebrew_ReturnsHebrew()
{
// Arrange
string input = "שלום ידידי מה שלומך?";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.Hebrew, alphabet);
}
[TestMethod]
public void GetAlphabet_Arabic_ReturnsArabic()
{
// Arrange
string input = "مرحبا يا صديقي كيف حالك؟";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.Arabic, alphabet);
}
[TestMethod]
public void GetAlphabet_Cyrillic_ReturnsCyrillic()
{
// Arrange
string input = "Привет, друг, ты как?";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.Cyrillic, alphabet);
}
[TestMethod]
public void GetAlphabet_Coptic_ReturnsCoptic()
{
// Arrange
string input = "Ⲭⲁⲓⲣⲉ ⲛⲁ ⲏⲣ, ⲡⲟⲥ ⲉⲓⲛⲁⲓ ⲑⲟⲕ?";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.Coptic, alphabet);
}
[TestMethod]
public void GetAlphabet_EnglishGreek_ReturnsEnglishGreek()
{
// Arrange
string input = "Hello my friend, how are you? Γεια σου φιλε μου πως εισαι;";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.English | Alphabet.Greek, alphabet);
}
[TestMethod]
public void GetAlphabet_HebrewArabic_ReturnsHebrewArabic()
{
// Arrange
string input = "שלום ידידי מה שלומך? مرحبا يا صديقي كيف حالك؟";
// Act
Alphabet alphabet = input.GetAlphabet();
// Assert
Assert.AreEqual(Alphabet.Hebrew | Alphabet.Arabic, alphabet);
}
}