-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcircuits.test.ts
295 lines (278 loc) · 7.64 KB
/
circuits.test.ts
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
const path = require("path");
const { F1Field, Scalar } = require("ffjavascript");
exports.p = Scalar.fromString(
"21888242871839275222246405745257275088548364400416034343698204186575808495617"
);
const Fr = new F1Field(exports.p);
const wasmTester = require("circom_tester").wasm;
const circuitMap = require("../src/Maze/circuitMap");
const flatMaze = circuitMap.flat();
describe("Circuit tests", () => {
test("Maze map circuit works", async () => {
const file = path.resolve(__dirname, "./fixtures/Maze.circom");
const circuit = await wasmTester(file);
const witness = await circuit.calculateWitness({}, true);
const outputs = witness.slice(1, 49);
outputs.forEach((output, i) => {
expect(Fr.eq(Fr.e(flatMaze[i]), output)).toBe(true);
});
});
test("AssertNoTeleport", async () => {
const file = path.resolve(__dirname, "./fixtures/AssertNoTeleport.circom");
const circuit = await wasmTester(file);
const VALID = 1;
const INVALID = 0;
{
// North
const witness = await circuit.calculateWitness(
{ direction: 0, enabled: 1 },
true
);
expect(Fr.eq(Fr.e(VALID), witness[1])).toBe(true);
}
{
// East
const witness = await circuit.calculateWitness(
{ direction: 1, enabled: 1 },
true
);
expect(Fr.eq(Fr.e(VALID), witness[1])).toBe(true);
}
{
// South
const witness = await circuit.calculateWitness(
{ direction: 2, enabled: 1 },
true
);
expect(Fr.eq(Fr.e(VALID), witness[1])).toBe(true);
}
{
// West
const witness = await circuit.calculateWitness(
{ direction: 3, enabled: 1 },
true
);
expect(Fr.eq(Fr.e(VALID), witness[1])).toBe(true);
}
{
// Fail
const witness = await circuit.calculateWitness(
{ direction: 100, enabled: 0 },
true
);
expect(Fr.eq(Fr.e(INVALID), witness[1])).toBe(true);
}
{
// Fail hard
try {
await circuit.calculateWitness({ direction: 100, enabled: 1 }, true);
} catch (e) {
expect(true).toBe(true);
}
}
});
test("Direction circuit works", async () => {
const file = path.resolve(
__dirname,
"./fixtures/GetDirectionForMove.circom"
);
const circuit = await wasmTester(file);
{
// North
const witness = await circuit.calculateWitness(
{ x1: 1, x2: 1, y1: 4, y2: 3 }, // User enters or exits tile 10 from top
true
);
expect(Fr.eq(Fr.e(0), witness[1])).toBe(true);
}
{
// East
const witness = await circuit.calculateWitness(
{ x1: 1, x2: 2, y1: 3, y2: 3 }, // User enters or exits tile 10 from top
true
);
expect(Fr.eq(Fr.e(1), witness[1])).toBe(true);
}
{
// South
const witness = await circuit.calculateWitness(
{ x1: 1, x2: 1, y1: 3, y2: 4 }, // User enters or exits tile 10 from top
true
);
expect(Fr.eq(Fr.e(2), witness[1])).toBe(true);
}
{
// West
const witness = await circuit.calculateWitness(
{ x1: 2, x2: 1, y1: 3, y2: 3 }, // User enters or exits tile 10 from top
true
);
expect(Fr.eq(Fr.e(3), witness[1])).toBe(true);
}
});
test("TileCodeFromCoords circuit works", async () => {
const file = path.resolve(
__dirname,
"./fixtures/TileCodeFromCoords.circom"
);
const circuit = await wasmTester(file);
const promises = [];
circuitMap.forEach((row, y) => {
row.forEach((tile, x) => {
promises.push(async () => {
const witness = await circuit.calculateWitness({
x: Fr.e(x),
y: Fr.e(y),
});
const output = witness[1];
expect(Fr.eq(Fr.e(tile), output)).toBe(true);
});
});
});
await Promise.all(promises);
});
test("IsTileOpenForSide circuit works", async () => {
const file = path.resolve(__dirname, "./fixtures/IsTileOpenForSide.circom");
const circuit = await wasmTester(file);
{
const witness = await circuit.calculateWitness(
{ tileCode: 9, side: 1 }, // User enters or exits tile 10 from top
true
);
expect(Fr.eq(Fr.e(1), witness[1])).toBe(true);
}
{
const witness = await circuit.calculateWitness(
{ tileCode: 9, side: 3 },
true
);
expect(Fr.eq(Fr.e(0), witness[1])).toBe(true);
}
{
const witness = await circuit.calculateWitness(
{ tileCode: 5, side: 3 },
true
);
expect(Fr.eq(Fr.e(0), witness[1])).toBe(true);
}
{
const witness = await circuit.calculateWitness(
{ tileCode: 6, side: 2 },
true
);
expect(Fr.eq(Fr.e(1), witness[1])).toBe(true);
}
});
test("Game circuit works", async () => {
const file = path.resolve(__dirname, "circuit.circom");
const circuit = await wasmTester(file);
const VALID = 1;
const MAX_MOVES = 200;
const OUT_OF_RANGE = [100, 100];
// Valid and complete
{
const moves = Array(MAX_MOVES).fill(OUT_OF_RANGE); // Sparse array of moves
[
[0, 0],
[0, 1],
[1, 1],
[1, 2],
[0, 2],
[0, 3],
[1, 3],
[2, 3],
[2, 4],
[3, 4],
[3, 3],
[3, 2],
[3, 1],
[4, 1],
[4, 0],
[5, 0],
[6, 0],
[6, 1],
[6, 2],
[6, 3],
[5, 3],
[5, 4],
[5, 5],
].forEach((move, index) => {
moves[index] = move;
});
const witness = await circuit.calculateWitness({ moves }, true);
const movesOk = witness[1];
const reachedEnd = witness[2];
expect(Fr.eq(Fr.e(VALID), movesOk)).toBe(true);
expect(Fr.eq(Fr.e(VALID), reachedEnd)).toBe(true);
}
// Valid and complete but walked back a step
{
const moves = Array(MAX_MOVES).fill(OUT_OF_RANGE); // Sparse array of moves
[
[0, 0],
[0, 1],
[1, 1],
[1, 2],
[0, 2],
[0, 3],
[1, 3],
[2, 3],
[2, 4],
[3, 4],
[3, 3],
[3, 2],
[3, 1],
[4, 1],
[4, 0],
[5, 0],
[6, 0],
[6, 1],
[6, 2],
[6, 3],
[5, 3],
[5, 4],
[5, 5],
[5, 4],
].forEach((move, index) => {
moves[index] = move;
});
const witness = await circuit.calculateWitness({ moves }, true);
const movesOk = witness[1];
const reachedEnd = witness[2];
expect(Fr.eq(Fr.e(VALID), movesOk)).toBe(true);
expect(Fr.eq(Fr.e(VALID), reachedEnd)).toBe(false);
}
// Invalid and incomplete
{
const moves = Array(MAX_MOVES).fill(OUT_OF_RANGE); // Sparse array of moves
[
[0, 0],
[0, 1],
[1, 1],
[2, 1],
].forEach((move, index) => {
moves[index] = move;
});
const witness = await circuit.calculateWitness({ moves }, true);
const movesOk = witness[1];
const reachedEnd = witness[2];
expect(Fr.eq(Fr.e(VALID), movesOk)).toBe(false);
expect(Fr.eq(Fr.e(VALID), reachedEnd)).toBe(false);
}
// Tried starting at the end
{
const moves = Array(MAX_MOVES).fill(OUT_OF_RANGE); // Sparse array of moves
[
[5, 4],
[5, 5],
].forEach((move, index) => {
moves[index] = move;
});
const witness = await circuit.calculateWitness({ moves }, true);
const movesOk = witness[1];
const reachedEnd = witness[2];
expect(Fr.eq(Fr.e(VALID), movesOk)).toBe(false);
expect(Fr.eq(Fr.e(VALID), reachedEnd)).toBe(true);
}
});
});