-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
81 lines (68 loc) · 1.39 KB
/
main_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
package main
import (
"strings"
"testing"
"golang.org/x/exp/maps"
"golang.org/x/exp/slices"
)
func TestLineFreq(t *testing.T) {
cases := []struct {
in string
want map[string]int
}{
{"", map[string]int{}},
{"a", map[string]int{"a": 1}},
{"a\nb", map[string]int{"a": 1, "b": 1}},
{"a b\nc", map[string]int{"a b": 1, "c": 1}},
{"a\n", map[string]int{"a": 1}},
}
for _, c := range cases {
got := LineFreq(strings.NewReader(c.in))
if !maps.Equal(got, c.want) {
t.Errorf("LineFreq(%q) == %v, want %v", c.in, got, c.want)
}
}
}
func TestByteFreq(t *testing.T) {
}
func TestRuneFreq(t *testing.T) {
}
func TestSortedEntries_Line(t *testing.T) {
cases := []struct {
in map[string]int
want []Entry[string]
}{
{
map[string]int{},
[]Entry[string]{},
},
{
map[string]int{"a": 1},
[]Entry[string]{{"a", 1}},
},
{
map[string]int{"a": 1, "b": 2},
[]Entry[string]{{"b", 2}, {"a", 1}},
},
}
for _, c := range cases {
got := SortedEntries(c.in)
if !slices.Equal(got, c.want) {
t.Errorf("ToEntries(%v) == %v, want %v", c.in, got, c.want)
}
}
}
func TestSortedEntries_Byte(t *testing.T) {
}
func TestSortedEntries_Rune(t *testing.T) {
}
func FuzzLineFreq_TooManyKeys(f *testing.F) {
f.Add("foo")
f.Fuzz(func(t *testing.T, s string) {
r := strings.NewReader(s)
m := LineFreq(r)
if len(m) > len(s) {
t.Error("too many keys")
}
})
}