-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RPC API: ensure hash field included in batches json (#1684)
(cherry picked from commit 0fd3773)
- Loading branch information
1 parent
1ecd222
commit 36f6999
Showing
4 changed files
with
71 additions
and
0 deletions.
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
41 changes: 41 additions & 0 deletions
41
integration/networktest/actions/publicdata/tenscan_data.go
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,41 @@ | ||
package publicdata | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"github.com/ten-protocol/go-ten/go/common" | ||
"github.com/ten-protocol/go-ten/go/obsclient" | ||
"github.com/ten-protocol/go-ten/integration/networktest" | ||
"github.com/ten-protocol/go-ten/integration/networktest/actions" | ||
) | ||
|
||
// VerifyBatchesDataAction tests the batches data RPC endpoint | ||
func VerifyBatchesDataAction() networktest.Action { | ||
return actions.VerifyOnlyAction(func(ctx context.Context, network networktest.NetworkConnector) error { | ||
client, err := obsclient.Dial(network.ValidatorRPCAddress(0)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
pagination := common.QueryPagination{ | ||
Offset: 0, | ||
Size: 20, | ||
} | ||
batchListing, err := client.GetBatchesListing(&pagination) | ||
if err != nil { | ||
return err | ||
} | ||
if len(batchListing.BatchesData) != 20 { | ||
return fmt.Errorf("expected 20 batches, got %d", len(batchListing.BatchesData)) | ||
} | ||
if batchListing.Total <= 10 { | ||
return fmt.Errorf("expected more than 10 batches, got %d", batchListing.Total) | ||
} | ||
if batchListing.BatchesData[0].Number.Cmp(batchListing.BatchesData[1].Number) < 0 { | ||
return fmt.Errorf("expected batches to be sorted by height descending") | ||
} | ||
|
||
return nil | ||
}) | ||
} |
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,24 @@ | ||
package tenscan | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/ten-protocol/go-ten/integration/networktest" | ||
"github.com/ten-protocol/go-ten/integration/networktest/actions" | ||
"github.com/ten-protocol/go-ten/integration/networktest/actions/publicdata" | ||
"github.com/ten-protocol/go-ten/integration/networktest/env" | ||
) | ||
|
||
// Verify and debug the RPC endpoints that Tenscan relies on for data in various environments | ||
|
||
func TestRPC(t *testing.T) { | ||
networktest.TestOnlyRunsInIDE(t) | ||
networktest.Run( | ||
"tenscan-rpc-data", | ||
t, | ||
env.LocalDevNetwork(), | ||
actions.Series( | ||
publicdata.VerifyBatchesDataAction(), | ||
), | ||
) | ||
} |
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