Source file
src/hash/adler32/adler32_test.go
1
2
3
4
5 package adler32
6
7 import (
8 "encoding"
9 "hash"
10 "internal/testhash"
11 "io"
12 "strings"
13 "testing"
14 )
15
16 func TestHashInterface(t *testing.T) {
17 testhash.TestHash(t, func() hash.Hash { return New() })
18 }
19
20 var golden = []struct {
21 out uint32
22 in string
23 halfState string
24 }{
25 {0x00000001, "", "adl\x01\x00\x00\x00\x01"},
26 {0x00620062, "a", "adl\x01\x00\x00\x00\x01"},
27 {0x012600c4, "ab", "adl\x01\x00b\x00b"},
28 {0x024d0127, "abc", "adl\x01\x00b\x00b"},
29 {0x03d8018b, "abcd", "adl\x01\x01&\x00\xc4"},
30 {0x05c801f0, "abcde", "adl\x01\x01&\x00\xc4"},
31 {0x081e0256, "abcdef", "adl\x01\x02M\x01'"},
32 {0x0adb02bd, "abcdefg", "adl\x01\x02M\x01'"},
33 {0x0e000325, "abcdefgh", "adl\x01\x03\xd8\x01\x8b"},
34 {0x118e038e, "abcdefghi", "adl\x01\x03\xd8\x01\x8b"},
35 {0x158603f8, "abcdefghij", "adl\x01\x05\xc8\x01\xf0"},
36 {0x3f090f02, "Discard medicine more than two years old.", "adl\x01NU\a\x87"},
37 {0x46d81477, "He who has a shady past knows that nice guys finish last.", "adl\x01\x89\x8e\t\xe9"},
38 {0x40ee0ee1, "I wouldn't marry him with a ten foot pole.", "adl\x01R\t\ag"},
39 {0x16661315, "Free! Free!/A trip/to Mars/for 900/empty jars/Burma Shave", "adl\x01\u007f\xbb\t\x10"},
40 {0x5b2e1480, "The days of the digital watch are numbered. -Tom Stoppard", "adl\x01\x99:\n~"},
41 {0x8c3c09ea, "Nepal premier won't resign.", "adl\x01\"\x05\x05\x05"},
42 {0x45ac18fd, "For every action there is an equal and opposite government program.", "adl\x01\xcc\xfa\f\x00"},
43 {0x53c61462, "His money is twice tainted: 'taint yours and 'taint mine.", "adl\x01\x93\xa9\n\b"},
44 {0x7e511e63, "There is no reason for any individual to have a computer in their home. -Ken Olsen, 1977", "adl\x01e\xf5\x10\x14"},
45 {0xe4801a6a, "It's a tiny change to the code and not completely disgusting. - Bob Manchek", "adl\x01\xee\x00\f\xb2"},
46 {0x61b507df, "size: a.out: bad magic", "adl\x01\x1a\xfc\x04\x1d"},
47 {0xb8631171, "The major problem is with sendmail. -Mark Horton", "adl\x01mi\b\xdc"},
48 {0x8b5e1904, "Give me a rock, paper and scissors and I will move the world. CCFestoon", "adl\x01\xe3\n\f\x9f"},
49 {0x7cc6102b, "If the enemy is within range, then so are you.", "adl\x01_\xe0\b\x1e"},
50 {0x700318e7, "It's well we cannot hear the screams/That we create in others' dreams.", "adl\x01ۘ\f\x87"},
51 {0x1e601747, "You remind me of a TV show, but that's all right: I watch it anyway.", "adl\x01\xcc}\v\x83"},
52 {0xb55b0b09, "C is as portable as Stonehedge!!", "adl\x01,^\x05\xad"},
53 {0x39111dd0, "Even if I could be Shakespeare, I think I should still choose to be Faraday. - A. Huxley", "adl\x01M\xd1\x0e\xc8"},
54 {0x91dd304f, "The fugacity of a constituent in a mixture of gases at a given temperature is proportional to its mole fraction. Lewis-Randall Rule", "adl\x01#\xd8\x17\xd7"},
55 {0x2e5d1316, "How can you write a big system without C++? -Paul Glick", "adl\x01\x8fU\n\x0f"},
56 {0xd0201df6, "'Invariant assertions' is the most elegant programming technique! -Tom Szymanski", "adl\x01/\x98\x0e\xc4"},
57 {0x211297c8, strings.Repeat("\xff", 5548) + "8", "adl\x01\x9a\xa6\xcb\xc1"},
58 {0xbaa198c8, strings.Repeat("\xff", 5549) + "9", "adl\x01gu\xcc\xc0"},
59 {0x553499be, strings.Repeat("\xff", 5550) + "0", "adl\x01gu\xcc\xc0"},
60 {0xf0c19abe, strings.Repeat("\xff", 5551) + "1", "adl\x015CͿ"},
61 {0x8d5c9bbe, strings.Repeat("\xff", 5552) + "2", "adl\x015CͿ"},
62 {0x2af69cbe, strings.Repeat("\xff", 5553) + "3", "adl\x01\x04\x10ξ"},
63 {0xc9809dbe, strings.Repeat("\xff", 5554) + "4", "adl\x01\x04\x10ξ"},
64 {0x69189ebe, strings.Repeat("\xff", 5555) + "5", "adl\x01\xd3\xcdϽ"},
65 {0x86af0001, strings.Repeat("\x00", 1e5), "adl\x01\xc3P\x00\x01"},
66 {0x79660b4d, strings.Repeat("a", 1e5), "adl\x01\x81k\x05\xa7"},
67 {0x110588ee, strings.Repeat("ABCDEFGHIJKLMNOPQRSTUVWXYZ", 1e4), "adl\x01e\xd2\xc4p"},
68 }
69
70
71
72 func checksum(p []byte) uint32 {
73 s1, s2 := uint32(1), uint32(0)
74 for _, x := range p {
75 s1 = (s1 + uint32(x)) % mod
76 s2 = (s2 + s1) % mod
77 }
78 return s2<<16 | s1
79 }
80
81 func TestGolden(t *testing.T) {
82 for _, g := range golden {
83 in := g.in
84 if len(in) > 220 {
85 in = in[:100] + "..." + in[len(in)-100:]
86 }
87 p := []byte(g.in)
88 if got := checksum(p); got != g.out {
89 t.Errorf("simple implementation: checksum(%q) = 0x%x want 0x%x", in, got, g.out)
90 continue
91 }
92 if got := Checksum(p); got != g.out {
93 t.Errorf("optimized implementation: Checksum(%q) = 0x%x want 0x%x", in, got, g.out)
94 continue
95 }
96 }
97 }
98
99 func TestGoldenMarshal(t *testing.T) {
100 for _, g := range golden {
101 h := New()
102 h2 := New()
103
104 io.WriteString(h, g.in[:len(g.in)/2])
105
106 state, err := h.(encoding.BinaryMarshaler).MarshalBinary()
107 if err != nil {
108 t.Errorf("could not marshal: %v", err)
109 continue
110 }
111
112 stateAppend, err := h.(encoding.BinaryAppender).AppendBinary(make([]byte, 4, 32))
113 if err != nil {
114 t.Errorf("could not marshal: %v", err)
115 continue
116 }
117 stateAppend = stateAppend[4:]
118
119 if string(state) != g.halfState {
120 t.Errorf("checksum(%q) state = %q, want %q", g.in, state, g.halfState)
121 continue
122 }
123
124 if string(stateAppend) != g.halfState {
125 t.Errorf("checksum(%q) state = %q, want %q", g.in, stateAppend, g.halfState)
126 continue
127 }
128
129 if err := h2.(encoding.BinaryUnmarshaler).UnmarshalBinary(state); err != nil {
130 t.Errorf("could not unmarshal: %v", err)
131 continue
132 }
133
134 io.WriteString(h, g.in[len(g.in)/2:])
135 io.WriteString(h2, g.in[len(g.in)/2:])
136
137 if h.Sum32() != h2.Sum32() {
138 t.Errorf("checksum(%q) = 0x%x != marshaled (0x%x)", g.in, h.Sum32(), h2.Sum32())
139 }
140 }
141 }
142
143 func BenchmarkAdler32KB(b *testing.B) {
144 b.SetBytes(1024)
145 data := make([]byte, 1024)
146 for i := range data {
147 data[i] = byte(i)
148 }
149 h := New()
150 in := make([]byte, 0, h.Size())
151
152 b.ResetTimer()
153 for i := 0; i < b.N; i++ {
154 h.Reset()
155 h.Write(data)
156 h.Sum(in)
157 }
158 }
159
View as plain text