-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Send certificates after a percentage of epoch - Require epoch configuration to AggLayer - Change config of `aggsender` adding: `BlockFinality` and `EpochNotificationPercentage`
- Loading branch information
1 parent
7545d8f
commit dbc47e1
Showing
37 changed files
with
3,041 additions
and
1,399 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
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,76 @@ | ||
package agglayer | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/0xPolygon/cdk-rpc/rpc" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
const ( | ||
testURL = "http://localhost:8080" | ||
) | ||
|
||
func TestExploratoryClient(t *testing.T) { | ||
t.Skip("This test is for exploratory purposes only") | ||
sut := NewAggLayerClient("http://127.0.0.1:32853") | ||
config, err := sut.GetEpochConfiguration() | ||
require.NoError(t, err) | ||
require.NotNil(t, config) | ||
fmt.Printf("Config: %s", config.String()) | ||
} | ||
|
||
func TestGetEpochConfigurationResponseWithError(t *testing.T) { | ||
sut := NewAggLayerClient(testURL) | ||
response := rpc.Response{ | ||
Error: &rpc.ErrorObject{}, | ||
} | ||
jSONRPCCall = func(url, method string, params ...interface{}) (rpc.Response, error) { | ||
return response, nil | ||
} | ||
clockConfig, err := sut.GetEpochConfiguration() | ||
require.Nil(t, clockConfig) | ||
require.Error(t, err) | ||
} | ||
|
||
func TestGetEpochConfigurationResponseBadJson(t *testing.T) { | ||
sut := NewAggLayerClient(testURL) | ||
response := rpc.Response{ | ||
Result: []byte(`{`), | ||
} | ||
jSONRPCCall = func(url, method string, params ...interface{}) (rpc.Response, error) { | ||
return response, nil | ||
} | ||
clockConfig, err := sut.GetEpochConfiguration() | ||
require.Nil(t, clockConfig) | ||
require.Error(t, err) | ||
} | ||
|
||
func TestGetEpochConfigurationErrorResponse(t *testing.T) { | ||
sut := NewAggLayerClient(testURL) | ||
|
||
jSONRPCCall = func(url, method string, params ...interface{}) (rpc.Response, error) { | ||
return rpc.Response{}, fmt.Errorf("unittest error") | ||
} | ||
clockConfig, err := sut.GetEpochConfiguration() | ||
require.Nil(t, clockConfig) | ||
require.Error(t, err) | ||
} | ||
|
||
func TestGetEpochConfigurationOkResponse(t *testing.T) { | ||
sut := NewAggLayerClient(testURL) | ||
response := rpc.Response{ | ||
Result: []byte(`{"epoch_duration": 1, "genesis_block": 1}`), | ||
} | ||
jSONRPCCall = func(url, method string, params ...interface{}) (rpc.Response, error) { | ||
return response, nil | ||
} | ||
clockConfig, err := sut.GetEpochConfiguration() | ||
require.NotNil(t, clockConfig) | ||
require.NoError(t, err) | ||
require.Equal(t, ClockConfiguration{ | ||
EpochDuration: 1, | ||
GenesisBlock: 1, | ||
}, *clockConfig) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.