-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathall_test.go
54 lines (48 loc) · 1.47 KB
/
all_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
package slhdsa
import (
"crypto/rand"
"flag"
"testing"
)
// RunLongTest indicates whether long tests should be run.
var RunLongTest = flag.Bool("long", false, "runs longer tests and benchmark")
func SkipLongTest(t testing.TB) {
t.Helper()
if !*RunLongTest {
t.Skip("Skipped one long test, add -long flag to run longer tests")
}
}
func InnerTest(t *testing.T, sigIDs []ID) {
SkipLongTest(t)
for _, id := range sigIDs {
param := id.params()
t.Run(id.String(), func(t *testing.T) {
t.Run("Wots", func(t *testing.T) { testWotsPlus(t, param) })
t.Run("Xmss", func(t *testing.T) { testXmss(t, param) })
t.Run("Ht", func(tt *testing.T) { testHyperTree(t, param) })
t.Run("Fors", func(tt *testing.T) { testFors(t, param) })
t.Run("Int", func(tt *testing.T) { testInternal(t, param) })
})
}
}
func BenchInner(b *testing.B, sigIDs []ID) {
SkipLongTest(b)
for _, id := range sigIDs {
param := id.params()
b.Run(param.name, func(b *testing.B) {
b.Run("Wots", func(b *testing.B) { benchmarkWotsPlus(b, param) })
b.Run("Xmss", func(b *testing.B) { benchmarkXmss(b, param) })
b.Run("Ht", func(b *testing.B) { benchmarkHyperTree(b, param) })
b.Run("Fors", func(b *testing.B) { benchmarkFors(b, param) })
b.Run("Int", func(b *testing.B) { benchmarkInternal(b, param) })
})
}
}
func mustRead(t testing.TB, size uint32) (out []byte) {
out = make([]byte, size)
_, err := rand.Read(out)
if err != nil {
t.Fatalf("rand reader error: %v", err)
}
return
}