forked from dknopik/towers-of-pau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ceremony_test.go
111 lines (99 loc) · 2.12 KB
/
ceremony_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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package towersofpau
import (
"os"
"testing"
)
func TestCeremonyChecks(t *testing.T) {
file, err := os.Open("initialCeremony.json")
if err != nil {
t.Fatal(err)
}
ceremony, err := Deserialize(file)
if err != nil {
t.Fatal(err)
}
if !SubgroupChecksCoordinator(ceremony) {
t.Fatalf("Subgroup check failed")
}
if !NonZeroCheck(ceremony) {
t.Fatal("NonZero check failed")
}
/*
// TODO enable when better initial ceremony is available
if !PubkeyUniquenessCheck(ceremony) {
t.Fatal("Pubkey uniqueness check failed")
}
*/
if !VerifyPairing(ceremony) {
t.Fatal("Pairing check failed")
}
}
func TestParticipation(t *testing.T) {
file, err := os.Open("initialCeremony.json")
if err != nil {
t.Fatal(err)
}
ceremony, err := Deserialize(file)
if err != nil {
t.Fatal(err)
}
updatedCeremony := ceremony.Copy()
if err := UpdateTranscript(updatedCeremony); err != nil {
t.Fatal(err)
}
if err := VerifySubmission(ceremony, updatedCeremony); err != nil {
t.Fatal(err)
}
}
func BenchmarkVerifyCeremonyPairing(t *testing.B) {
file, err := os.Open("initialCeremony.json")
if err != nil {
t.Fatal(err)
}
ceremony, err := Deserialize(file)
if err != nil {
t.Fatal(err)
}
t.ResetTimer()
if !VerifyPairing(ceremony) {
t.Fatal("Pairing check failed")
}
}
func BenchmarkContribution(t *testing.B) {
file, err := os.Open("initialCeremony.json")
if err != nil {
t.Fatal(err)
}
ceremony, err := Deserialize(file)
if err != nil {
t.Fatal(err)
}
t.ResetTimer()
if err := UpdateTranscript(ceremony); err != nil {
t.Fatal(err)
}
panic("asdf")
}
func BenchmarkPairing(b *testing.B) {
file, err := os.Open("initialCeremony.json")
if err != nil {
b.Fatal(err)
}
ceremony, err := Deserialize(file)
if err != nil {
b.Fatal(err)
}
g1Last := len(ceremony.Transcripts[0].PowersOfTau.G1Powers) - 1
if b.N < g1Last {
g1Last = b.N
}
g2Last := len(ceremony.Transcripts[0].PowersOfTau.G2Powers) - 1
if b.N < g2Last {
g2Last = b.N
}
pot := PowersOfTau{
G1Powers: ceremony.Transcripts[0].PowersOfTau.G1Powers[0:g1Last],
G2Powers: ceremony.Transcripts[0].PowersOfTau.G2Powers[0:g2Last],
}
_ = pot
}