-
Notifications
You must be signed in to change notification settings - Fork 553
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
feat: add integration tests for IBC chains #3820
Merged
Merged
Changes from all commits
Commits
Show all changes
63 commits
Select commit
Hold shift + click to select a range
131c441
create a method to fill other methods
af20cba
add chain methods
72f9af8
simplify te logic
77b727c
spin up both chains
d3ffcc4
add reminder
434adb1
add relayers
138615d
create configs into the code and add a helper to setup and run chains
a1d0e9e
fix chain config
e839965
fix rpc ports
6d06da7
Merge branch 'main' into feat/ibc-integration-tests
Pantani 25c53bd
fix wrong urls and missing relayer accounts
0cbcb5d
reset relayer config and avoid port conflicts
8ccd0f8
test relayer
3fa1f54
fix config port address
85e0036
draft check realyer
907bf75
Merge branch 'main' into feat/ibc-integration-tests
Pantani 754e941
Merge branch 'main' into feat/ibc-integration-tests
Pantani 4cb43fc
Merge remote-tracking branch 'origin/main' into feat/ibc-integration-…
f5da266
use hermes realyer instead ts relayer
a49364e
fix the default config values
abea944
fix the config flag
0af2b33
add missing tx.go file by default and enable cli if autocli not exist
543b08d
add changelog
2cf88c8
Merge branch 'fix/module-cli-tx-cmd' into feat/ibc-integration-tests
d5d7722
fix wrong error pkg
f5a059c
add missing imports
9e32d6e
Merge branch 'fix/module-cli-tx-cmd' into feat/ibc-integration-tests
d976cbd
only scaffold `cli/tx.go` if is a ibc module
f5b6e8a
Merge branch 'main' into fix/module-cli-tx-cmd
Pantani a43c274
move tx.go.plush to right place
e018eac
Merge branch 'fix/module-cli-tx-cmd' into feat/ibc-integration-tests
d968d93
add comment to cobra send packet command
3eddf13
add missing ibc interfaces to chain client
1d12cd0
Merge branch 'fix/missing-client-interfaces' into feat/ibc-integratio…
416b978
Merge branch 'main' into feat/ibc-integration-tests
Pantani 211a7f4
Merge remote-tracking branch 'origin/main' into feat/ibc-integration-…
656a80c
Merge remote-tracking branch 'origin/main' into feat/ibc-integration-…
d5506e6
Merge branch 'main' into feat/ibc-integration-tests
Pantani fd34629
set port range
68c8e29
Revert "refactor(templates): add all ibc commands (#3858)"
Pantani 9b4fac3
Merge branch 'revert-3858-julien/add-all-ibc-cmd' into feat/ibc-integ…
282423b
Merge remote-tracking branch 'origin/main' into feat/ibc-integration-…
fcc2186
fix changelog
aa8af90
fix ibc.go app
f67900b
query channels
e174df1
check balances
5188247
check ibc balance
cff30ea
improve test cleanup
f67bcb8
fix chain home and config paths
6b71b05
fix log typo
5fb4025
cerate the chain path before use
2bf6024
remove unused const
852e270
decrease cleanup time
ddf5f10
Merge branch 'main' into feat/ibc-integration-tests
Pantani 50bcc66
setup the remote hermes app url
7e10443
use parser.ParseExpr instead parser.ParseExpr
a17b4eb
Merge branch 'main' into feat/ibc-integration-tests
Pantani 0caca1f
Merge branch 'main' into feat/ibc-integration-tests
Pantani e77a8cb
Merge branch 'main' into feat/ibc-integration-tests
Pantani 1a3672b
Merge branch 'main' into feat/ibc-integration-tests
Pantani e49050c
Merge branch 'main' into feat/ibc-integration-tests
Pantani 2b02b9b
remove panic from assert error
69a5f69
improve error assert
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package testdata | ||
|
||
import "fmt" | ||
|
||
func fooTest() { | ||
n := "test new method" | ||
bla := fmt.Sprintf("test new - %s", n) | ||
fmt. | ||
Println(bla) | ||
} | ||
|
||
func BazTest() { | ||
foo := 100 | ||
bar := fmt.Sprintf("test - %d", foo) | ||
fmt.Println(bar) | ||
} |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be reverted. IBC commands are already added.