forked from Consensys/gnark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assert.go
226 lines (188 loc) · 6.59 KB
/
assert.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
Copyright © 2021 ConsenSys Software Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package test
import (
"errors"
"fmt"
"reflect"
"strings"
"testing"
"github.com/consensys/gnark-crypto/ecc"
"github.com/consensys/gnark/backend"
"github.com/consensys/gnark/backend/witness"
"github.com/consensys/gnark/constraint"
"github.com/consensys/gnark/frontend"
"github.com/consensys/gnark/frontend/cs/r1cs"
"github.com/consensys/gnark/frontend/cs/scs"
"github.com/consensys/gnark/frontend/schema"
gnarkio "github.com/consensys/gnark/io"
"github.com/stretchr/testify/require"
)
var (
ErrCompilationNotDeterministic = errors.New("compilation is not deterministic")
ErrInvalidWitnessSolvedCS = errors.New("invalid witness solved the constraint system")
ErrInvalidWitnessVerified = errors.New("invalid witness resulted in a valid proof")
)
// Assert is a helper to test circuits
type Assert struct {
t *testing.T
*require.Assertions
}
// NewAssert returns an Assert helper embedding a testify/require object for convenience
//
// The Assert object caches the compiled circuit:
//
// the first call to assert.ProverSucceeded/Failed will compile the circuit for n curves, m backends
// and subsequent calls will re-use the result of the compilation, if available.
func NewAssert(t *testing.T) *Assert {
return &Assert{t: t, Assertions: require.New(t)}
}
// Run runs the test function fn as a subtest. The subtest is parametrized by
// the description strings descs.
func (a *Assert) Run(fn func(assert *Assert), descs ...string) {
desc := strings.Join(descs, "/")
a.t.Run(desc, func(t *testing.T) {
assert := &Assert{t, require.New(t)}
fn(assert)
})
}
// Log logs using the test instance logger.
func (assert *Assert) Log(v ...interface{}) {
assert.t.Log(v...)
}
// ProverSucceeded is deprecated: use [Assert.CheckCircuit] instead
func (assert *Assert) ProverSucceeded(circuit frontend.Circuit, validAssignment frontend.Circuit, opts ...TestingOption) {
// copy the options
newOpts := make([]TestingOption, len(opts), len(opts)+2)
copy(newOpts, opts)
newOpts = append(newOpts, WithValidAssignment(validAssignment))
assert.CheckCircuit(circuit, newOpts...)
}
// ProverSucceeded is deprecated use [Assert.CheckCircuit] instead
func (assert *Assert) ProverFailed(circuit frontend.Circuit, invalidAssignment frontend.Circuit, opts ...TestingOption) {
// copy the options
newOpts := make([]TestingOption, len(opts), len(opts)+2)
copy(newOpts, opts)
newOpts = append(newOpts, WithInvalidAssignment(invalidAssignment))
assert.CheckCircuit(circuit, newOpts...)
}
// SolvingSucceeded is deprecated: use [Assert.CheckCircuit] instead
func (assert *Assert) SolvingSucceeded(circuit frontend.Circuit, validWitness frontend.Circuit, opts ...TestingOption) {
// copy the options
newOpts := make([]TestingOption, len(opts), len(opts)+1)
copy(newOpts, opts)
newOpts = append(newOpts, WithValidAssignment(validWitness))
assert.CheckCircuit(circuit, newOpts...)
}
// SolvingFailed is deprecated: use CheckCircuit instead
func (assert *Assert) SolvingFailed(circuit frontend.Circuit, invalidWitness frontend.Circuit, opts ...TestingOption) {
// copy the options
newOpts := make([]TestingOption, len(opts), len(opts)+1)
copy(newOpts, opts)
newOpts = append(newOpts, WithInvalidAssignment(invalidWitness))
assert.CheckCircuit(circuit, newOpts...)
}
func lazySchema(circuit frontend.Circuit) func() *schema.Schema {
return func() *schema.Schema {
// we only parse the schema if we need to display the witness in json.
s, err := schema.New(circuit, tVariable)
if err != nil {
panic("couldn't parse schema from circuit: " + err.Error())
}
return s
}
}
// compile the given circuit for given curve and backend, if not already present in cache
func (assert *Assert) compile(circuit frontend.Circuit, curveID ecc.ID, backendID backend.ID, compileOpts []frontend.CompileOption) (constraint.ConstraintSystem, error) {
var newBuilder frontend.NewBuilder
switch backendID {
case backend.GROTH16:
newBuilder = r1cs.NewBuilder
case backend.PLONK:
newBuilder = scs.NewBuilder
default:
panic("not implemented")
}
// else compile it and ensure it is deterministic
ccs, err := frontend.Compile(curveID.ScalarField(), newBuilder, circuit, compileOpts...)
if err != nil {
return nil, err
}
_ccs, err := frontend.Compile(curveID.ScalarField(), newBuilder, circuit, compileOpts...)
if err != nil {
return nil, fmt.Errorf("%w: %v", ErrCompilationNotDeterministic, err)
}
if !reflect.DeepEqual(ccs, _ccs) {
return nil, ErrCompilationNotDeterministic
}
return ccs, nil
}
// error ensure the error is set, else fails the test
// add a witness to the error message if provided
func (assert *Assert) error(err error, w *_witness) {
if err != nil {
return
}
json := "<nil>"
if w != nil {
bjson, err := w.full.ToJSON(lazySchema(w.assignment)())
if err != nil {
json = err.Error()
} else {
json = string(bjson)
}
}
e := fmt.Errorf("did not error (but should have)\nwitness:%s", json)
assert.FailNow(e.Error())
}
// ensure the error is nil, else fails the test
// add a witness to the error message if provided
func (assert *Assert) noError(err error, w *_witness) {
if err == nil {
return
}
e := err
if w != nil {
var json string
bjson, err := w.full.ToJSON(lazySchema(w.assignment)())
if err != nil {
json = err.Error()
} else {
json = string(bjson)
}
e = fmt.Errorf("%w\nwitness:%s", e, json)
}
assert.FailNow(e.Error())
}
func (assert *Assert) marshalWitnessJSON(w witness.Witness, s *schema.Schema, curveID ecc.ID, publicOnly bool) {
var err error
if publicOnly {
w, err = w.Public()
assert.NoError(err)
}
// serialize the vector to binary
data, err := w.ToJSON(s)
assert.NoError(err)
// re-read
witness, err := witness.New(curveID.ScalarField())
assert.NoError(err)
err = witness.FromJSON(s, data)
assert.NoError(err)
witnessMatch := reflect.DeepEqual(w, witness)
assert.True(witnessMatch, "round trip marshaling failed")
}
func (assert *Assert) roundTripCheck(from any, builder func() any, descs ...string) {
assert.Run(func(assert *Assert) {
assert.NoError(gnarkio.RoundTripCheck(from, builder))
}, descs...)
}