-
Notifications
You must be signed in to change notification settings - Fork 11.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create tests for Shareable #100
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
pragma solidity ^0.4.4; | ||
import "../Shareable.sol"; | ||
|
||
contract ShareableMock is Shareable { | ||
|
||
uint public count = 0; | ||
|
||
function ShareableMock(address[] _owners, uint _required) Shareable(_owners, _required) { | ||
|
||
} | ||
|
||
function increaseCount(bytes32 action) onlymanyowners(action) { | ||
count = count + 1; | ||
} | ||
|
||
} |
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,101 @@ | ||
contract('Shareable', function(accounts) { | ||
|
||
it('should construct with correct owners and number of sigs required', async function() { | ||
let requiredSigs = 2; | ||
let owners = accounts.slice(1,4); | ||
let shareable = await ShareableMock.new(owners, requiredSigs); | ||
|
||
let required = await shareable.required(); | ||
assert.equal(required, requiredSigs); | ||
let owner = await shareable.getOwner(0); | ||
assert.equal(owner, accounts[0]); | ||
|
||
for(let i = 0; i < accounts.length; i++) { | ||
let owner = await shareable.getOwner(i); | ||
let isowner = await shareable.isOwner(accounts[i]); | ||
if(i <= owners.length) { | ||
assert.equal(accounts[i], owner); | ||
assert.isTrue(isowner); | ||
} else { | ||
assert.notEqual(accounts[i], owner); | ||
assert.isFalse(isowner); | ||
} | ||
} | ||
}); | ||
|
||
it('should only perform multisig function with enough sigs', async function() { | ||
let requiredSigs = 3; | ||
let owners = accounts.slice(1,4); | ||
let shareable = await ShareableMock.new(owners, requiredSigs); | ||
let hash = 1234; | ||
|
||
let initCount = await shareable.count(); | ||
initCount = initCount.toString(); | ||
|
||
for(let i = 0; i < requiredSigs; i++) { | ||
await shareable.increaseCount(hash, {from: accounts[i]}); | ||
let count = await shareable.count(); | ||
if(i == requiredSigs - 1) { | ||
assert.equal(Number(initCount)+1, count.toString()); | ||
} else { | ||
assert.equal(initCount, count.toString()); | ||
} | ||
} | ||
}); | ||
|
||
it('should require approval from different owners', async function() { | ||
let requiredSigs = 2; | ||
let owners = accounts.slice(1,4); | ||
let shareable = await ShareableMock.new(owners, requiredSigs); | ||
let hash = 1234; | ||
|
||
let initCount = await shareable.count(); | ||
initCount = initCount.toString(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||
|
||
//Count shouldn't increase when the same owner calls repeatedly | ||
for(let i = 0; i < 2; i++) { | ||
await shareable.increaseCount(hash); | ||
let count = await shareable.count(); | ||
assert.equal(initCount, count.toString()); | ||
} | ||
}); | ||
|
||
it('should reset sig count after operation is approved', async function() { | ||
let requiredSigs = 3; | ||
let owners = accounts.slice(1,4); | ||
let shareable = await ShareableMock.new(owners, requiredSigs); | ||
let hash = 1234; | ||
|
||
let initCount = await shareable.count(); | ||
|
||
for(let i = 0; i < requiredSigs * 3; i++) { | ||
await shareable.increaseCount(hash, {from: accounts[i % 4]}); | ||
let count = await shareable.count(); | ||
if((i%(requiredSigs)) == requiredSigs - 1) { | ||
initCount = Number(initCount)+1; | ||
assert.equal(initCount, count); | ||
} else { | ||
assert.equal(initCount.toString(), count); | ||
} | ||
} | ||
}); | ||
|
||
it('should not perform multisig function after an owner revokes', async function() { | ||
let requiredSigs = 3; | ||
let owners = accounts.slice(1,4); | ||
let shareable = await ShareableMock.new(owners, requiredSigs); | ||
let hash = 1234; | ||
|
||
let initCount = await shareable.count(); | ||
|
||
for(let i = 0; i < requiredSigs; i++) { | ||
if(i == 1) { | ||
await shareable.revoke(hash, {from: accounts[i-1]}); | ||
} | ||
await shareable.increaseCount(hash, {from: accounts[i]}); | ||
let count = await shareable.count(); | ||
assert.equal(initCount.toString(), count); | ||
} | ||
}); | ||
|
||
}); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using a string here seems confusing. What's the reason?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I double checked and it doesn't make a difference. all the toString()'s in this test method can be removed.