-
Notifications
You must be signed in to change notification settings - Fork 617
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e: reorganize channel upgrade tests + add them to compatibility tes…
…ts (#5772) * chore: reorganize channel ugprades tests + add them to compatibility tests * delete file * use channel version * add crossing hello test to compatibility matrix * fix * fix
- Loading branch information
Carlos Rodriguez
authored
Jan 30, 2024
1 parent
a0cf456
commit d330de7
Showing
17 changed files
with
456 additions
and
271 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/main/ica-channel-upgrade-chain-a.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"main" | ||
], | ||
"chain-b": [ | ||
"main", | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_AfterUpgradingOrdertoUnordered", | ||
"TestChannelUpgrade_ICAChannelClosesAfterTimeout_Succeeds" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/main/ica-channel-upgrade-chain-b.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"main", | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"main" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_AfterUpgradingOrdertoUnordered", | ||
"TestChannelUpgrade_ICAChannelClosesAfterTimeout_Succeeds" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
20 changes: 20 additions & 0 deletions
20
.github/compatibility-test-matrices/main/transfer-channel-upgrade-chain-a.json
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,20 @@ | ||
{ | ||
"chain-a": [ | ||
"main" | ||
], | ||
"chain-b": [ | ||
"main", | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestTransferChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestChannelUpgrade_WithFeeMiddleware_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_CrossingHello_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_FailsWithTimeoutOnAck" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
20 changes: 20 additions & 0 deletions
20
.github/compatibility-test-matrices/main/transfer-channel-upgrade-chain-b.json
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,20 @@ | ||
{ | ||
"chain-a": [ | ||
"main", | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"main" | ||
], | ||
"entrypoint": [ | ||
"TestTransferChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestChannelUpgrade_WithFeeMiddleware_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_CrossingHello_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_FailsWithTimeoutOnAck" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
.github/compatibility-test-matrices/release-v8.1.x/ica-channel-upgrade-chain-a.json
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,18 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_AfterUpgradingOrdertoUnordered", | ||
"TestChannelUpgrade_ICAChannelClosesAfterTimeout_Succeeds" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
.github/compatibility-test-matrices/release-v8.1.x/ica-channel-upgrade-chain-b.json
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,18 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_AfterUpgradingOrdertoUnordered", | ||
"TestChannelUpgrade_ICAChannelClosesAfterTimeout_Succeeds" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/release-v8.1.x/transfer-channel-upgrade-chain-a.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestTransferChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestChannelUpgrade_WithFeeMiddleware_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_CrossingHello_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_FailsWithTimeoutOnAck" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/release-v8.1.x/transfer-channel-upgrade-chain-b.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestTransferChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestChannelUpgrade_WithFeeMiddleware_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_CrossingHello_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_FailsWithTimeoutOnAck" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
.github/compatibility-test-matrices/unreleased/ica-channel-upgrade-chain-a.json
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,18 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_AfterUpgradingOrdertoUnordered", | ||
"TestChannelUpgrade_ICAChannelClosesAfterTimeout_Succeeds" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
.github/compatibility-test-matrices/unreleased/ica-channel-upgrade-chain-b.json
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,18 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_AfterUpgradingOrdertoUnordered", | ||
"TestChannelUpgrade_ICAChannelClosesAfterTimeout_Succeeds" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/unreleased/transfer-channel-upgrade-chain-a.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestTransferChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestChannelUpgrade_WithFeeMiddleware_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_CrossingHello_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_FailsWithTimeoutOnAck" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/unreleased/transfer-channel-upgrade-chain-b.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestTransferChannelUpgradesTestSuite" | ||
], | ||
"test": [ | ||
"TestChannelUpgrade_WithFeeMiddleware_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_CrossingHello_Succeeds", | ||
"TestChannelUpgrade_WithFeeMiddleware_FailsWithTimeoutOnAck" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
Oops, something went wrong.