-
Notifications
You must be signed in to change notification settings - Fork 1
/
phonex_test.go
78 lines (75 loc) · 1.59 KB
/
phonex_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
package disfun
import "testing"
// test cases from http://rosettacode.org/wiki/phonex#F.23
var phonextests = []struct {
s1 string
phonex string
}{
{"123 testsss", "T230"},
{"24/7 test", "T230"},
{"A", "A000"},
{"Lee", "L000"},
{"Kuhne", "C500"},
{"Meyer-Lansky", "M452"},
{"Oepping", "A150"},
{"Daley", "D400"},
{"Dalitz", "D432"},
{"Duhlitz", "D432"},
{"Dull", "D400"},
{"De Ledes", "D430"},
{"Sandemann", "S500"},
{"Schüßler", "S460"},
{"Schmidt", "S530"},
{"Sinatra", "S536"},
{"Heinrich", "A562"},
{"Hammerschlag", "A524"},
{"Williams", "W450"},
{"Wilms", "W500"},
{"Wilson", "W250"},
{"Worms", "W500"},
{"Zedlitz", "S343"},
{"Zotteldecke", "S320"},
{"ZYX test", "S232"},
{"Scherman", "S500"},
{"Schurman", "S500"},
{"Sherman", "S500"},
{"Shermansss", "S500"},
{"Shireman", "S650"},
{"Shurman", "S500"},
{"Euler", "A460"},
{"Ellery", "A460"},
{"Hilbert", "A130"},
{"Heilbronn", "A165"},
{"Gauss", "G000"},
{"Ghosh", "G200"},
{"Knuth", "N300"},
{"Kant", "C530"},
{"Lloyd", "L430"},
{"Ladd", "L300"},
{"Lukasiewicz", "L200"},
{"Lissajous", "L200"},
{"Ashcraft", "A261"},
{"Philip", "F410"},
{"Fripp", "F610"},
{"Czarkowska", "C200"},
{"Hornblower", "A514"},
{"Looser", "L260"},
{"Wright", "R230"},
{"Phonic", "F520"},
{"Quickening", "C250"},
{"Kuickening", "C250"},
{"Joben", "G150"},
{"Zelda", "S300"},
{"S", "0000"},
{"H", "0000"},
{"", "0000"},
}
// phonex
func TestPhonex(t *testing.T) {
for _, tt := range phonextests {
phonex := Phonex(tt.s1)
if phonex != tt.phonex {
t.Errorf("Phonex('%s') = %v, want %v", tt.s1, phonex, tt.phonex)
}
}
}