sealing pipeline: Test clearing CreationTime
This commit is contained in:
parent
d8c1b67a22
commit
efe2d8da8a
@ -461,6 +461,7 @@ func (evt SectorRevertUpgradeToProving) apply(state *SectorInfo) {
|
|||||||
state.ReplicaUpdateMessage = nil
|
state.ReplicaUpdateMessage = nil
|
||||||
state.Pieces = state.CCPieces
|
state.Pieces = state.CCPieces
|
||||||
state.CCPieces = nil
|
state.CCPieces = nil
|
||||||
|
state.CreationTime = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
type SectorRetrySubmitReplicaUpdateWait struct{}
|
type SectorRetrySubmitReplicaUpdateWait struct{}
|
||||||
|
@ -390,3 +390,64 @@ func TestTicketExpired(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCreationTimeCleared(t *testing.T) {
|
||||||
|
var notif []struct{ before, after SectorInfo }
|
||||||
|
ma, _ := address.NewIDAddress(55151)
|
||||||
|
m := test{
|
||||||
|
s: &Sealing{
|
||||||
|
maddr: ma,
|
||||||
|
stats: SectorStats{
|
||||||
|
bySector: map[abi.SectorID]SectorState{},
|
||||||
|
byState: map[SectorState]int64{},
|
||||||
|
},
|
||||||
|
notifee: func(before, after SectorInfo) {
|
||||||
|
notif = append(notif, struct{ before, after SectorInfo }{before, after})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
t: t,
|
||||||
|
state: &SectorInfo{State: Available},
|
||||||
|
}
|
||||||
|
|
||||||
|
// sector starts with zero CreationTime
|
||||||
|
m.planSingle(SectorStartCCUpdate{})
|
||||||
|
require.Equal(m.t, m.state.State, SnapDealsWaitDeals)
|
||||||
|
|
||||||
|
require.Equal(t, int64(0), m.state.CreationTime)
|
||||||
|
|
||||||
|
// First AddPiece will set CreationTime
|
||||||
|
m.planSingle(SectorAddPiece{})
|
||||||
|
require.Equal(m.t, m.state.State, SnapDealsAddPiece)
|
||||||
|
|
||||||
|
require.NotEqual(t, int64(0), m.state.CreationTime)
|
||||||
|
|
||||||
|
m.planSingle(SectorPieceAdded{})
|
||||||
|
require.Equal(m.t, m.state.State, SnapDealsWaitDeals)
|
||||||
|
|
||||||
|
// abort shoult clean up CreationTime
|
||||||
|
m.planSingle(SectorAbortUpgrade{})
|
||||||
|
require.Equal(m.t, m.state.State, AbortUpgrade)
|
||||||
|
|
||||||
|
require.NotEqual(t, int64(0), m.state.CreationTime)
|
||||||
|
|
||||||
|
m.planSingle(SectorRevertUpgradeToProving{})
|
||||||
|
require.Equal(m.t, m.state.State, Proving)
|
||||||
|
|
||||||
|
require.Equal(t, int64(0), m.state.CreationTime)
|
||||||
|
|
||||||
|
m.planSingle(SectorMarkForUpdate{})
|
||||||
|
|
||||||
|
// in case CreationTime was set for whatever reason (lotus bug / manual sector state change)
|
||||||
|
// make sure we clean it up when starting upgrade
|
||||||
|
m.state.CreationTime = 325
|
||||||
|
m.planSingle(SectorStartCCUpdate{})
|
||||||
|
require.Equal(m.t, m.state.State, SnapDealsWaitDeals)
|
||||||
|
|
||||||
|
require.Equal(t, int64(0), m.state.CreationTime)
|
||||||
|
|
||||||
|
// "First" AddPiece will set CreationTime
|
||||||
|
m.planSingle(SectorAddPiece{})
|
||||||
|
require.Equal(m.t, m.state.State, SnapDealsAddPiece)
|
||||||
|
|
||||||
|
require.NotEqual(t, int64(0), m.state.CreationTime)
|
||||||
|
}
|
||||||
|
@ -2,11 +2,11 @@ package sealing
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"go.uber.org/zap"
|
|
||||||
"sort"
|
"sort"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/ipfs/go-cid"
|
"github.com/ipfs/go-cid"
|
||||||
|
"go.uber.org/zap"
|
||||||
"golang.org/x/xerrors"
|
"golang.org/x/xerrors"
|
||||||
|
|
||||||
"github.com/filecoin-project/go-commp-utils/zerocomm"
|
"github.com/filecoin-project/go-commp-utils/zerocomm"
|
||||||
|
Loading…
Reference in New Issue
Block a user