Created abci test harness#800
Merged
thanethomson merged 2 commits intothane/abci-integration-testfrom Feb 2, 2021
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## thane/abci-integration-test #800 +/- ##
=============================================================
Coverage ? 54.4%
=============================================================
Files ? 208
Lines ? 14822
Branches ? 3888
=============================================================
Hits ? 8073
Misses ? 6410
Partials ? 339 Continue to review full report at Codecov.
|
thanethomson
approved these changes
Feb 2, 2021
Contributor
thanethomson
left a comment
There was a problem hiding this comment.
This is excellent, thanks @greg-szabo! 🎉
thanethomson
pushed a commit
that referenced
this pull request
Feb 9, 2021
* Add integration testing utility for ABCI key/value store Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add hacky bash script to demonstrate parallel execution Signed-off-by: Thane Thomson <connect@thanethomson.com> * Created abci test harness (#800) * Created abci test harness * cargo make additions and docs Co-authored-by: Greg Szabo <16846635+greg-szabo@users.noreply.github.com>
brapse
pushed a commit
that referenced
this pull request
Feb 19, 2021
* Add minimal blocking ABCI library Signed-off-by: Thane Thomson <connect@thanethomson.com> * Expand API to implement in-memory key/value store app Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add kvstore-rs ABCI app Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add rudimentary README Signed-off-by: Thane Thomson <connect@thanethomson.com> * Bump proto version dependency to v0.18.0 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Replace manual default structs with Default::default() Signed-off-by: Thane Thomson <connect@thanethomson.com> * Enable debug logging for all incoming ABCI requests Signed-off-by: Thane Thomson <connect@thanethomson.com> * Improve CLI UX Signed-off-by: Thane Thomson <connect@thanethomson.com> * Allow for read buffer size customization Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add crate description Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update README for ABCI crate Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add ABCI integration test for minimal ABCI crate (#797) * Add integration testing utility for ABCI key/value store Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add hacky bash script to demonstrate parallel execution Signed-off-by: Thane Thomson <connect@thanethomson.com> * Created abci test harness (#800) * Created abci test harness * cargo make additions and docs Co-authored-by: Greg Szabo <16846635+greg-szabo@users.noreply.github.com> * Update abci/src/codec.rs Co-authored-by: Romain Ruetschi <romain@informal.systems> * Apply suggestion from https://github.com/informalsystems/tendermint-rs/pull/794\#discussion_r573100911 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Refactor error handing and expose eyre::Result as crate default Result type Signed-off-by: Thane Thomson <connect@thanethomson.com> * Refactor to use tracing instead of log Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add newline Signed-off-by: Thane Thomson <connect@thanethomson.com> * Remove comment relating to constraints on Codec struct params Signed-off-by: Thane Thomson <connect@thanethomson.com> * Version tendermint-abci crate in line with other tendermint-rs crates Signed-off-by: Thane Thomson <connect@thanethomson.com> * Update CHANGELOG Signed-off-by: Thane Thomson <connect@thanethomson.com> * Expand crate documentation Signed-off-by: Thane Thomson <connect@thanethomson.com> * Extract request dispatch functionality from Application trait Signed-off-by: Thane Thomson <connect@thanethomson.com> * Move ABCI server example to crate root Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix broken link in docs Signed-off-by: Thane Thomson <connect@thanethomson.com> * Replace EchoApp example with KeyValueStoreApp example Signed-off-by: Thane Thomson <connect@thanethomson.com> Co-authored-by: Greg Szabo <16846635+greg-szabo@users.noreply.github.com> Co-authored-by: Romain Ruetschi <romain@informal.systems>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Test harness for testing external ABCI applications.
cargo build-abcito main workspace (builds kvstore-rs application)abci-harnessdocker imageMakefile.tomlunder the abci-test crate to use the harnessRun tests by:
(If you are on Linux, you can replace the
cargo build build-linux-abcicommand with your own build step.)Todo: write the GitHub Action.