mirror of
https://github.com/grassrootseconomics/cic-chain-events.git
synced 2024-11-22 15:56:45 +01:00
50 lines
904 B
Go
50 lines
904 B
Go
|
package fetch
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
celo "github.com/grassrootseconomics/cic-celo-sdk"
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
rpcEndpoint = os.Getenv("TEST_RPC_ENDPOINT")
|
||
|
)
|
||
|
|
||
|
type RPCTestSuite struct {
|
||
|
suite.Suite
|
||
|
fetch Fetch
|
||
|
}
|
||
|
|
||
|
func (s *RPCTestSuite) SetupSuite() {
|
||
|
celoProvider, err := celo.NewProvider(celo.ProviderOpts{
|
||
|
ChainId: celo.MainnetChainId,
|
||
|
RpcEndpoint: rpcEndpoint,
|
||
|
})
|
||
|
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
s.fetch = NewRPCFetcher(RPCOpts{
|
||
|
RPCProvider: celoProvider,
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func (s *RPCTestSuite) Test_E2E_Fetch_Existing_Block() {
|
||
|
resp, err := s.fetch.Block(context.Background(), 14974600)
|
||
|
s.NoError(err)
|
||
|
s.Len(resp.Data.Block.Transactions, 3)
|
||
|
}
|
||
|
|
||
|
func (s *RPCTestSuite) Test_E2E_Fetch_Non_Existing_Block() {
|
||
|
_, err := s.fetch.Block(context.Background(), 14974600000)
|
||
|
s.Error(err)
|
||
|
}
|
||
|
|
||
|
func TestRPCSuite(t *testing.T) {
|
||
|
suite.Run(t, new(RPCTestSuite))
|
||
|
}
|