-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2503 from oasislabs/pro-wh/feature/xferwl
go staking: add isTransferPermitted tests
- Loading branch information
Showing
2 changed files
with
61 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
go staking: add isTransferPermitted tests | ||
|
||
it was desired that we have tests for this transfer permissions engine |
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,58 @@ | ||
package staking | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/oasislabs/oasis-core/go/common/crypto/signature" | ||
staking "github.com/oasislabs/oasis-core/go/staking/api" | ||
) | ||
|
||
func TestIsTransferPermitted(t *testing.T) { | ||
for _, tt := range []struct { | ||
msg string | ||
params *staking.ConsensusParameters | ||
fromID signature.PublicKey | ||
permitted bool | ||
}{ | ||
{ | ||
"no disablement", | ||
&staking.ConsensusParameters{}, | ||
signature.PublicKey{}, | ||
true, | ||
}, | ||
{ | ||
"all disabled", | ||
&staking.ConsensusParameters{ | ||
DisableTransfers: true, | ||
}, | ||
signature.PublicKey{}, | ||
false, | ||
}, | ||
{ | ||
"not whitelisted", | ||
&staking.ConsensusParameters{ | ||
DisableTransfers: true, | ||
UndisableTransfersFrom: map[signature.PublicKey]bool{ | ||
signature.PublicKey{1}: true, | ||
}, | ||
}, | ||
signature.PublicKey{}, | ||
false, | ||
}, | ||
{ | ||
"whitelisted", | ||
&staking.ConsensusParameters{ | ||
DisableTransfers: true, | ||
UndisableTransfersFrom: map[signature.PublicKey]bool{ | ||
signature.PublicKey{}: true, | ||
}, | ||
}, | ||
signature.PublicKey{}, | ||
true, | ||
}, | ||
} { | ||
require.Equal(t, tt.permitted, isTransferPermitted(tt.params, tt.fromID), tt.msg) | ||
} | ||
} |