1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/utils/SignatureHelpers.test.ts
2019-03-25 15:21:23 +01:00

54 lines
1.6 KiB
TypeScript

import { assert, expect, spy, use } from "chai"
import * as spies from "chai-spies"
import Web3Provider from "../../src/keeper/Web3Provider"
import { signText, verifyText } from "../../src/utils/SignatureHelpers"
use(spies)
describe("SignatureHelpers", () => {
const publicKey = `0x${"a".repeat(40)}`
const text = "0123456789abcde"
const signature = `0x${"a".repeat(130)}`
let web3
afterEach(() => {
spy.restore()
})
describe("#signText", () => {
let personalSignSpy
beforeEach(() => {
web3 = Web3Provider.getWeb3()
personalSignSpy = spy.on(web3.eth.personal, "sign", () => signature)
})
it("should sign a text as expected", async () => {
const signed = await signText(web3, text, publicKey)
assert.equal(signed, signature)
expect(personalSignSpy).to.have.been.called.with(text, publicKey)
})
it("should sign a text as expected using password", async () => {
const signed = await signText(web3, text, publicKey, "test")
assert.equal(signed, signature)
expect(personalSignSpy).to.have.been.called.with(text, publicKey, "test")
})
})
describe("#verifyText", () => {
it("should recover the privateKey of a signed message", async () => {
const personalRecoverSpy = spy.on(web3.eth.personal, "ecRecover", () => publicKey)
const verifiedPublicKey = await verifyText(web3, text, signature)
assert.equal(publicKey, verifiedPublicKey)
expect(personalRecoverSpy).to.have.been.called.with(text, signature)
})
})
})