circomlib/test/point2bits.js

26 lines
748 B
JavaScript
Raw Normal View History

const path = require("path");
2019-12-14 22:32:45 +03:00
const tester = require("circom").tester;
const babyJub = require("../src/babyjub.js");
describe("Point 2 bits test", function() {
let circuit;
this.timeout(100000);
before( async() => {
2019-12-14 22:32:45 +03:00
circuit = await tester(path.join(__dirname, "circuits", "pointbits_loopback.circom"));
});
it("Should do the both convertions for 8Base", async () => {
2019-12-14 22:32:45 +03:00
const w = await circuit.calculateWitness({ in: babyJub.Base8});
2019-12-14 22:32:45 +03:00
// TODO
// assert(circuit.checkWitness(w));
});
it("Should do the both convertions for Zero point", async () => {
2019-12-14 22:32:45 +03:00
const w = await circuit.calculateWitness({ in: [0, 1]});
2019-12-14 22:32:45 +03:00
// TODO
// assert(circuit.checkWitness(w));
});
});