UNPKG

@dcxp/root

Version:

DCX: Decentralized Credential Exchange. DWN protocol for verifiable credential exchange.

34 lines (29 loc) 1.38 kB
import { LevelStore } from '@web5/common'; import { expect } from 'chai'; import { DcxIdentityVault, FileSystem } from '../src/index.js'; describe('DcxIdentityVault class', () => { const location = '__TEST_DATA__/DCX_COMMON/AGENT/DATASTORE'; after(async () => { await FileSystem.rm('__TEST_DATA__', { recursive: true, force: true }); }); describe('takes two constructor arguments', () => { it('should initialize successfully with default IdentityVaultParams', () => { const defaultVault = new DcxIdentityVault(); expect(defaultVault).to.not.be.null.and.not.be.undefined; expect(defaultVault).to.be.instanceof(DcxIdentityVault); }); it('should initialize successfully with default IdentityVaultParams', () => { const levelVault = new DcxIdentityVault({ store: new LevelStore({ location }) }); expect(levelVault).to.not.be.null.and.not.be.undefined; expect(levelVault).to.be.instanceof(DcxIdentityVault); }); it('should initialize successfully with custom IdentityVaultParams', () => { const customAgentVault = new DcxIdentityVault({ keyDerivationWorkFactor : 420_000, store : new LevelStore({ location }), }); expect(customAgentVault).to.not.be.null.and.not.be.undefined; expect(customAgentVault).to.be.instanceof(DcxIdentityVault); }); }); });