|
|
@ -2,6 +2,7 @@ package client_test |
|
|
|
|
|
|
|
import ( |
|
|
|
"context" |
|
|
|
"encoding/base64" |
|
|
|
"fmt" |
|
|
|
"math" |
|
|
|
"net/http" |
|
|
@ -14,6 +15,7 @@ import ( |
|
|
|
"github.com/stretchr/testify/require" |
|
|
|
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types" |
|
|
|
tmjson "github.com/tendermint/tendermint/libs/json" |
|
|
|
"github.com/tendermint/tendermint/libs/log" |
|
|
|
tmmath "github.com/tendermint/tendermint/libs/math" |
|
|
|
mempl "github.com/tendermint/tendermint/mempool" |
|
|
@ -186,6 +188,31 @@ func TestGenesisAndValidators(t *testing.T) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func TestGenesisChunked(t *testing.T) { |
|
|
|
ctx, cancel := context.WithCancel(context.Background()) |
|
|
|
defer cancel() |
|
|
|
|
|
|
|
for _, c := range GetClients() { |
|
|
|
first, err := c.GenesisChunked(ctx, 0) |
|
|
|
require.NoError(t, err) |
|
|
|
|
|
|
|
decoded := make([]string, 0, first.TotalChunks) |
|
|
|
for i := 0; i < first.TotalChunks; i++ { |
|
|
|
chunk, err := c.GenesisChunked(ctx, uint(i)) |
|
|
|
require.NoError(t, err) |
|
|
|
data, err := base64.StdEncoding.DecodeString(chunk.Data) |
|
|
|
require.NoError(t, err) |
|
|
|
decoded = append(decoded, string(data)) |
|
|
|
|
|
|
|
} |
|
|
|
doc := []byte(strings.Join(decoded, "")) |
|
|
|
|
|
|
|
var out types.GenesisDoc |
|
|
|
require.NoError(t, tmjson.Unmarshal(doc, &out), |
|
|
|
"first: %+v, doc: %s", first, string(doc)) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func TestABCIQuery(t *testing.T) { |
|
|
|
for i, c := range GetClients() { |
|
|
|
// write something
|
|
|
|