-
Notifications
You must be signed in to change notification settings - Fork 586
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: make 09-localhost stateless #6683
Changes from 23 commits
614fb22
952423f
cc1fa35
fe6519f
249518b
251825d
465a80c
bb92f22
93082f5
0847cbe
f573061
84c3236
ec25710
c207393
8321f41
c58f93a
261231e
58ca2d9
ab99084
61f8ea6
79b809f
c107950
fdd7806
a66ccff
6028aa0
e00c792
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,26 +119,11 @@ func (suite *KeeperTestSuite) TestQueryClientStates() { | |
{ | ||
"empty pagination", | ||
func() { | ||
localhost := types.NewIdentifiedClientState(exported.LocalhostClientID, suite.chainA.GetClientState(exported.LocalhostClientID)) | ||
expClientStates = types.IdentifiedClientStates{localhost} | ||
expClientStates = nil | ||
req = &types.QueryClientStatesRequest{} | ||
}, | ||
true, | ||
}, | ||
{ | ||
"success, only localhost", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. grpc should no longer return localhost in its query. There's no information to obtain, as it would just return back the height of the request There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. that makes sense! |
||
func() { | ||
localhost := types.NewIdentifiedClientState(exported.LocalhostClientID, suite.chainA.GetClientState(exported.LocalhostClientID)) | ||
expClientStates = types.IdentifiedClientStates{localhost} | ||
req = &types.QueryClientStatesRequest{ | ||
Pagination: &query.PageRequest{ | ||
Limit: 3, | ||
CountTotal: true, | ||
}, | ||
} | ||
}, | ||
true, | ||
}, | ||
{ | ||
"success", | ||
func() { | ||
|
@@ -151,12 +136,11 @@ func (suite *KeeperTestSuite) TestQueryClientStates() { | |
clientStateA1 := path1.EndpointA.GetClientState() | ||
clientStateA2 := path2.EndpointA.GetClientState() | ||
|
||
localhost := types.NewIdentifiedClientState(exported.LocalhostClientID, suite.chainA.GetClientState(exported.LocalhostClientID)) | ||
idcs := types.NewIdentifiedClientState(path1.EndpointA.ClientID, clientStateA1) | ||
idcs2 := types.NewIdentifiedClientState(path2.EndpointA.ClientID, clientStateA2) | ||
|
||
// order is sorted by client id | ||
expClientStates = types.IdentifiedClientStates{localhost, idcs, idcs2}.Sort() | ||
expClientStates = types.IdentifiedClientStates{idcs, idcs2}.Sort() | ||
req = &types.QueryClientStatesRequest{ | ||
Pagination: &query.PageRequest{ | ||
Limit: 20, | ||
|
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.
unsure if we want to delete this file, but left for now