|
const chai = require("chai");
|
|
const path = require("path");
|
|
var blake2b = require("blake2b");
|
|
const bigInt = require("big-integer");
|
|
const tester = require("circom").tester;
|
|
|
|
const poseidon = require("../src/poseidon.js");
|
|
|
|
const assert = chai.assert;
|
|
|
|
describe("Blake2b version test", function() {
|
|
it("Should give the expected output for blake2b version", async () => {
|
|
var output = new Uint8Array(32);
|
|
var input = Buffer.from("poseidon_constants");
|
|
const h = blake2b(output.length).update(input).digest("hex");
|
|
assert.equal("e57ba154fb2c47811dc1a2369b27e25a44915b4e4ece4eb8ec74850cb78e01b1", h);
|
|
});
|
|
});
|
|
|
|
describe("Poseidon Circuit test", function () {
|
|
let circuit6;
|
|
let circuit3;
|
|
|
|
this.timeout(100000);
|
|
|
|
before( async () => {
|
|
circuit6 = await tester(path.join(__dirname, "circuits", "poseidon6_test.circom"));
|
|
circuit3 = await tester(path.join(__dirname, "circuits", "poseidon3_test.circom"));
|
|
});
|
|
|
|
it("Should check constrain of hash([1, 2]) t=6", async () => {
|
|
const w = await circuit6.calculateWitness({inputs: [1, 2]}, true);
|
|
|
|
const hash = poseidon.createHash(6, 8, 57);
|
|
|
|
const res2 = hash([1,2]);
|
|
assert.equal("12242166908188651009877250812424843524687801523336557272219921456462821518061", res2.toString());
|
|
await circuit6.assertOut(w, {out : res2});
|
|
await circuit6.checkConstraints(w);
|
|
});
|
|
|
|
it("Should check constrain of hash([3, 4]) t=6", async () => {
|
|
const w = await circuit6.calculateWitness({inputs: [3, 4]});
|
|
|
|
const hash = poseidon.createHash(6, 8, 57);
|
|
|
|
const res2 = hash([3, 4]);
|
|
|
|
assert.equal("17185195740979599334254027721507328033796809509313949281114643312710535000993", res2.toString());
|
|
await circuit6.assertOut(w, {out : res2});
|
|
await circuit6.checkConstraints(w);
|
|
});
|
|
|
|
|
|
it("Should check constrain of hash([1, 2]) t=3", async () => {
|
|
const w = await circuit3.calculateWitness({inputs: [1, 2]});
|
|
|
|
const hash = poseidon.createHash(3, 8, 57);
|
|
|
|
const res2 = hash([1,2]);
|
|
assert.equal("2104035019328376391822106787753454168168617545136592089411833517434990977743", res2.toString());
|
|
await circuit3.assertOut(w, {out : res2});
|
|
await circuit3.checkConstraints(w);
|
|
});
|
|
|
|
it("Should check constrain of hash([3, 4]) t=3", async () => {
|
|
const w = await circuit3.calculateWitness({inputs: [3, 4]});
|
|
|
|
const hash = poseidon.createHash(3, 8, 57);
|
|
|
|
const res2 = hash([3, 4]);
|
|
assert.equal("12456141564250880945411182508630957604732712316993112736876413121277158512223", res2.toString());
|
|
await circuit3.assertOut(w, {out : res2});
|
|
await circuit3.checkConstraints(w);
|
|
});
|
|
});
|