Moved basecoin into examples

This commit is contained in:
Ethan Frey 2017-08-30 21:09:54 +02:00
parent b274494474
commit 96f96ffc3d
26 changed files with 70 additions and 26 deletions

View File

@ -3,7 +3,7 @@ GOTOOLS = github.com/mitchellh/gox \
github.com/rigelrozanski/shelldown/cmd/shelldown
TUTORIALS=$(shell find docs/guide -name "*md" -type f)
EXAMPLES := counter eyes
EXAMPLES := counter eyes basecoin
INSTALL_EXAMPLES := $(addprefix install_,${EXAMPLES})
TEST_EXAMPLES := $(addprefix testex_,${EXAMPLES})
@ -39,14 +39,6 @@ test_unit:
test_cli: $(TEST_EXAMPLES)
# sudo apt-get install jq
# wget "https://raw.githubusercontent.com/kward/shunit2/master/source/2.1/src/shunit2"
./tests/cli/keys.sh
./tests/cli/rpc.sh
./tests/cli/init.sh
./tests/cli/basictx.sh
./tests/cli/roles.sh
./tests/cli/restart.sh
./tests/cli/rest.sh
./tests/cli/ibc.sh
test_tutorial:
@shelldown ${TUTORIALS}

View File

@ -0,0 +1,21 @@
LINKER_FLAGS:="-X github.com/cosmos/cosmos-sdk/client/commands.CommitHash=`git rev-parse --short HEAD`"
install:
@go install -ldflags $(LINKER_FLAGS) ./cmd/...
test: test_unit test_cli
test_unit:
@go test `glide novendor`
test_cli:
./tests/cli/keys.sh
./tests/cli/rpc.sh
./tests/cli/init.sh
./tests/cli/basictx.sh
./tests/cli/roles.sh
./tests/cli/restart.sh
./tests/cli/rest.sh
./tests/cli/ibc.sh
.PHONY: install test test_unit test_cli

View File

@ -7,7 +7,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk"
client "github.com/cosmos/cosmos-sdk/client/commands"
"github.com/cosmos/cosmos-sdk/cmd/basecoin/commands"
"github.com/cosmos/cosmos-sdk/examples/basecoin/cmd/basecoin/commands"
"github.com/cosmos/cosmos-sdk/modules/auth"
"github.com/cosmos/cosmos-sdk/modules/base"
"github.com/cosmos/cosmos-sdk/modules/coin"

View File

@ -116,5 +116,9 @@ test03CreditTx() {
# Load common then run these tests with shunit2!
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #get this files directory
. $DIR/common.sh
. $DIR/shunit2
# TODO: how to handle this if we are not in the same directory
CLI_DIR=${DIR}/../../../../tests/cli
. $CLI_DIR/common.sh
. $CLI_DIR/shunit2

View File

@ -353,5 +353,9 @@ assertNewHeight() {
# Load common then run these tests with shunit2!
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #get this files directory
. $DIR/common.sh
. $DIR/shunit2
# TODO: how to handle this if we are not in the same directory
CLI_DIR=${DIR}/../../../../tests/cli
. $CLI_DIR/common.sh
. $CLI_DIR/shunit2

View File

@ -105,4 +105,8 @@ checkDir() {
# load and run these tests with shunit2!
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #get this files directory
. $DIR/shunit2
# TODO: how to handle this if we are not in the same directory
CLI_DIR=${DIR}/../../../../tests/cli
. $CLI_DIR/shunit2

View File

@ -26,4 +26,8 @@ testMakeKeys() {
# load and run these tests with shunit2!
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #get this files directory
. $DIR/shunit2
# TODO: how to handle this if we are not in the same directory
CLI_DIR=${DIR}/../../../../tests/cli
. $CLI_DIR/shunit2

View File

@ -151,5 +151,9 @@ test04CreateRoleInvalid() {
# Load common then run these tests with shunit2!
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #get this files directory
. $DIR/common.sh
. $DIR/shunit2
# TODO: how to handle this if we are not in the same directory
CLI_DIR=${DIR}/../../../../tests/cli
. $CLI_DIR/common.sh
. $CLI_DIR/shunit2

View File

@ -78,6 +78,10 @@ test01OnRestart() {
# Load common then run these tests with shunit2!
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #get this files directory
. $DIR/common.sh
. $DIR/shunit2
# TODO: how to handle this if we are not in the same directory
CLI_DIR=${DIR}/../../../../tests/cli
. $CLI_DIR/common.sh
. $CLI_DIR/shunit2

View File

@ -90,5 +90,9 @@ test03SendMultiFromRole() {
# Load common then run these tests with shunit2!
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #get this files directory
. $DIR/common.sh
. $DIR/shunit2
# TODO: how to handle this if we are not in the same directory
CLI_DIR=${DIR}/../../../../tests/cli
. $CLI_DIR/common.sh
. $CLI_DIR/shunit2

View File

@ -127,4 +127,7 @@ test03Waiting() {
# load and run these tests with shunit2!
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #get this files directory
. $DIR/shunit2
# TODO: how to handle this if we are not in the same directory
CLI_DIR=${DIR}/../../../../tests/cli
. $CLI_DIR/shunit2

View File

@ -8,7 +8,7 @@ import (
"github.com/tendermint/tmlibs/cli"
client "github.com/cosmos/cosmos-sdk/client/commands"
"github.com/cosmos/cosmos-sdk/cmd/basecoin/commands"
"github.com/cosmos/cosmos-sdk/examples/basecoin/cmd/basecoin/commands"
"github.com/cosmos/cosmos-sdk/examples/counter/plugins/counter"
)

View File

@ -8,7 +8,7 @@ import (
tcmd "github.com/tendermint/tendermint/cmd/tendermint/commands"
"github.com/cosmos/cosmos-sdk/cmd/basecoin/commands"
"github.com/cosmos/cosmos-sdk/examples/basecoin/cmd/basecoin/commands"
)
// InitCmd - node initialization command

View File

@ -7,7 +7,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk"
client "github.com/cosmos/cosmos-sdk/client/commands"
"github.com/cosmos/cosmos-sdk/cmd/basecoin/commands"
"github.com/cosmos/cosmos-sdk/examples/basecoin/cmd/basecoin/commands"
"github.com/cosmos/cosmos-sdk/modules/base"
"github.com/cosmos/cosmos-sdk/modules/eyes"
"github.com/cosmos/cosmos-sdk/stack"