blob: 89d39b38ad3922403e03fb49b52fa174cc9a7e44 [file] [log] [blame]
Pascal S. de Kloe4371e092011-03-07 11:11:21 -05001// Copyright 2011 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package fnv
6
7import (
8 "bytes"
9 "encoding/binary"
10 "hash"
11 "testing"
12)
13
Pascal S. de Kloe4371e092011-03-07 11:11:21 -050014type golden struct {
15 sum []byte
16 text string
17}
18
19var golden32 = []golden{
20 {[]byte{0x81, 0x1c, 0x9d, 0xc5}, ""},
21 {[]byte{0x05, 0x0c, 0x5d, 0x7e}, "a"},
22 {[]byte{0x70, 0x77, 0x2d, 0x38}, "ab"},
23 {[]byte{0x43, 0x9c, 0x2f, 0x4b}, "abc"},
24}
25
26var golden32a = []golden{
27 {[]byte{0x81, 0x1c, 0x9d, 0xc5}, ""},
28 {[]byte{0xe4, 0x0c, 0x29, 0x2c}, "a"},
29 {[]byte{0x4d, 0x25, 0x05, 0xca}, "ab"},
30 {[]byte{0x1a, 0x47, 0xe9, 0x0b}, "abc"},
31}
32
33var golden64 = []golden{
34 {[]byte{0xcb, 0xf2, 0x9c, 0xe4, 0x84, 0x22, 0x23, 0x25}, ""},
35 {[]byte{0xaf, 0x63, 0xbd, 0x4c, 0x86, 0x01, 0xb7, 0xbe}, "a"},
36 {[]byte{0x08, 0x32, 0x67, 0x07, 0xb4, 0xeb, 0x37, 0xb8}, "ab"},
37 {[]byte{0xd8, 0xdc, 0xca, 0x18, 0x6b, 0xaf, 0xad, 0xcb}, "abc"},
38}
39
40var golden64a = []golden{
41 {[]byte{0xcb, 0xf2, 0x9c, 0xe4, 0x84, 0x22, 0x23, 0x25}, ""},
42 {[]byte{0xaf, 0x63, 0xdc, 0x4c, 0x86, 0x01, 0xec, 0x8c}, "a"},
43 {[]byte{0x08, 0x9c, 0x44, 0x07, 0xb5, 0x45, 0x98, 0x6a}, "ab"},
44 {[]byte{0xe7, 0x1f, 0xa2, 0x19, 0x05, 0x41, 0x57, 0x4b}, "abc"},
45}
46
47func TestGolden32(t *testing.T) {
48 testGolden(t, New32(), golden32)
49}
50
51func TestGolden32a(t *testing.T) {
52 testGolden(t, New32a(), golden32a)
53}
54
55func TestGolden64(t *testing.T) {
56 testGolden(t, New64(), golden64)
57}
58
59func TestGolden64a(t *testing.T) {
60 testGolden(t, New64a(), golden64a)
61}
62
63func testGolden(t *testing.T, hash hash.Hash, gold []golden) {
64 for _, g := range gold {
65 hash.Reset()
66 done, error := hash.Write([]byte(g.text))
67 if error != nil {
68 t.Fatalf("write error: %s", error)
69 }
70 if done != len(g.text) {
71 t.Fatalf("wrote only %d out of %d bytes", done, len(g.text))
72 }
Adam Langleybac7bc52011-12-01 12:35:37 -050073 if actual := hash.Sum(nil); !bytes.Equal(g.sum, actual) {
Pascal S. de Kloe4371e092011-03-07 11:11:21 -050074 t.Errorf("hash(%q) = 0x%x want 0x%x", g.text, actual, g.sum)
75 }
76 }
77}
78
79func TestIntegrity32(t *testing.T) {
80 testIntegrity(t, New32())
81}
82
83func TestIntegrity32a(t *testing.T) {
84 testIntegrity(t, New32a())
85}
86
87func TestIntegrity64(t *testing.T) {
88 testIntegrity(t, New64())
89}
90
91func TestIntegrity64a(t *testing.T) {
92 testIntegrity(t, New64a())
93}
94
95func testIntegrity(t *testing.T, h hash.Hash) {
96 data := []byte{'1', '2', 3, 4, 5}
97 h.Write(data)
Adam Langleybac7bc52011-12-01 12:35:37 -050098 sum := h.Sum(nil)
Pascal S. de Kloe4371e092011-03-07 11:11:21 -050099
100 if size := h.Size(); size != len(sum) {
101 t.Fatalf("Size()=%d but len(Sum())=%d", size, len(sum))
102 }
103
Adam Langleybac7bc52011-12-01 12:35:37 -0500104 if a := h.Sum(nil); !bytes.Equal(sum, a) {
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500105 t.Fatalf("first Sum()=0x%x, second Sum()=0x%x", sum, a)
106 }
107
108 h.Reset()
109 h.Write(data)
Adam Langleybac7bc52011-12-01 12:35:37 -0500110 if a := h.Sum(nil); !bytes.Equal(sum, a) {
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500111 t.Fatalf("Sum()=0x%x, but after Reset() Sum()=0x%x", sum, a)
112 }
113
114 h.Reset()
115 h.Write(data[:2])
116 h.Write(data[2:])
Adam Langleybac7bc52011-12-01 12:35:37 -0500117 if a := h.Sum(nil); !bytes.Equal(sum, a) {
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500118 t.Fatalf("Sum()=0x%x, but with partial writes, Sum()=0x%x", sum, a)
119 }
120
121 switch h.Size() {
122 case 4:
123 sum32 := h.(hash.Hash32).Sum32()
124 if sum32 != binary.BigEndian.Uint32(sum) {
125 t.Fatalf("Sum()=0x%x, but Sum32()=0x%x", sum, sum32)
126 }
127 case 8:
128 sum64 := h.(hash.Hash64).Sum64()
129 if sum64 != binary.BigEndian.Uint64(sum) {
130 t.Fatalf("Sum()=0x%x, but Sum64()=0x%x", sum, sum64)
131 }
132 }
133}
134
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400135func BenchmarkFnv32KB(b *testing.B) {
136 benchmarkKB(b, New32())
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500137}
138
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400139func BenchmarkFnv32aKB(b *testing.B) {
140 benchmarkKB(b, New32a())
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500141}
142
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400143func BenchmarkFnv64KB(b *testing.B) {
144 benchmarkKB(b, New64())
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500145}
146
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400147func BenchmarkFnv64aKB(b *testing.B) {
148 benchmarkKB(b, New64a())
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500149}
150
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400151func benchmarkKB(b *testing.B, h hash.Hash) {
152 b.SetBytes(1024)
153 data := make([]byte, 1024)
Robert Griesemera2e28682011-04-13 15:13:59 -0700154 for i := range data {
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400155 data[i] = byte(i)
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500156 }
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400157 in := make([]byte, 0, h.Size())
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500158
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400159 b.ResetTimer()
160 for i := 0; i < b.N; i++ {
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500161 h.Reset()
162 h.Write(data)
Pascal S. de Kloe9feddd0b2012-04-10 15:15:39 -0400163 h.Sum(in)
Pascal S. de Kloe4371e092011-03-07 11:11:21 -0500164 }
165}