-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(f3): try again when we fail to fetch the manifest (#12634)
Continuing with the function here will lead to a panic. This can happen, e.g., if the lotus node stops and/or returns an error while the participant is waiting for its lease to expire.
- Loading branch information
Showing
2 changed files
with
76 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
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,75 @@ | ||
package lf3_test | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"testing" | ||
"time" | ||
|
||
"github.com/jpillora/backoff" | ||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/filecoin-project/go-address" | ||
"github.com/filecoin-project/go-f3/gpbft" | ||
"github.com/filecoin-project/go-f3/manifest" | ||
|
||
"github.com/filecoin-project/lotus/api" | ||
"github.com/filecoin-project/lotus/chain/lf3" | ||
"github.com/filecoin-project/lotus/node/modules/dtypes" | ||
) | ||
|
||
type manifestFailAPI struct { | ||
manifestRequested chan struct{} | ||
} | ||
|
||
func (m *manifestFailAPI) F3GetManifest(ctx context.Context) (*manifest.Manifest, error) { | ||
select { | ||
case m.manifestRequested <- struct{}{}: | ||
default: | ||
} | ||
return nil, errors.New("test error") | ||
} | ||
|
||
func (m *manifestFailAPI) F3GetOrRenewParticipationTicket(ctx context.Context, minerID address.Address, previous api.F3ParticipationTicket, instances uint64) (api.F3ParticipationTicket, error) { | ||
switch string(previous) { | ||
case "good ticket": | ||
return api.F3ParticipationTicket("bad ticket"), nil | ||
case "": | ||
return api.F3ParticipationTicket("good ticket"), nil | ||
default: | ||
panic("unexpected ticket") | ||
} | ||
} | ||
|
||
func (m *manifestFailAPI) F3GetProgress(ctx context.Context) (gpbft.Instant, error) { | ||
return gpbft.Instant{}, nil | ||
} | ||
|
||
func (m *manifestFailAPI) F3Participate(ctx context.Context, ticket api.F3ParticipationTicket) (api.F3ParticipationLease, error) { | ||
return api.F3ParticipationLease{ | ||
Network: "test", | ||
Issuer: "foobar", | ||
MinerID: 0, | ||
FromInstance: 0, | ||
ValidityTerm: 10, | ||
}, nil | ||
} | ||
|
||
// Test that we correctly handle failed requests for the manifest and keep trying to get it. | ||
func TestParticipantManifestFailure(t *testing.T) { | ||
api := &manifestFailAPI{manifestRequested: make(chan struct{}, 5)} | ||
addr, err := address.NewIDAddress(1000) | ||
require.NoError(t, err) | ||
|
||
p := lf3.NewParticipant(context.Background(), api, dtypes.MinerAddress(addr), | ||
&backoff.Backoff{ | ||
Min: 1 * time.Second, | ||
Max: 1 * time.Minute, | ||
Factor: 1.5, | ||
}, 13, 5) | ||
require.NoError(t, p.Start(context.Background())) | ||
<-api.manifestRequested | ||
<-api.manifestRequested | ||
<-api.manifestRequested | ||
require.NoError(t, p.Stop(context.Background())) | ||
} |