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/OceanSecretStore.test.ts

40 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import { assert, expect, spy, use } from 'chai'
2019-11-11 12:27:18 +01:00
import spies from 'chai-spies'
2019-02-14 11:26:12 +01:00
2019-06-20 00:20:09 +02:00
import Account from '../../src/ocean/Account'
import { Ocean } from '../../src/ocean/Ocean'
import { OceanSecretStore } from '../../src/ocean/OceanSecretStore'
import config from '../config'
2019-02-14 11:26:12 +01:00
use(spies)
2019-06-20 00:20:09 +02:00
describe('OceanSecretStore', () => {
2019-02-14 11:26:12 +01:00
let oceanSecretStore: OceanSecretStore
let accounts: Account[]
let ocean: Ocean
2019-06-20 00:20:09 +02:00
const did = 'a'.repeat(64)
2019-02-14 11:26:12 +01:00
before(async () => {
ocean = await Ocean.getInstance(config)
oceanSecretStore = ocean.secretStore
accounts = await ocean.accounts.list()
2019-02-14 11:26:12 +01:00
})
afterEach(() => {
spy.restore()
})
2019-06-20 00:20:09 +02:00
describe('#encrypt()', () => {
it('should encrypt a content', async () => {
2019-09-09 12:18:54 +02:00
const secretStoreEncryptSpy = spy.on(ocean.brizo, 'encrypt', () => 'encryptedResult')
const result = await oceanSecretStore.encrypt(did, 'test', accounts[0])
2019-02-14 11:26:12 +01:00
2019-06-20 00:20:09 +02:00
expect(secretStoreEncryptSpy).to.have.been.called.with(did, 'test')
2019-02-14 11:26:12 +01:00
2019-06-20 00:20:09 +02:00
assert.equal(result, 'encryptedResult', "Result doesn't match")
2019-02-14 11:26:12 +01:00
})
})
})