forked from hermanschaaf/cedict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcedict_test.go
121 lines (116 loc) · 4.08 KB
/
cedict_test.go
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
// Copyright 2014 Herman Schaaf. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package cedict
import (
"fmt"
"io"
"reflect"
"strings"
"testing"
)
// The following example demonstrates basic usage of the package. It uses a
// string.Reader as io.Reader, where you would normally use a file.Reader.
func ExampleCEDict() {
dict := `一層 一层 [yi1 ceng2] /layer/
一攬子 一揽子 [yi1 lan3 zi5] /all-inclusive/undiscriminating/`
r := io.Reader(strings.NewReader(dict))
c := New(r)
for {
err := c.NextEntry()
if err != nil {
// you may also compare the error to cedict.NoMoreEntries
// to know whether the end was reached or some other problem
// occurred.
break
}
// get current entry
entry := c.Entry()
// print out some fields
fmt.Printf("%s\t(%s)\t%s\n", entry.Simplified, entry.PinyinWithTones, entry.Definitions[0])
}
// Output:
// 一层 (yīcéng) layer
// 一揽子 (yīlǎnzi) all-inclusive
}
// TestParseEntry tests the parsing of individual entries, and checks that
// the correct fields are entered into the Entry struct.
func TestParseEntry(t *testing.T) {
tests := []struct {
give string
want Entry
}{
{
give: "一之為甚 一之为甚 [yi1 zhi1 wei2 shen4] /Once is enough (idiom)/",
want: Entry{
Simplified: "一之为甚",
Traditional: "一之為甚",
Pinyin: "yi1 zhi1 wei2 shen4",
PinyinWithTones: "yīzhīwéishèn",
PinyinNoTones: "yizhiweishen",
Definitions: []string{"Once is enough (idiom)"},
},
},
{
give: "一壁 一壁 [yi1 bi4] /one side/at the same time/",
want: Entry{
Simplified: "一壁",
Traditional: "一壁",
Pinyin: "yi1 bi4",
PinyinWithTones: "yībì",
PinyinNoTones: "yibi",
Definitions: []string{"one side", "at the same time"},
},
},
}
for _, tt := range tests {
got, err := parseEntry(tt.give)
if err != nil {
t.Fatalf("parseEntry(%q) error: %v", tt.give, err)
}
if !reflect.DeepEqual(*got, tt.want) {
t.Errorf("parseEntry(%q):\ngot\t%v,\nwant\t%v", tt.give, *got, tt.want)
}
}
}
// TestCEDict parses a simple CEDict and puts the parsed values into Entry structs.
// It then confirms that these structs match our expectations.
func TestCEDict(t *testing.T) {
raw := `# CC-CEDICT
# Community maintained free Chinese-English dictionary.
一團火 一团火 [yi1 tuan2 huo3] /fireball/ball of fire/
一團 一团 [yi1 tuan2] /1 regiment/
一層 一层 [yi1 ceng2] /layer/
一攬子 一揽子 [yi1 lan3 zi5] /all-inclusive/undiscriminating/
一東一西 一东一西 [yi1 dong1 yi1 xi1] /far apart/`
want := []Entry{
{Simplified: "一团火", Traditional: "一團火", Pinyin: "yi1 tuan2 huo3", PinyinWithTones: "yītuánhuǒ", PinyinNoTones: "yituanhuo", Definitions: []string{"fireball", "ball of fire"}},
{Simplified: "一团", Traditional: "一團", Pinyin: "yi1 tuan2", PinyinWithTones: "yītuán", PinyinNoTones: "yituan", Definitions: []string{"1 regiment"}},
{Simplified: "一层", Traditional: "一層", Pinyin: "yi1 ceng2", PinyinWithTones: "yīcéng", PinyinNoTones: "yiceng", Definitions: []string{"layer"}},
{Simplified: "一揽子", Traditional: "一攬子", Pinyin: "yi1 lan3 zi5", PinyinWithTones: "yīlǎnzi", PinyinNoTones: "yilanzi", Definitions: []string{"all-inclusive", "undiscriminating"}},
{Simplified: "一东一西", Traditional: "一東一西", Pinyin: "yi1 dong1 yi1 xi1", PinyinWithTones: "yīdōngyīxī", PinyinNoTones: "yidongyixi", Definitions: []string{"far apart"}},
}
r := io.Reader(strings.NewReader(raw))
c := New(r)
entries := []Entry{}
for {
err := c.NextEntry()
if err == NoMoreEntries {
break
} else if err != nil {
t.Fatalf("CEDict.NextEntry() error: %v", err)
break
}
// Process the current entry:
e := c.Entry()
entries = append(entries, *e)
}
if len(entries) != 5 {
t.Fatalf("len(entries): got %d, want %d", len(entries), 5)
}
for i := range entries {
if !reflect.DeepEqual(entries[i], want[i]) {
t.Errorf("CEDict.Entry():\ngot\t%v,\nwant\t%v", entries[i], want[i])
}
}
}