-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ccip - graceful shutdown of chain readers and contract writers (#14656)
* close resources with wrapped oracle * changeset * fix changeset * rm func * run custom Closing after oracle Close * lint fix * use io.Closer * use services.CloseAll
- Loading branch information
Showing
5 changed files
with
142 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#added graceful shutdown for ccip oracles |
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
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,42 @@ | ||
package oraclecreator | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"io" | ||
|
||
"github.com/smartcontractkit/chainlink-common/pkg/services" | ||
|
||
cctypes "github.com/smartcontractkit/chainlink/v2/core/capabilities/ccip/types" | ||
) | ||
|
||
// wrappedOracle is a wrapper for cctypes.CCIPOracle that allows custom actions on Oracle shutdown. | ||
type wrappedOracle struct { | ||
baseOracle cctypes.CCIPOracle | ||
|
||
// closableResources will be closed after calling baseOracle.Close() | ||
closableResources []io.Closer | ||
} | ||
|
||
func newWrappedOracle(baseOracle cctypes.CCIPOracle, closableResources []io.Closer) cctypes.CCIPOracle { | ||
return &wrappedOracle{ | ||
baseOracle: baseOracle, | ||
closableResources: closableResources, | ||
} | ||
} | ||
|
||
func (o *wrappedOracle) Start() error { | ||
return o.baseOracle.Start() | ||
} | ||
|
||
func (o *wrappedOracle) Close() error { | ||
errs := make([]error, 0) | ||
|
||
if err := o.baseOracle.Close(); err != nil { | ||
errs = append(errs, fmt.Errorf("close base oracle: %w", err)) | ||
} | ||
|
||
errs = append(errs, services.CloseAll(o.closableResources...)) | ||
|
||
return errors.Join(errs...) | ||
} |
81 changes: 81 additions & 0 deletions
81
core/capabilities/ccip/oraclecreator/wrapped_oracle_test.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,81 @@ | ||
package oraclecreator | ||
|
||
import ( | ||
"errors" | ||
"io" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func Test_wrappedOracle_Close(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
oracleErr error | ||
closerErrors []error | ||
expectedErr error | ||
}{ | ||
{ | ||
name: "no errors", | ||
expectedErr: nil, | ||
}, | ||
{ | ||
name: "oracle error", | ||
oracleErr: err1, | ||
expectedErr: errors.New("close base oracle: err1"), | ||
}, | ||
{ | ||
name: "oracle and closers errors", | ||
oracleErr: err1, | ||
closerErrors: []error{nil, nil, err3}, | ||
expectedErr: errors.New("close base oracle: err1\nerr3"), | ||
}, | ||
{ | ||
name: "closers only errors", | ||
oracleErr: nil, | ||
closerErrors: []error{nil, err2, nil}, | ||
expectedErr: err2, | ||
}, | ||
{ | ||
name: "no errors with closers", | ||
closerErrors: []error{nil, nil, nil, nil}, | ||
expectedErr: nil, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
closers := make([]io.Closer, 0, len(tt.closerErrors)) | ||
for _, err := range tt.closerErrors { | ||
closers = append(closers, mockCloser{err: err}) | ||
} | ||
|
||
o := newWrappedOracle(mockOracle{err: tt.oracleErr}, closers) | ||
|
||
err := o.Close() | ||
if err == nil && tt.expectedErr == nil { | ||
assert.NoError(t, err) | ||
return | ||
} | ||
|
||
assert.Error(t, err) | ||
assert.Equal(t, tt.expectedErr.Error(), err.Error()) | ||
}) | ||
} | ||
} | ||
|
||
type mockCloser struct{ err error } | ||
|
||
func (m mockCloser) Close() error { return m.err } | ||
|
||
type mockOracle struct{ err error } | ||
|
||
func (m mockOracle) Close() error { return m.err } | ||
|
||
func (m mockOracle) Start() error { return m.err } | ||
|
||
var ( | ||
err1 = errors.New("err1") | ||
err2 = errors.New("err2") | ||
err3 = errors.New("err3") | ||
) |