-
Notifications
You must be signed in to change notification settings - Fork 257
/
Copy pathcrc_test.go
73 lines (58 loc) · 1.28 KB
/
crc_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
package crc
import (
"encoding/binary"
"testing"
"time"
crand "crypto/rand"
mrand "math/rand"
)
const (
Trials = 512
)
var crcs = []CRC{
{"IBM", 0, 0x8005, 0, Table{}},
{"BCH", 0, 0x6F63, 0, Table{}},
{"CCITT", 0xFFFF, 0x1021, 0x1D0F, Table{}},
}
func TestIdentity(t *testing.T) {
for _, crc := range crcs {
t.Logf("%+v\n", crc)
crc.tbl = NewTable(crc.Poly)
for trial := 0; trial < Trials; trial++ {
length := mrand.Intn(32)&0xFE + 8
buf := make([]byte, length)
crand.Read(buf[:length-2])
intermediate := crc.Checksum(buf[:length-2])
binary.BigEndian.PutUint16(buf[length-2:], intermediate)
check := crc.Checksum(buf)
if check != 0 {
t.Fatalf("%s failed: %02X %04X %04X\n", crc.Name, buf, intermediate, check)
}
}
}
}
func BenchmarkBCH(b *testing.B) {
input := make([]byte, 16384)
crand.Read(input)
bch := NewCRC("BCH", 0, 0x6F63, 0)
b.SetBytes(16384 >> 3)
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
bch.Checksum(input)
}
}
func BenchmarkCCITT(b *testing.B) {
input := make([]byte, 16384)
crand.Read(input)
ccitt := NewCRC("CCITT", 0xFFFF, 0x1021, 0x1D0F)
b.SetBytes(16384 >> 3)
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
ccitt.Checksum(input)
}
}
func init() {
mrand.Seed(time.Now().UnixNano())
}