cdf3812e40
Co-authored-by: Steven Allen <steven@stebalien.com> Co-authored-by: Raul Kripalani <raulk@users.noreply.github.com> Co-authored-by: Kevin Li <ychiaoli18@users.noreply.github.com> Co-authored-by: vyzo <vyzo@hackzen.org> Co-authored-by: Ian Davis <nospam@iandavis.com> Co-authored-by: Aayush Rajasekaran <arajasek94@gmail.com> Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com> Co-authored-by: Jennifer Wang <jiayingw703@gmail.com> Co-authored-by: Geoff Stuart <geoff.vball@gmail.com> Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai> Co-authored-by: Shrenuj Bansal <108157875+shrenujbansal@users.noreply.github.com> Co-authored-by: Geoff Stuart <geoffrey.stuart@protocol.ai> Co-authored-by: Aayush Rajasekaran <aayushrajasekaran@Aayushs-MacBook-Pro.local> Co-authored-by: ZenGround0 <5515260+ZenGround0@users.noreply.github.com> Co-authored-by: zenground0 <ZenGround0@users.noreply.github.com>
34 lines
939 B
Go
34 lines
939 B
Go
package kit
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
)
|
|
|
|
// AssertActorType verifies that the supplied address is an actor of the
|
|
// specified type (as per its manifest key).
|
|
func (f *TestFullNode) AssertActorType(ctx context.Context, addr address.Address, actorType string) {
|
|
// validate that an placeholder was created
|
|
act, err := f.StateGetActor(ctx, addr, types.EmptyTSK)
|
|
require.NoError(f.t, err)
|
|
|
|
nv, err := f.StateNetworkVersion(ctx, types.EmptyTSK)
|
|
require.NoError(f.t, err)
|
|
|
|
av, err := actorstypes.VersionForNetwork(nv)
|
|
require.NoError(f.t, err)
|
|
|
|
codecid, exists := actors.GetActorCodeID(av, actorType)
|
|
require.True(f.t, exists)
|
|
|
|
// check the code CID
|
|
require.Equal(f.t, codecid, act.Code)
|
|
}
|