-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
92 lines (76 loc) · 3.25 KB
/
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
import {readFileSync} from 'fs';
import grapheme_iterator from './index.js';
const testData = readFileSync('GraphemeBreakTest.txt', 'ASCII')
.split('\n')
.filter(line =>
line != null && line.length > 0 && !line.startsWith('#'))
.map(line => line.split('#')[0])
.map(line => {
const codePoints = line.split(/\s*[×÷]\s*/).filter(x => !!x.length).map(c => parseInt(c, 16));
const input = codePoints.map(x => String.fromCodePoint(x)).join('');
const expected = line.split(/\s*÷\s*/).filter(x => !!x.length).map(sequence => {
const codePoints = sequence.split(/\s*×\s*/).filter(x => !!x.length).map(c => parseInt(c, 16));
return codePoints.map(x => String.fromCodePoint(x)).join('');
});
return { input, expected };
});
const emojiData = readFileSync('emoji-test.txt', 'utf-8')
.split('\n')
.filter(line =>
line != null && line.length > 0 && !line.startsWith('#'))
.map(line => line.split(';')[0])
.map(line =>
line.split(' ')
.filter(x => !!x.length)
.map(c => String.fromCodePoint(parseInt(c, 16)))
.join('')
);
export const countGraphemes = str => {
let count = 0;
for (const each of grapheme_iterator(str)) count++;
return count;
}
const n_tests = testData.length;
const valuefails = [];
const countfails = [];
for (let i in testData) {
const {input, expected} = testData[i];
let [...results] = grapheme_iterator(input)
const count = countGraphemes(input);
if (count !== expected.length)
countfails.push({casenum: i, result: count, expected: expected.length});
for (let j in results.length > expected.length ? results : expected) {
if(results[j] !== expected[j]) {
valuefails.push({casenum: i, grapheme: j, result: results[j], expected: expected[j]});
break;
}
}
}
if (valuefails.length !== 0)
for (const {casenum, grapheme, expected, result} of valuefails)
console.error (`iterateGraphemes: In case ${casenum}: expected`, expected, `at grapheme ${grapheme} but got`, result, `instead.`);
if (countfails.length !== 0)
for (const {casenum, grapheme, expected, result} of countfails)
console.error (`countGraphemes: In case ${casenum}: expected`, expected, `graphemes but got`, result, `instead.`);
const n_emoji_tests = emojiData.length;
const emojifails = [];
for (let i in emojiData) {
const input = emojiData[i];
let [result] = grapheme_iterator(input)
if (result !== input)
emojifails.push({casenum: i, result: result, expected: input});
}
if (emojifails.length !== 0)
for (const {casenum, grapheme, expected, result} of emojifails)
console.error (`emoji: In case ${casenum}: expected`,
[...expected].map(x => 'U+' + x.codePointAt(0).toString(16).toUpperCase()).join(' '),
`to be one grapheme equal to the test input, but it wasn't.`);
if (valuefails.length === 0 && countfails.length === 0) {
console.log(`All ${n_tests} GraphemeBreakTest cases passed.`)
console.log(`All ${n_emoji_tests} Emoji test cases passed.`)
process.exit(0);
} else {
console.error(`iterateGraphemes: ${valuefails.length} of ${n_tests} failed.`)
console.error(`countGraphemes: ${countfails.length} of ${n_tests} failed.`)
process.exit(1);
}