1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/ocean/utils/SignatureUtils.test.ts

74 lines
2.0 KiB
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import { assert, expect, spy, use } from 'chai'
2019-11-07 12:24:55 +01:00
import * as spies from 'chai-spies'
2019-06-20 00:20:09 +02:00
import config from '../../config'
2019-06-20 00:20:09 +02:00
import { Ocean } from '../../../src/ocean/Ocean'
2019-02-04 18:13:54 +01:00
use(spies)
2019-06-20 00:20:09 +02:00
describe('SignatureUtils', () => {
const publicKey = `0x${'a'.repeat(40)}`
const text = '0123456789abcde'
const signature = `0x${'a'.repeat(130)}`
let web3
let ocean: Ocean
before(async () => {
ocean = await Ocean.getInstance(config)
web3 = (ocean as any).web3
})
2019-02-04 16:26:56 +01:00
afterEach(() => {
spy.restore()
})
2019-06-20 00:20:09 +02:00
describe('#signText', () => {
let personalSignSpy
beforeEach(() => {
2019-06-20 00:20:09 +02:00
personalSignSpy = spy.on(web3.eth.personal, 'sign', () => signature)
})
2019-06-20 00:20:09 +02:00
it('should sign a text as expected', async () => {
const signed = await ocean.utils.signature.signText(text, publicKey)
assert.equal(signed, signature)
expect(personalSignSpy).to.have.been.called.with(text, publicKey)
})
2019-06-20 00:20:09 +02:00
it('should sign a text as expected using password', async () => {
const signed = await ocean.utils.signature.signText(
text,
publicKey,
'test'
)
assert.equal(signed, signature)
2019-06-20 00:20:09 +02:00
expect(personalSignSpy).to.have.been.called.with(
text,
publicKey,
'test'
)
})
})
2019-06-20 00:20:09 +02:00
describe('#verifyText', () => {
it('should recover the privateKey of a signed message', async () => {
const personalRecoverSpy = spy.on(
web3.eth.personal,
'ecRecover',
() => publicKey
)
const verifiedPublicKey = await ocean.utils.signature.verifyText(
text,
signature
)
assert.equal(publicKey, verifiedPublicKey)
expect(personalRecoverSpy).to.have.been.called.with(text, signature)
})
})
})