You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.7 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. const chai = require("chai");
  2. const path = require("path");
  3. var blake2b = require("blake2b");
  4. const bigInt = require("big-integer");
  5. const tester = require("circom").tester;
  6. const poseidon = require("../src/poseidon.js");
  7. const assert = chai.assert;
  8. describe("Blake2b version test", function() {
  9. it("Should give the expected output for blake2b version", async () => {
  10. var output = new Uint8Array(32);
  11. var input = Buffer.from("poseidon_constants");
  12. const h = blake2b(output.length).update(input).digest("hex");
  13. assert.equal("e57ba154fb2c47811dc1a2369b27e25a44915b4e4ece4eb8ec74850cb78e01b1", h);
  14. });
  15. });
  16. describe("Poseidon Circuit test", function () {
  17. let circuit6;
  18. let circuit3;
  19. this.timeout(100000);
  20. before( async () => {
  21. circuit6 = await tester(path.join(__dirname, "circuits", "poseidon6_test.circom"));
  22. circuit3 = await tester(path.join(__dirname, "circuits", "poseidon3_test.circom"));
  23. });
  24. it("Should check constrain of hash([1, 2]) t=6", async () => {
  25. const w = await circuit6.calculateWitness({inputs: [1, 2]}, true);
  26. const hash = poseidon.createHash(6, 8, 57);
  27. const res2 = hash([1,2]);
  28. assert.equal("12242166908188651009877250812424843524687801523336557272219921456462821518061", res2.toString());
  29. await circuit6.assertOut(w, {out : res2});
  30. await circuit6.checkConstraints(w);
  31. });
  32. it("Should check constrain of hash([3, 4]) t=6", async () => {
  33. const w = await circuit6.calculateWitness({inputs: [3, 4]});
  34. const hash = poseidon.createHash(6, 8, 57);
  35. const res2 = hash([3, 4]);
  36. assert.equal("17185195740979599334254027721507328033796809509313949281114643312710535000993", res2.toString());
  37. await circuit6.assertOut(w, {out : res2});
  38. await circuit6.checkConstraints(w);
  39. });
  40. it("Should check constrain of hash([1, 2]) t=3", async () => {
  41. const w = await circuit3.calculateWitness({inputs: [1, 2]});
  42. const hash = poseidon.createHash(3, 8, 57);
  43. const res2 = hash([1,2]);
  44. assert.equal("2104035019328376391822106787753454168168617545136592089411833517434990977743", res2.toString());
  45. await circuit3.assertOut(w, {out : res2});
  46. await circuit3.checkConstraints(w);
  47. });
  48. it("Should check constrain of hash([3, 4]) t=3", async () => {
  49. const w = await circuit3.calculateWitness({inputs: [3, 4]});
  50. const hash = poseidon.createHash(3, 8, 57);
  51. const res2 = hash([3, 4]);
  52. assert.equal("12456141564250880945411182508630957604732712316993112736876413121277158512223", res2.toString());
  53. await circuit3.assertOut(w, {out : res2});
  54. await circuit3.checkConstraints(w);
  55. });
  56. });