Documentation ¶
Overview ¶
Package testnodes contains stubbed implementations of the RetrievalProviderNode and RetrievalClientNode interface to simulate communications with a filecoin node
Index ¶
- type TestRetrievalClientNode
- func (trcn *TestRetrievalClientNode) AllocateLane(ctx context.Context, paymentChannel address.Address) (uint64, error)
- func (trcn *TestRetrievalClientNode) CheckAvailableFunds(ctx context.Context, payCh address.Address) (retrievalmarket.ChannelAvailableFunds, error)
- func (trcn *TestRetrievalClientNode) CreatePaymentVoucher(ctx context.Context, paymentChannel address.Address, amount abi.TokenAmount, ...) (*paychtypes.SignedVoucher, error)
- func (trcn *TestRetrievalClientNode) ExpectKnownAddresses(p retrievalmarket.RetrievalPeer, maddrs []ma.Multiaddr)
- func (trcn *TestRetrievalClientNode) GetChainHead(ctx context.Context) (shared.TipSetToken, abi.ChainEpoch, error)
- func (trcn *TestRetrievalClientNode) GetKnownAddresses(ctx context.Context, p retrievalmarket.RetrievalPeer, tok shared.TipSetToken) ([]ma.Multiaddr, error)
- func (trcn *TestRetrievalClientNode) GetOrCreatePaymentChannel(ctx context.Context, clientAddress address.Address, ...) (address.Address, cid.Cid, error)
- func (trcn *TestRetrievalClientNode) ResetChannelAvailableFunds(channelAvailableFunds retrievalmarket.ChannelAvailableFunds)
- func (trcn *TestRetrievalClientNode) VerifyExpectations(t *testing.T)
- func (trcn *TestRetrievalClientNode) WaitForPaymentChannelReady(ctx context.Context, messageCID cid.Cid) (address.Address, error)
- type TestRetrievalClientNodeParams
- type TestRetrievalProviderNode
- func (trpn *TestRetrievalProviderNode) ExpectPricingParams(pieceCID cid.Cid, deals []abi.DealID)
- func (trpn *TestRetrievalProviderNode) ExpectVoucher(paymentChannel address.Address, voucher *paychtypes.SignedVoucher, ...) error
- func (trpn *TestRetrievalProviderNode) GetChainHead(ctx context.Context) (shared.TipSetToken, abi.ChainEpoch, error)
- func (trpn *TestRetrievalProviderNode) GetMinerWorkerAddress(ctx context.Context, addr address.Address, tok shared.TipSetToken) (address.Address, error)
- func (trpn *TestRetrievalProviderNode) GetRetrievalPricingInput(_ context.Context, pieceCID cid.Cid, deals []abi.DealID) (retrievalmarket.PricingInput, error)
- func (trpn *TestRetrievalProviderNode) MarkVerified()
- func (trpn *TestRetrievalProviderNode) MaxReceivedVoucher() abi.TokenAmount
- func (trpn *TestRetrievalProviderNode) SavePaymentVoucher(ctx context.Context, paymentChannel address.Address, ...) (abi.TokenAmount, error)
- func (trpn *TestRetrievalProviderNode) VerifyExpectations(t *testing.T)
- type TestSectorAccessor
- func (trpn *TestSectorAccessor) ExpectFailedUnseal(sectorID abi.SectorNumber, offset, length abi.UnpaddedPieceSize)
- func (trpn *TestSectorAccessor) ExpectUnseal(sectorID abi.SectorNumber, offset, length abi.UnpaddedPieceSize, data []byte)
- func (trpn *TestSectorAccessor) FinishUnseal()
- func (trpn *TestSectorAccessor) IsUnsealed(ctx context.Context, sectorID abi.SectorNumber, offset abi.UnpaddedPieceSize, ...) (bool, error)
- func (trpn *TestSectorAccessor) MarkUnsealed(ctx context.Context, sectorID abi.SectorNumber, offset abi.UnpaddedPieceSize, ...)
- func (trpn *TestSectorAccessor) PauseUnseal()
- func (trpn *TestSectorAccessor) StubUnseal(sectorID abi.SectorNumber, offset, length abi.UnpaddedPieceSize, data []byte)
- func (trpn *TestSectorAccessor) UnsealSector(ctx context.Context, sectorID abi.SectorNumber, ...) (io.ReadCloser, error)
- func (trpn *TestSectorAccessor) VerifyExpectations(t *testing.T)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TestRetrievalClientNode ¶
type TestRetrievalClientNode struct {
// contains filtered or unexported fields
}
TestRetrievalClientNode is a node adapter for a retrieval client whose responses are stubbed
func NewTestRetrievalClientNode ¶
func NewTestRetrievalClientNode(params TestRetrievalClientNodeParams) *TestRetrievalClientNode
NewTestRetrievalClientNode initializes a new TestRetrievalClientNode based on the given params
func (*TestRetrievalClientNode) AllocateLane ¶
func (trcn *TestRetrievalClientNode) AllocateLane(ctx context.Context, paymentChannel address.Address) (uint64, error)
AllocateLane creates a mock lane on a payment channel
func (*TestRetrievalClientNode) CheckAvailableFunds ¶ added in v0.6.0
func (trcn *TestRetrievalClientNode) CheckAvailableFunds(ctx context.Context, payCh address.Address) (retrievalmarket.ChannelAvailableFunds, error)
CheckAvailableFunds returns the amount of available funds in a payment channel
func (*TestRetrievalClientNode) CreatePaymentVoucher ¶
func (trcn *TestRetrievalClientNode) CreatePaymentVoucher(ctx context.Context, paymentChannel address.Address, amount abi.TokenAmount, lane uint64, tok shared.TipSetToken) (*paychtypes.SignedVoucher, error)
CreatePaymentVoucher creates a mock payment voucher based on a channel and lane
func (*TestRetrievalClientNode) ExpectKnownAddresses ¶ added in v0.5.4
func (trcn *TestRetrievalClientNode) ExpectKnownAddresses(p retrievalmarket.RetrievalPeer, maddrs []ma.Multiaddr)
ExpectKnownAddresses stubs a return for a look up of known addresses for the given retrieval peer and the fact that it was looked up is verified with VerifyExpectations
func (*TestRetrievalClientNode) GetChainHead ¶
func (trcn *TestRetrievalClientNode) GetChainHead(ctx context.Context) (shared.TipSetToken, abi.ChainEpoch, error)
GetChainHead returns a mock value for the chain head
func (*TestRetrievalClientNode) GetKnownAddresses ¶ added in v0.5.4
func (trcn *TestRetrievalClientNode) GetKnownAddresses(ctx context.Context, p retrievalmarket.RetrievalPeer, tok shared.TipSetToken) ([]ma.Multiaddr, error)
GetKnownAddresses gets any on known multiaddrs for a given address, so we can add to the peer store
func (*TestRetrievalClientNode) GetOrCreatePaymentChannel ¶
func (trcn *TestRetrievalClientNode) GetOrCreatePaymentChannel(ctx context.Context, clientAddress address.Address, minerAddress address.Address, clientFundsAvailable abi.TokenAmount, tok shared.TipSetToken) (address.Address, cid.Cid, error)
GetOrCreatePaymentChannel returns a mocked payment channel
func (*TestRetrievalClientNode) ResetChannelAvailableFunds ¶ added in v0.6.0
func (trcn *TestRetrievalClientNode) ResetChannelAvailableFunds(channelAvailableFunds retrievalmarket.ChannelAvailableFunds)
ResetChannelAvailableFunds is a way to manually change the funds in the payment channel
func (*TestRetrievalClientNode) VerifyExpectations ¶ added in v0.5.4
func (trcn *TestRetrievalClientNode) VerifyExpectations(t *testing.T)
VerifyExpectations verifies that all expected known addresses were looked up
func (*TestRetrievalClientNode) WaitForPaymentChannelReady ¶ added in v0.6.0
func (trcn *TestRetrievalClientNode) WaitForPaymentChannelReady(ctx context.Context, messageCID cid.Cid) (address.Address, error)
WaitForPaymentChannelReady simulates waiting for a payment channel to finish adding funds
type TestRetrievalClientNodeParams ¶
type TestRetrievalClientNodeParams struct { PayCh address.Address PayChErr error CreatePaychCID, AddFundsCID cid.Cid Lane uint64 LaneError error Voucher *paychtypes.SignedVoucher VoucherError error AllocateLaneRecorder func(address.Address) PaymentVoucherRecorder func(voucher *paychtypes.SignedVoucher) PaymentChannelRecorder func(address.Address, address.Address, abi.TokenAmount) AddFundsOnly bool WaitForReadyErr error ChannelAvailableFunds retrievalmarket.ChannelAvailableFunds CheckAvailableFundsErr error IntegrationTest bool }
TestRetrievalClientNodeParams are parameters for initializing a TestRetrievalClientNode
type TestRetrievalProviderNode ¶
type TestRetrievalProviderNode struct { ChainHeadError error // contains filtered or unexported fields }
TestRetrievalProviderNode is a node adapter for a retrieval provider whose responses are mocked
func NewTestRetrievalProviderNode ¶
func NewTestRetrievalProviderNode() *TestRetrievalProviderNode
NewTestRetrievalProviderNode instantiates a new TestRetrievalProviderNode
func (*TestRetrievalProviderNode) ExpectPricingParams ¶ added in v1.5.0
func (trpn *TestRetrievalProviderNode) ExpectPricingParams(pieceCID cid.Cid, deals []abi.DealID)
func (*TestRetrievalProviderNode) ExpectVoucher ¶
func (trpn *TestRetrievalProviderNode) ExpectVoucher( paymentChannel address.Address, voucher *paychtypes.SignedVoucher, proof []byte, expectedAmount abi.TokenAmount, actualAmount abi.TokenAmount, expectedErr error) error
ExpectVoucher sets a voucher to be expected by SavePaymentVoucher
paymentChannel: the address of the payment channel the client creates voucher: the voucher to match proof: the proof to use (can be blank) expectedAmount: the expected tokenamount for this voucher actualAmount: the actual amount to use. use same as expectedAmount unless you want to trigger an error expectedErr: an error message to expect
func (*TestRetrievalProviderNode) GetChainHead ¶
func (trpn *TestRetrievalProviderNode) GetChainHead(ctx context.Context) (shared.TipSetToken, abi.ChainEpoch, error)
GetChainHead returns a mock value for the chain head
func (*TestRetrievalProviderNode) GetMinerWorkerAddress ¶
func (trpn *TestRetrievalProviderNode) GetMinerWorkerAddress(ctx context.Context, addr address.Address, tok shared.TipSetToken) (address.Address, error)
GetMinerWorkerAddress translates an address
func (*TestRetrievalProviderNode) GetRetrievalPricingInput ¶ added in v1.5.0
func (trpn *TestRetrievalProviderNode) GetRetrievalPricingInput(_ context.Context, pieceCID cid.Cid, deals []abi.DealID) (retrievalmarket.PricingInput, error)
func (*TestRetrievalProviderNode) MarkVerified ¶ added in v1.5.0
func (trpn *TestRetrievalProviderNode) MarkVerified()
func (*TestRetrievalProviderNode) MaxReceivedVoucher ¶ added in v1.3.0
func (trpn *TestRetrievalProviderNode) MaxReceivedVoucher() abi.TokenAmount
func (*TestRetrievalProviderNode) SavePaymentVoucher ¶
func (trpn *TestRetrievalProviderNode) SavePaymentVoucher( ctx context.Context, paymentChannel address.Address, voucher *paychtypes.SignedVoucher, proof []byte, expectedAmount abi.TokenAmount, tok shared.TipSetToken) (abi.TokenAmount, error)
SavePaymentVoucher simulates saving a payment voucher with a stubbed result
func (*TestRetrievalProviderNode) VerifyExpectations ¶
func (trpn *TestRetrievalProviderNode) VerifyExpectations(t *testing.T)
VerifyExpectations verifies that all expected calls were made and no other calls were made
type TestSectorAccessor ¶ added in v1.8.0
type TestSectorAccessor struct {
// contains filtered or unexported fields
}
TestSectorAccessor is a mock implementation of the SectorAccessor
func NewTestSectorAccessor ¶ added in v1.8.0
func NewTestSectorAccessor() *TestSectorAccessor
NewTestSectorAccessor instantiates a new TestSectorAccessor
func (*TestSectorAccessor) ExpectFailedUnseal ¶ added in v1.8.0
func (trpn *TestSectorAccessor) ExpectFailedUnseal(sectorID abi.SectorNumber, offset, length abi.UnpaddedPieceSize)
ExpectFailedUnseal indicates an expectation that a call will be made to unseal a sector with the given params and should fail
func (*TestSectorAccessor) ExpectUnseal ¶ added in v1.8.0
func (trpn *TestSectorAccessor) ExpectUnseal(sectorID abi.SectorNumber, offset, length abi.UnpaddedPieceSize, data []byte)
ExpectUnseal indicates an expectation that a call will be made to unseal a sector with the given params and should return the given data
func (*TestSectorAccessor) FinishUnseal ¶ added in v1.8.0
func (trpn *TestSectorAccessor) FinishUnseal()
func (*TestSectorAccessor) IsUnsealed ¶ added in v1.8.0
func (trpn *TestSectorAccessor) IsUnsealed(ctx context.Context, sectorID abi.SectorNumber, offset abi.UnpaddedPieceSize, length abi.UnpaddedPieceSize) (bool, error)
func (*TestSectorAccessor) MarkUnsealed ¶ added in v1.8.0
func (trpn *TestSectorAccessor) MarkUnsealed(ctx context.Context, sectorID abi.SectorNumber, offset abi.UnpaddedPieceSize, length abi.UnpaddedPieceSize)
func (*TestSectorAccessor) PauseUnseal ¶ added in v1.8.0
func (trpn *TestSectorAccessor) PauseUnseal()
func (*TestSectorAccessor) StubUnseal ¶ added in v1.8.0
func (trpn *TestSectorAccessor) StubUnseal(sectorID abi.SectorNumber, offset, length abi.UnpaddedPieceSize, data []byte)
StubUnseal stubs a response to attempting to unseal a sector with the given paramters
func (*TestSectorAccessor) UnsealSector ¶ added in v1.8.0
func (trpn *TestSectorAccessor) UnsealSector(ctx context.Context, sectorID abi.SectorNumber, offset, length abi.UnpaddedPieceSize) (io.ReadCloser, error)
UnsealSector simulates unsealing a sector by returning a stubbed response or erroring
func (*TestSectorAccessor) VerifyExpectations ¶ added in v1.8.0
func (trpn *TestSectorAccessor) VerifyExpectations(t *testing.T)
VerifyExpectations verifies that all expected calls were made and no other calls were made