Skip to content
This repository has been archived by the owner on Jul 15, 2018. It is now read-only.

Commit

Permalink
Merge branch 'develop' into bucky/no-gogo
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuchman authored May 30, 2018
2 parents 21951dd + bcfdd6d commit 6e3191f
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,23 @@ jobs:
export PATH="$GOBIN:$PATH"
bash tests/test_app/test.sh
# XXX: if this test fails, fix it and update the docs at:
# https://github.com/tendermint/tendermint/blob/develop/docs/abci-cli.rst
test_cli:
<<: *defaults
steps:
- attach_workspace:
at: /tmp/workspace
- restore_cache:
key: v1-pkg-cache
- restore_cache:
key: v1-tree-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Run cli tests
command: |
export PATH="$GOBIN:$PATH"
bash tests/test_cli/test.sh
test_cover:
<<: *defaults
parallelism: 4
Expand Down Expand Up @@ -114,6 +131,9 @@ workflows:
- test_apps:
requires:
- setup_dependencies
- test_cli:
requires:
- setup_dependencies
- upload_coverage:
requires:
- test_cover
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ test_apps:
@ bash tests/test_app/test.sh

test_cli:
# test the cli against the examples in the tutorial at tendermint.com
# test the cli against the examples in the tutorial at:
# http://tendermint.readthedocs.io/projects/tools/en/master/abci-cli.html
#
# XXX: if this test fails, fix it and update the docs at:
# https://github.com/tendermint/tendermint/blob/develop/docs/abci-cli.rst
@ bash tests/test_cli/test.sh

########################################
Expand Down
5 changes: 3 additions & 2 deletions tests/test_cli/ex1.abci.out
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

> commit
-> code: OK
-> data.hex: 0x0000000000000000

> deliver_tx "abc"
-> code: OK
Expand All @@ -21,7 +22,7 @@

> commit
-> code: OK
-> data.hex: 0x49DFD15CCDACDEAE9728CB01FBB5E8688CA58B91
-> data.hex: 0x0200000000000000

> query "abc"
-> code: OK
Expand All @@ -35,7 +36,7 @@

> commit
-> code: OK
-> data.hex: 0x70102DB32280373FBF3F9F89DA2A20CE2CD62B0B
-> data.hex: 0x0400000000000000

> query "def"
-> code: OK
Expand Down
1 change: 1 addition & 0 deletions tests/test_cli/ex2.abci.out
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
> set_option serial on
-> code: OK
-> log: OK (SetOption doesn't return anything.)

> check_tx 0x00
-> code: OK
Expand Down

0 comments on commit 6e3191f

Please sign in to comment.