Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
openzeppelin-contracts-upgradeable
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
openzeppelin-contracts-upgradeable
Commits
f896790c
Commit
f896790c
authored
Mar 20, 2017
by
Manuel Aráoz
Committed by
GitHub
Mar 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #167 from maraoz/fix-travis
Fix travis build
parents
463ae971
960500a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
15 deletions
+17
-15
StandardToken.js
test/StandardToken.js
+17
-15
No files found.
test/StandardToken.js
View file @
f896790c
'use strict'
;
const
assertJump
=
require
(
'./helpers/assertJump'
);
const
assertJump
=
require
(
'./helpers/assertJump'
);
var
StandardTokenMock
=
artifacts
.
require
(
"./helpers/StandardTokenMock.sol"
);
var
StandardTokenMock
=
artifacts
.
require
(
'./helpers/StandardTokenMock.sol'
);
contract
(
'StandardToken'
,
function
(
accounts
)
{
contract
(
'StandardToken'
,
function
(
accounts
)
{
it
(
"should return the correct totalSupply after construction"
,
async
function
()
{
it
(
'should return the correct totalSupply after construction'
,
async
function
()
{
let
token
=
await
StandardTokenMock
.
new
(
accounts
[
0
],
100
);
let
token
=
await
StandardTokenMock
.
new
(
accounts
[
0
],
100
);
let
totalSupply
=
await
token
.
totalSupply
();
let
totalSupply
=
await
token
.
totalSupply
();
assert
.
equal
(
totalSupply
,
100
);
assert
.
equal
(
totalSupply
,
100
);
})
})
;
it
(
"should return the correct allowance amount after approval"
,
async
function
()
{
it
(
'should return the correct allowance amount after approval'
,
async
function
()
{
let
token
=
await
StandardTokenMock
.
new
();
let
token
=
await
StandardTokenMock
.
new
();
let
approve
=
await
token
.
approve
(
accounts
[
1
],
100
);
await
token
.
approve
(
accounts
[
1
],
100
);
let
allowance
=
await
token
.
allowance
(
accounts
[
0
],
accounts
[
1
]);
let
allowance
=
await
token
.
allowance
(
accounts
[
0
],
accounts
[
1
]);
assert
.
equal
(
allowance
,
100
);
assert
.
equal
(
allowance
,
100
);
});
});
it
(
"should return correct balances after transfer"
,
async
function
()
{
it
(
'should return correct balances after transfer'
,
async
function
()
{
let
token
=
await
StandardTokenMock
.
new
(
accounts
[
0
],
100
);
let
token
=
await
StandardTokenMock
.
new
(
accounts
[
0
],
100
);
let
transfer
=
await
token
.
transfer
(
accounts
[
1
],
100
);
await
token
.
transfer
(
accounts
[
1
],
100
);
let
balance0
=
await
token
.
balanceOf
(
accounts
[
0
]);
let
balance0
=
await
token
.
balanceOf
(
accounts
[
0
]);
assert
.
equal
(
balance0
,
0
);
assert
.
equal
(
balance0
,
0
);
...
@@ -28,20 +30,20 @@ contract('StandardToken', function(accounts) {
...
@@ -28,20 +30,20 @@ contract('StandardToken', function(accounts) {
assert
.
equal
(
balance1
,
100
);
assert
.
equal
(
balance1
,
100
);
});
});
it
(
"should throw an error when trying to transfer more than balance"
,
async
function
()
{
it
(
'should throw an error when trying to transfer more than balance'
,
async
function
()
{
let
token
=
await
StandardTokenMock
.
new
(
accounts
[
0
],
100
);
let
token
=
await
StandardTokenMock
.
new
(
accounts
[
0
],
100
);
try
{
try
{
let
transfer
=
await
token
.
transfer
(
accounts
[
1
],
101
);
await
token
.
transfer
(
accounts
[
1
],
101
);
}
catch
(
error
)
{
}
catch
(
error
)
{
return
assertJump
(
error
);
return
assertJump
(
error
);
}
}
assert
.
fail
(
'should have thrown before'
);
assert
.
fail
(
'should have thrown before'
);
});
});
it
(
"should return correct balances after transfering from another account"
,
async
function
()
{
it
(
'should return correct balances after transfering from another account'
,
async
function
()
{
let
token
=
await
StandardTokenMock
.
new
(
accounts
[
0
],
100
);
let
token
=
await
StandardTokenMock
.
new
(
accounts
[
0
],
100
);
let
approve
=
await
token
.
approve
(
accounts
[
1
],
100
);
await
token
.
approve
(
accounts
[
1
],
100
);
let
transferFrom
=
await
token
.
transferFrom
(
accounts
[
0
],
accounts
[
2
],
100
,
{
from
:
accounts
[
1
]});
await
token
.
transferFrom
(
accounts
[
0
],
accounts
[
2
],
100
,
{
from
:
accounts
[
1
]});
let
balance0
=
await
token
.
balanceOf
(
accounts
[
0
]);
let
balance0
=
await
token
.
balanceOf
(
accounts
[
0
]);
assert
.
equal
(
balance0
,
0
);
assert
.
equal
(
balance0
,
0
);
...
@@ -53,11 +55,11 @@ contract('StandardToken', function(accounts) {
...
@@ -53,11 +55,11 @@ contract('StandardToken', function(accounts) {
assert
.
equal
(
balance2
,
0
);
assert
.
equal
(
balance2
,
0
);
});
});
it
(
"should throw an error when trying to transfer more than allowed"
,
async
function
()
{
it
(
'should throw an error when trying to transfer more than allowed'
,
async
function
()
{
let
token
=
await
StandardTokenMock
.
new
();
let
token
=
await
StandardTokenMock
.
new
();
let
approve
=
await
token
.
approve
(
accounts
[
1
],
99
);
await
token
.
approve
(
accounts
[
1
],
99
);
try
{
try
{
let
transfer
=
await
token
.
transferFrom
(
accounts
[
0
],
accounts
[
2
],
100
,
{
from
:
accounts
[
1
]});
await
token
.
transferFrom
(
accounts
[
0
],
accounts
[
2
],
100
,
{
from
:
accounts
[
1
]});
}
catch
(
error
)
{
}
catch
(
error
)
{
return
assertJump
(
error
);
return
assertJump
(
error
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment