-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wirte workspaces tests and fix some bugs
- Loading branch information
Showing
5 changed files
with
2,331 additions
and
1,502 deletions.
There are no files selected for viewing
233 changes: 233 additions & 0 deletions
233
examples/lockable-fungible-token/__tests__/test-lockable-fungible-token.ava.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
import { Worker } from 'near-workspaces'; | ||
import { readFile } from 'fs/promises' | ||
import test from 'ava'; | ||
|
||
function encodeCall(contract, method, args) { | ||
return Buffer.concat([Buffer.from(contract), Buffer.from([0]), Buffer.from(method), Buffer.from([0]), Buffer.from(JSON.stringify(args))]) | ||
} | ||
|
||
test.beforeEach(async t => { | ||
// Init the worker and start a Sandbox server | ||
const worker = await Worker.init(); | ||
|
||
// Prepare sandbox for tests, create accounts, deploy contracts, etx. | ||
const root = worker.rootAccount; | ||
|
||
// Deploy the jsvm contract. | ||
const jsvm = await root.createAndDeploy( | ||
root.getSubAccount('jsvm').accountId, | ||
'./node_modules/near-sdk-js/res/jsvm.wasm', | ||
); | ||
|
||
// Deploy status-message JS contract | ||
const lockableFt = await root.createSubAccount('status-message'); | ||
let contract_base64 = (await readFile('build/contract.base64')).toString(); | ||
await lockableFt.call(jsvm, 'deploy_js_contract', Buffer.from(contract_base64, 'base64'), { attachedDeposit: '1000000000000000000000000' }); | ||
await lockableFt.call(jsvm, 'call_js_contract', encodeCall(lockableFt.accountId, 'init', ['prefix', 10000]), { attachedDeposit: '1000000000000000000000000' }); | ||
|
||
// Test users | ||
const ali = await root.createSubAccount('ali'); | ||
const bob = await root.createSubAccount('bob'); | ||
|
||
// Save state for test runs | ||
t.context.worker = worker; | ||
t.context.accounts = { root, jsvm, lockableFt, ali, bob }; | ||
}); | ||
|
||
test.afterEach(async t => { | ||
await t.context.worker.tearDown().catch(error => { | ||
console.log('Failed to tear down the worker:', error); | ||
}); | ||
}); | ||
|
||
test('Owner initial details', async t => { | ||
const { jsvm, lockableFt } = t.context.accounts; | ||
const totalSupply = await jsvm.view('view_js_contract', encodeCall(lockableFt.accountId, 'getTotalSupply', [])); | ||
t.is(totalSupply, 10000); | ||
const totalBalance = await jsvm.view('view_js_contract', encodeCall(lockableFt.accountId, 'getTotalBalance', [lockableFt.accountId])); | ||
t.is(totalBalance, 10000); | ||
const unlockedBalance = await jsvm.view('view_js_contract', encodeCall(lockableFt.accountId, 'getUnlockedBalance', [lockableFt.accountId])); | ||
t.is(unlockedBalance, 10000); | ||
const allowance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getAllowance', [lockableFt.accountId, lockableFt.accountId]) | ||
); | ||
t.is(allowance, 0); | ||
const lockedBalance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getLockedBalance', [lockableFt.accountId, lockableFt.accountId]) | ||
); | ||
t.is(lockedBalance, 0); | ||
}); | ||
|
||
test('Set allowance', async t => { | ||
const { jsvm, lockableFt, ali } = t.context.accounts; | ||
await lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'setAllowance', [ali.accountId, 100]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
); | ||
const aliAllowance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getAllowance', [lockableFt.accountId, ali.accountId]) | ||
); | ||
t.is(aliAllowance, 100); | ||
const contractAllowance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getAllowance', [lockableFt.accountId, lockableFt.accountId]) | ||
); | ||
t.is(contractAllowance, 0); | ||
}); | ||
|
||
test('Fail to set allowance for oneself', async t => { | ||
const { jsvm, lockableFt } = t.context.accounts; | ||
const error = await t.throwsAsync(() => lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'setAllowance', [lockableFt.accountId, 100]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
)); | ||
t.assert(error.message.includes(`Can't set allowance for yourself`)); | ||
}); | ||
|
||
test('Lock owner', async t => { | ||
const { jsvm, lockableFt, ali } = t.context.accounts; | ||
await lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'lock', [lockableFt.accountId, 100]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
); | ||
const unlockedBalance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getUnlockedBalance', [lockableFt.accountId]) | ||
); | ||
t.is(unlockedBalance, 9900); | ||
const allowance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getAllowance', [lockableFt.accountId, lockableFt.accountId]) | ||
); | ||
t.is(allowance, 0); | ||
const lockedBalance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getLockedBalance', [lockableFt.accountId, lockableFt.accountId]) | ||
); | ||
t.is(lockedBalance, 100); | ||
}); | ||
|
||
test('Lock failures', async t => { | ||
const { jsvm, lockableFt, ali } = t.context.accounts; | ||
const error1 = await t.throwsAsync(() => lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'lock', [lockableFt.accountId, 0]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
)); | ||
t.assert(error1.message.includes(`Can't lock 0 or less tokens`)); | ||
|
||
const error2 = await t.throwsAsync(() => lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'lock', [lockableFt.accountId, 10001]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
)); | ||
t.assert(error2.message.includes(`Not enough unlocked balance`)); | ||
|
||
const error3 = await t.throwsAsync(() => ali.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'lock', [lockableFt.accountId, 10]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
)); | ||
t.assert(error3.message.includes(`Not enough allowance`)); | ||
}); | ||
|
||
test('Unlock owner', async t => { | ||
const { jsvm, lockableFt, ali } = t.context.accounts; | ||
await lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'lock', [lockableFt.accountId, 100]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
); | ||
await lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'unlock', [lockableFt.accountId, 100]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
); | ||
const unlockedBalance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getUnlockedBalance', [lockableFt.accountId]) | ||
); | ||
t.is(unlockedBalance, 10000); | ||
const allowance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getAllowance', [lockableFt.accountId, lockableFt.accountId]) | ||
); | ||
t.is(allowance, 0); | ||
const lockedBalance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getLockedBalance', [lockableFt.accountId, lockableFt.accountId]) | ||
); | ||
t.is(lockedBalance, 0); | ||
}); | ||
|
||
test('Unlock failures', async t => { | ||
const { jsvm, lockableFt } = t.context.accounts; | ||
const error1 = await t.throwsAsync(() => lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'unlock', [lockableFt.accountId, 0]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
)); | ||
t.assert(error1.message.includes(`Can't unlock 0 or less tokens`)); | ||
|
||
const error2 = await t.throwsAsync(() => lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'unlock', [lockableFt.accountId, 1]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
)); | ||
t.assert(error2.message.includes(`Not enough locked tokens`)); | ||
}); | ||
|
||
test('Simple transfer', async t => { | ||
const { jsvm, lockableFt, ali } = t.context.accounts; | ||
await lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'transfer', [ali.accountId, 100]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
); | ||
const ownerUnlockedBalance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getUnlockedBalance', [lockableFt.accountId]) | ||
); | ||
t.is(ownerUnlockedBalance, 9900); | ||
const aliUnlockedBalance = await jsvm.view( | ||
'view_js_contract', | ||
encodeCall(lockableFt.accountId, 'getUnlockedBalance', [ali.accountId]) | ||
); | ||
t.is(aliUnlockedBalance, 100); | ||
}); | ||
|
||
test('Transfer failures', async t => { | ||
const { jsvm, lockableFt, ali } = t.context.accounts; | ||
const error1 = await t.throwsAsync(() => lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'transfer', [ali.accountId, 0]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
)); | ||
t.assert(error1.message.includes(`Can't transfer 0 or less tokens`)); | ||
|
||
const error2 = await t.throwsAsync(() => lockableFt.call( | ||
jsvm, | ||
'call_js_contract', | ||
encodeCall(lockableFt.accountId, 'transfer', [ali.accountId, 10001]), | ||
{ attachedDeposit: '100000000000000000000000' } | ||
)); | ||
t.assert(error2.message.includes(`Not enough unlocked balance`)); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
require('util').inspect.defaultOptions.depth = 5; // Increase AVA's printing depth | ||
|
||
module.exports = { | ||
timeout: '300000', | ||
files: ['**/*.ava.js'], | ||
failWithoutAssertions: false, | ||
extensions: ['js'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.