Rebase, update changelog & testcase

This commit is contained in:
Christopher Goes 2018-05-01 14:00:23 +02:00
parent 36e096d4bb
commit 2376f231c2
No known key found for this signature in database
GPG Key ID: E828D98232D328D3
3 changed files with 36 additions and 2 deletions

View File

@ -2,6 +2,10 @@
## UNRELEASED
FEATURES
* Context now has access to the application-configured logger
BREAKING CHANGES
* types/rational now extends big.Rat
@ -27,7 +31,6 @@ FEATURES:
* Create genesis transactions with `gaiad init gen-tx`
* New genesis account keys are automatically added to the client keybase (introduce `--client-home` flag)
* Initialize with genesis txs using `--gen-txs` flag
* Context now has access to the application-configured logger
BREAKING CHANGES

View File

@ -30,7 +30,7 @@ func TestCoolKeeper(t *testing.T) {
auth.RegisterBaseAccount(cdc)
am := auth.NewAccountMapper(cdc, capKey, &auth.BaseAccount{})
ctx := sdk.NewContext(ms, abci.Header{}, false, nil)
ctx := sdk.NewContext(ms, abci.Header{}, false, nil, nil)
ck := bank.NewKeeper(am)
keeper := NewKeeper(capKey, ck, DefaultCodespace)

View File

@ -4,6 +4,7 @@ import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
dbm "github.com/tendermint/tmlibs/db"
"github.com/tendermint/tmlibs/log"
@ -13,6 +14,33 @@ import (
abci "github.com/tendermint/abci/types"
)
type MockLogger struct {
logs *[]string
}
func NewMockLogger() MockLogger {
logs := make([]string, 0)
return MockLogger{
&logs,
}
}
func (l MockLogger) Debug(msg string, kvs ...interface{}) {
*l.logs = append(*l.logs, msg)
}
func (l MockLogger) Info(msg string, kvs ...interface{}) {
*l.logs = append(*l.logs, msg)
}
func (l MockLogger) Error(msg string, kvs ...interface{}) {
*l.logs = append(*l.logs, msg)
}
func (l MockLogger) With(kvs ...interface{}) log.Logger {
panic("not implemented")
}
func TestContextGetOpShouldNeverPanic(t *testing.T) {
var ms types.MultiStore
ctx := types.NewContext(ms, abci.Header{}, false, nil, log.NewNopLogger())
@ -64,7 +92,10 @@ func TestCacheContext(t *testing.T) {
func TestLogContext(t *testing.T) {
key := types.NewKVStoreKey(t.Name())
ctx := defaultContext(key)
logger := NewMockLogger()
ctx = ctx.WithLogger(logger)
ctx.Logger().Debug("debug")
ctx.Logger().Info("info")
ctx.Logger().Error("error")
require.Equal(t, *logger.logs, []string{"debug", "info", "error"})
}