123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- const { assertRevert } = require('../helpers/assertRevert');
- const EIP20Abstraction = artifacts.require('EIP20');
- let HST;
- contract('EIP20', (accounts) => {
- beforeEach(async () => {
- HST = await EIP20Abstraction.new(10000, 'Simon Bucks', 1, 'SBX', { from: accounts[0] });
- });
- it('creation: should create an initial balance of 10000 for the creator', async () => {
- const balance = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balance.toNumber(), 10000);
- });
- it('creation: test correct setting of vanity information', async () => {
- const name = await HST.name.call();
- assert.strictEqual(name, 'Simon Bucks');
- const decimals = await HST.decimals.call();
- assert.strictEqual(decimals.toNumber(), 1);
- const symbol = await HST.symbol.call();
- assert.strictEqual(symbol, 'SBX');
- });
- it('creation: should succeed in creating over 2^256 - 1 (max) tokens', async () => {
- // 2^256 - 1
- const HST2 = await EIP20Abstraction.new('115792089237316195423570985008687907853269984665640564039457584007913129639935', 'Simon Bucks', 1, 'SBX', { from: accounts[0] });
- const totalSupply = await HST2.totalSupply();
- const match = totalSupply.equals('1.15792089237316195423570985008687907853269984665640564039457584007913129639935e+77');
- assert(match, 'result is not correct');
- });
- // TRANSERS
- // normal transfers without approvals
- it('transfers: ether transfer should be reversed.', async () => {
- const balanceBefore = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balanceBefore.toNumber(), 10000);
- await assertRevert(new Promise((resolve, reject) => {
- web3.eth.sendTransaction({ from: accounts[0], to: HST.address, value: web3.toWei('10', 'Ether') }, (err, res) => {
- if (err) { reject(err); }
- resolve(res);
- });
- }));
- const balanceAfter = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balanceAfter.toNumber(), 10000);
- });
- it('transfers: should transfer 10000 to accounts[1] with accounts[0] having 10000', async () => {
- await HST.transfer(accounts[1], 10000, { from: accounts[0] });
- const balance = await HST.balanceOf.call(accounts[1]);
- assert.strictEqual(balance.toNumber(), 10000);
- });
- it('transfers: should fail when trying to transfer 10001 to accounts[1] with accounts[0] having 10000', async () => {
- await assertRevert(HST.transfer.call(accounts[1], 10001, { from: accounts[0] }));
- });
- it('transfers: should handle zero-transfers normally', async () => {
- assert(await HST.transfer.call(accounts[1], 0, { from: accounts[0] }), 'zero-transfer has failed');
- });
- // NOTE: testing uint256 wrapping is impossible since you can't supply > 2^256 -1
- // todo: transfer max amounts
- // APPROVALS
- it('approvals: msg.sender should approve 100 to accounts[1]', async () => {
- await HST.approve(accounts[1], 100, { from: accounts[0] });
- const allowance = await HST.allowance.call(accounts[0], accounts[1]);
- assert.strictEqual(allowance.toNumber(), 100);
- });
- // bit overkill. But is for testing a bug
- it('approvals: msg.sender approves accounts[1] of 100 & withdraws 20 once.', async () => {
- const balance0 = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balance0.toNumber(), 10000);
- await HST.approve(accounts[1], 100, { from: accounts[0] }); // 100
- const balance2 = await HST.balanceOf.call(accounts[2]);
- assert.strictEqual(balance2.toNumber(), 0, 'balance2 not correct');
- await HST.transferFrom.call(accounts[0], accounts[2], 20, { from: accounts[1] });
- await HST.allowance.call(accounts[0], accounts[1]);
- await HST.transferFrom(accounts[0], accounts[2], 20, { from: accounts[1] }); // -20
- const allowance01 = await HST.allowance.call(accounts[0], accounts[1]);
- assert.strictEqual(allowance01.toNumber(), 80); // =80
- const balance22 = await HST.balanceOf.call(accounts[2]);
- assert.strictEqual(balance22.toNumber(), 20);
- const balance02 = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balance02.toNumber(), 9980);
- });
- // should approve 100 of msg.sender & withdraw 50, twice. (should succeed)
- it('approvals: msg.sender approves accounts[1] of 100 & withdraws 20 twice.', async () => {
- await HST.approve(accounts[1], 100, { from: accounts[0] });
- const allowance01 = await HST.allowance.call(accounts[0], accounts[1]);
- assert.strictEqual(allowance01.toNumber(), 100);
- await HST.transferFrom(accounts[0], accounts[2], 20, { from: accounts[1] });
- const allowance012 = await HST.allowance.call(accounts[0], accounts[1]);
- assert.strictEqual(allowance012.toNumber(), 80);
- const balance2 = await HST.balanceOf.call(accounts[2]);
- assert.strictEqual(balance2.toNumber(), 20);
- const balance0 = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balance0.toNumber(), 9980);
- // FIRST tx done.
- // onto next.
- await HST.transferFrom(accounts[0], accounts[2], 20, { from: accounts[1] });
- const allowance013 = await HST.allowance.call(accounts[0], accounts[1]);
- assert.strictEqual(allowance013.toNumber(), 60);
- const balance22 = await HST.balanceOf.call(accounts[2]);
- assert.strictEqual(balance22.toNumber(), 40);
- const balance02 = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balance02.toNumber(), 9960);
- });
- // should approve 100 of msg.sender & withdraw 50 & 60 (should fail).
- it('approvals: msg.sender approves accounts[1] of 100 & withdraws 50 & 60 (2nd tx should fail)', async () => {
- await HST.approve(accounts[1], 100, { from: accounts[0] });
- const allowance01 = await HST.allowance.call(accounts[0], accounts[1]);
- assert.strictEqual(allowance01.toNumber(), 100);
- await HST.transferFrom(accounts[0], accounts[2], 50, { from: accounts[1] });
- const allowance012 = await HST.allowance.call(accounts[0], accounts[1]);
- assert.strictEqual(allowance012.toNumber(), 50);
- const balance2 = await HST.balanceOf.call(accounts[2]);
- assert.strictEqual(balance2.toNumber(), 50);
- const balance0 = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balance0.toNumber(), 9950);
- // FIRST tx done.
- // onto next.
- await assertRevert(HST.transferFrom.call(accounts[0], accounts[2], 60, { from: accounts[1] }));
- });
- it('approvals: attempt withdrawal from account with no allowance (should fail)', async () => {
- await assertRevert(HST.transferFrom.call(accounts[0], accounts[2], 60, { from: accounts[1] }));
- });
- it('approvals: allow accounts[1] 100 to withdraw from accounts[0]. Withdraw 60 and then approve 0 & attempt transfer.', async () => {
- await HST.approve(accounts[1], 100, { from: accounts[0] });
- await HST.transferFrom(accounts[0], accounts[2], 60, { from: accounts[1] });
- await HST.approve(accounts[1], 0, { from: accounts[0] });
- await assertRevert(HST.transferFrom.call(accounts[0], accounts[2], 10, { from: accounts[1] }));
- });
- it('approvals: approve max (2^256 - 1)', async () => {
- await HST.approve(accounts[1], '115792089237316195423570985008687907853269984665640564039457584007913129639935', { from: accounts[0] });
- const allowance = await HST.allowance(accounts[0], accounts[1]);
- assert(allowance.equals('1.15792089237316195423570985008687907853269984665640564039457584007913129639935e+77'));
- });
- // should approve max of msg.sender & withdraw 20 without changing allowance (should succeed).
- it('approvals: msg.sender approves accounts[1] of max (2^256 - 1) & withdraws 20', async () => {
- const balance0 = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balance0.toNumber(), 10000);
- const max = '1.15792089237316195423570985008687907853269984665640564039457584007913129639935e+77';
- await HST.approve(accounts[1], max, { from: accounts[0] });
- const balance2 = await HST.balanceOf.call(accounts[2]);
- assert.strictEqual(balance2.toNumber(), 0, 'balance2 not correct');
- await HST.transferFrom(accounts[0], accounts[2], 20, { from: accounts[1] });
- const allowance01 = await HST.allowance.call(accounts[0], accounts[1]);
- assert(allowance01.equals(max));
- const balance22 = await HST.balanceOf.call(accounts[2]);
- assert.strictEqual(balance22.toNumber(), 20);
- const balance02 = await HST.balanceOf.call(accounts[0]);
- assert.strictEqual(balance02.toNumber(), 9980);
- });
- /* eslint-disable no-underscore-dangle */
- it('events: should fire Transfer event properly', async () => {
- const res = await HST.transfer(accounts[1], '2666', { from: accounts[0] });
- const transferLog = res.logs.find(element => element.event.match('Transfer'));
- assert.strictEqual(transferLog.args._from, accounts[0]);
- assert.strictEqual(transferLog.args._to, accounts[1]);
- assert.strictEqual(transferLog.args._value.toString(), '2666');
- });
- it('events: should fire Transfer event normally on a zero transfer', async () => {
- const res = await HST.transfer(accounts[1], '0', { from: accounts[0] });
- const transferLog = res.logs.find(element => element.event.match('Transfer'));
- assert.strictEqual(transferLog.args._from, accounts[0]);
- assert.strictEqual(transferLog.args._to, accounts[1]);
- assert.strictEqual(transferLog.args._value.toString(), '0');
- });
- it('events: should fire Approval event properly', async () => {
- const res = await HST.approve(accounts[1], '2666', { from: accounts[0] });
- const approvalLog = res.logs.find(element => element.event.match('Approval'));
- assert.strictEqual(approvalLog.args._owner, accounts[0]);
- assert.strictEqual(approvalLog.args._spender, accounts[1]);
- assert.strictEqual(approvalLog.args._value.toString(), '2666');
- });
- });
|