-
Notifications
You must be signed in to change notification settings - Fork 0
/
transliterate.test.js
144 lines (95 loc) · 3.09 KB
/
transliterate.test.js
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
import { expect } from 'chai'
import path from 'node:path'
import { readFile } from 'node:fs/promises'
import { transliterate } from './transliterate.js'
import { describe, it } from 'node:test'
const dataDir = path.resolve(import.meta.dirname, `./data`)
const blnsJSON = await readFile(path.join(dataDir, `blns.json`))
const blns = JSON.parse(blnsJSON)
const chatinoJSON = await readFile(path.join(dataDir, `chatino.json`))
const chatino = JSON.parse(chatinoJSON)
describe(`transliterate`, function() {
it(`accepts empty strings`, function() {
const substitutions = { t: `d` }
const output = transliterate(``, substitutions)
expect(output).to.be.empty
})
it(`accepts Maps`, function() {
const substitutions = new Map([
[`a`, `aa`],
[`bc`, `cc`],
[`b`, `bb`],
])
const input = `abbc`
const correctOutput = `aabbcc`
const actualOutput = transliterate(input, substitutions)
expect(actualOutput).to.be.equal(correctOutput)
})
it(`handles bleeding problems`, function() {
const substitutions = {
s: `z`,
ts: `c`,
}
const input = `atsa`
const correctOutput = `aca`
const actualOutput = transliterate(input, substitutions)
expect(actualOutput).to.equal(correctOutput)
})
it(`handles feeding problems`, function() {
const substitutions = {
d: `θ`,
t: `d`,
}
const input = `atada`
const correctOutput = `adaθa`
const actualOutput = transliterate(input, substitutions)
expect(actualOutput).to.equal(correctOutput)
})
it(`handles naughty strings`, function() {
const substitutions = { ʃ: `s` }
for (const str of blns) {
expect(transliterate(str, substitutions)).to.equal(str)
}
})
it(`handles numbers as inputs`, function() {
const substitutions = {
0: `a`,
1: `b`,
2: `c`,
3: `d`,
4: `e`,
5: `f`,
6: `g`,
7: `h`,
8: `i`,
9: `j`,
}
const input = `0123456789`
const correctOutput = `abcdefghij`
const actualOutput = transliterate(input, substitutions)
expect(actualOutput).to.equal(correctOutput)
})
it(`handles regular expression special characters`, function() {
const substitutions = {
'*': `·`,
'a*': `a·`,
}
const input = `*ata*`
const correctOutput = `·ata·`
const actualOutput = transliterate(input, substitutions)
expect(actualOutput).to.equal(correctOutput)
})
it(`retains line breaks`, function() {
const substitutions = {}
const input = `Hello world,
This is some multi-line input.\nThis is also multi-line.`
const output = transliterate(input, substitutions)
expect(output).to.equal(input)
})
it(`transliterates Chatino`, function() {
const input = `ji_& xiku_na!7a laa7 nka7nelo!7o_ na! nkata_a!`
const correctOutput = `jï̱ xiku̱ná'a laa' nka'neló'o̱ ná nkata̱á`
const actualOutput = transliterate(input, chatino)
expect(actualOutput).to.equal(correctOutput)
})
})