-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add script to forward transactions and check database results #154
Merged
danenbm
merged 12 commits into
danenbm/update-metadata-parsing
from
danenbm/bubblegum-sequence-tests
Jan 18, 2024
Merged
Add script to forward transactions and check database results #154
danenbm
merged 12 commits into
danenbm/update-metadata-parsing
from
danenbm/bubblegum-sequence-tests
Jan 18, 2024
Conversation
This file contains 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
danenbm
requested review from
fanatid,
linuskendall,
Juanito87,
NicolasPennie and
blockiosaurus
January 5, 2024 07:58
danenbm
changed the title
Add script to forward transactions an check database results
Add script to forward transactions and check database results
Jan 5, 2024
NicolasPennie
approved these changes
Jan 18, 2024
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.
Overview
Adds a Bubblegum Test Sequences script that can run sequences of Bubblegum transactions forwards and backwards and check the results in the Postgres database.
How to run it
While running the multi-container Docker application locally, you can run a script located in
tools/txn_forwarder/bubblegum_tests
that will send sequences of bubblegum transactions via thetxn_forwarder
, and then usepsql
to read and verify the indexing results in the local Postgres database.In another terminal:
cd tools/txn_forwarder/bubblegum_tests/ ./run-bubblegum-sequences.sh
You should see it log something like:
You can also run the sequences in reverse:
And after it runs you should see
ALL TESTS PASSED IN REVERSE!
Detailed notes
.scenario
files, but instead of sending those files to thetxn_forwarder
directly (which supports the file format), we parse them out and send them individually using thesingle
parameter. This is because using the.scenario
file directly results in random ordering of the transactions and we are explicity trying to test them going forwards and in reverse._reverse
suffix.Testing
I have run this forwards and in reverse on danenbm/update-metadata-parsing and it passes.