Skip to content
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

Test commit plugin Reports #292

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion commit/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,13 @@ func (p *Plugin) Reports(
return nil, fmt.Errorf("failed to decode Outcome (%s): %w", hex.EncodeToString(outcomeBytes), err)
}

// Until we start adding tokens and gas to the report, we don't need to report anything
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment seemed wrong to me.

// Gas prices and token prices do not need to get reported when merkle roots do not exist.
if outcome.MerkleRootOutcome.OutcomeType != merkleroot.ReportGenerated {
p.lggr.Infow("skipping report generation merkle roots do not exist",
"merkleRootProcessorOutcomeType", outcome.MerkleRootOutcome.OutcomeType)
return []ocr3types.ReportPlus[[]byte]{}, nil
}

p.lggr.Infow("generating report",
"roots", outcome.MerkleRootOutcome.RootsToReport,
"tokenPriceUpdates", outcome.TokenPriceOutcome.TokenPrices,
Expand All @@ -60,6 +63,11 @@ func (p *Plugin) Reports(
RMNSignatures: outcome.MerkleRootOutcome.RMNReportSignatures,
}

if rep.IsEmpty() {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If report is empty skip the steps below.

p.lggr.Infow("empty report", "report", rep)
return []ocr3types.ReportPlus[[]byte]{}, nil
}

encodedReport, err := p.reportCodec.Encode(ctx, rep)
if err != nil {
return nil, fmt.Errorf("encode commit plugin report: %w", err)
Expand Down
155 changes: 155 additions & 0 deletions commit/report_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
package commit

import (
"testing"

"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink-common/pkg/logger"
"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"

"github.com/smartcontractkit/chainlink-ccip/commit/chainfee"
"github.com/smartcontractkit/chainlink-ccip/commit/merkleroot"
rmntypes "github.com/smartcontractkit/chainlink-ccip/commit/merkleroot/rmn/types"
"github.com/smartcontractkit/chainlink-ccip/commit/tokenprice"
"github.com/smartcontractkit/chainlink-ccip/internal/mocks"
"github.com/smartcontractkit/chainlink-ccip/pkg/types/ccipocr3"
)

func TestPluginReports(t *testing.T) {
testCases := []struct {
name string
outc Outcome
expErr bool
expReports []ccipocr3.CommitPluginReport
expReportInfo ReportInfo
}{
{
name: "wrong outcome type gives an empty report but no error",
outc: Outcome{
MerkleRootOutcome: merkleroot.Outcome{
OutcomeType: merkleroot.ReportIntervalsSelected,
},
},
expErr: false,
},
{
name: "correct outcome type but empty data",
outc: Outcome{
MerkleRootOutcome: merkleroot.Outcome{
OutcomeType: merkleroot.ReportGenerated,
},
},
expErr: false,
},
{
name: "token prices reported but no merkle roots so report is empty",
outc: Outcome{
MerkleRootOutcome: merkleroot.Outcome{
OutcomeType: merkleroot.ReportTransmissionFailed,
},
TokenPriceOutcome: tokenprice.Outcome{
TokenPrices: []ccipocr3.TokenPrice{
{TokenID: "a", Price: ccipocr3.NewBigIntFromInt64(123)},
},
},
ChainFeeOutcome: chainfee.Outcome{
GasPrices: []ccipocr3.GasPriceChain{
{GasPrice: ccipocr3.NewBigIntFromInt64(3), ChainSel: 123},
},
},
},
expErr: false,
},
{
name: "token prices reported but no merkle roots so report is empty",
outc: Outcome{
MerkleRootOutcome: merkleroot.Outcome{
OutcomeType: merkleroot.ReportGenerated,
RootsToReport: []ccipocr3.MerkleRootChain{
{
ChainSel: 3,
OnRampAddress: []byte{1, 2, 3},
SeqNumsRange: ccipocr3.NewSeqNumRange(10, 20),
MerkleRoot: ccipocr3.Bytes32{1, 2, 3, 4, 5, 6},
},
},
RMNRemoteCfg: rmntypes.RemoteConfig{F: 123},
},
TokenPriceOutcome: tokenprice.Outcome{
TokenPrices: []ccipocr3.TokenPrice{
{TokenID: "a", Price: ccipocr3.NewBigIntFromInt64(123)},
},
},
ChainFeeOutcome: chainfee.Outcome{
GasPrices: []ccipocr3.GasPriceChain{
{GasPrice: ccipocr3.NewBigIntFromInt64(3), ChainSel: 123},
},
},
},
expReports: []ccipocr3.CommitPluginReport{
{
MerkleRoots: []ccipocr3.MerkleRootChain{
{
ChainSel: 3,
OnRampAddress: []byte{1, 2, 3},
SeqNumsRange: ccipocr3.NewSeqNumRange(10, 20),
MerkleRoot: ccipocr3.Bytes32{1, 2, 3, 4, 5, 6},
},
},
PriceUpdates: ccipocr3.PriceUpdates{
TokenPriceUpdates: []ccipocr3.TokenPrice{
{TokenID: "a", Price: ccipocr3.NewBigIntFromInt64(123)},
},
GasPriceUpdates: []ccipocr3.GasPriceChain{
{GasPrice: ccipocr3.NewBigIntFromInt64(3), ChainSel: 123},
},
},
RMNSignatures: nil,
},
},
expReportInfo: ReportInfo{RemoteF: 123},
},
}

ctx := tests.Context(t)
lggr := logger.Test(t)
reportCodec := mocks.NewCommitPluginJSONReportCodec()

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
p := Plugin{
lggr: lggr,
reportCodec: reportCodec,
}

outcomeBytes, err := tc.outc.Encode()
require.NoError(t, err)

reports, err := p.Reports(ctx, 0, outcomeBytes)
if tc.expErr {
require.Error(t, err)
return
}

require.NoError(t, err)
require.Len(t, reports, len(tc.expReports))
for i, report := range reports {
expEncodedReport, err := reportCodec.Encode(ctx, tc.expReports[i])
require.NoError(t, err)
require.Equal(t, expEncodedReport, []byte(report.ReportWithInfo.Report))

expReportInfoBytes, err := tc.expReportInfo.Encode()
require.NoError(t, err)
require.Equal(t, expReportInfoBytes, report.ReportWithInfo.Info)
}
})
}
}

func TestPluginReports_InvalidOutcome(t *testing.T) {
lggr := logger.Test(t)
p := Plugin{lggr: lggr}
_, err := p.Reports(tests.Context(t), 0, []byte("invalid json"))
require.Error(t, err)
}
Loading