Documentation ¶
Index ¶
- Constants
- Variables
- func ChunkSize(minPieces uint64, ct crypto.CipherType) uint64
- func Fuzz() int
- func Miner(dir string) node.NodeParams
- func NewDependencyCustomResolver(lookupIP func(string) ([]net.IP, error)) modules.Dependencies
- func NewGroupBuffer(size int) chan struct{}
- func Retry(tries int, durationBetweenAttempts time.Duration, fn func() error) (err error)
- func TestDir(dirs ...string) string
- type DependencyInterruptOnceOnKeyword
- type GroupParams
- type LocalDir
- func (ld *LocalDir) CreateDir(name string) (*LocalDir, error)
- func (ld *LocalDir) Files() ([]*LocalFile, error)
- func (ld *LocalDir) Name() string
- func (ld *LocalDir) NewFile(size int) (*LocalFile, error)
- func (ld *LocalDir) Path() string
- func (ld *LocalDir) PopulateDir(files, dirs, levels uint) error
- type LocalFile
- type RemoteDir
- type RemoteFile
- type TestGroup
- func (tg *TestGroup) AddNodeN(np node.NodeParams, n int) ([]*TestNode, error)
- func (tg *TestGroup) AddNodes(nps ...node.NodeParams) ([]*TestNode, error)
- func (tg *TestGroup) Close() error
- func (tg *TestGroup) Hosts() []*TestNode
- func (tg *TestGroup) Miners() []*TestNode
- func (tg *TestGroup) Nodes() []*TestNode
- func (tg *TestGroup) RemoveNode(tn *TestNode) error
- func (tg *TestGroup) Renters() []*TestNode
- func (tg *TestGroup) RestartNode(tn *TestNode) error
- func (tg *TestGroup) SetRenterAllowance(renter *TestNode, allowance modules.Allowance) error
- func (tg *TestGroup) StartNode(tn *TestNode) error
- func (tg *TestGroup) StopNode(tn *TestNode) error
- func (tg *TestGroup) Sync() error
- type TestNode
- func (tn *TestNode) BlockHeight() (types.BlockHeight, error)
- func (tn *TestNode) ConfirmedBalance() (types.Currency, error)
- func (tn *TestNode) ConfirmedTransactions() ([]modules.ProcessedTransaction, error)
- func (tn *TestNode) Dirs() ([]string, error)
- func (tn *TestNode) DownloadByStream(rf *RemoteFile) (data []byte, err error)
- func (tn *TestNode) DownloadDir() *LocalDir
- func (tn *TestNode) DownloadInfo(lf *LocalFile, rf *RemoteFile) (*api.DownloadInfo, error)
- func (tn *TestNode) DownloadToDisk(rf *RemoteFile, async bool) (*LocalFile, error)
- func (tn *TestNode) DownloadToDiskPartial(rf *RemoteFile, lf *LocalFile, async bool, offset, length uint64) (*LocalFile, error)
- func (tn *TestNode) File(rf *RemoteFile) (modules.FileInfo, error)
- func (tn *TestNode) Files() ([]modules.FileInfo, error)
- func (tn *TestNode) FilesDir() *LocalDir
- func (tn *TestNode) KnowsHost(host *TestNode) error
- func (tn *TestNode) MineBlock() error
- func (tn *TestNode) NewLocalDir() *LocalDir
- func (tn *TestNode) PrintDebugInfo(t *testing.T, contractInfo, hostInfo, renterInfo bool)
- func (tn *TestNode) Rename(rf *RemoteFile, newPath string) (*RemoteFile, error)
- func (tn *TestNode) RenterDir() string
- func (tn *TestNode) RenterFilesDir() string
- func (tn *TestNode) RestartNode() error
- func (tn *TestNode) SetFileRepairPath(rf *RemoteFile, lf *LocalFile) error
- func (tn *TestNode) SiaPath(path string) string
- func (tn *TestNode) StartNode() error
- func (tn *TestNode) StopNode() error
- func (tn *TestNode) Stream(rf *RemoteFile) (data []byte, err error)
- func (tn *TestNode) StreamPartial(rf *RemoteFile, lf *LocalFile, from, to uint64) (data []byte, err error)
- func (tn *TestNode) Upload(lf *LocalFile, siapath string, dataPieces, parityPieces uint64, force bool) (*RemoteFile, error)
- func (tn *TestNode) UploadBlocking(localFile *LocalFile, dataPieces uint64, parityPieces uint64, force bool) (*RemoteFile, error)
- func (tn *TestNode) UploadDirectory(ld *LocalDir) (*RemoteDir, error)
- func (tn *TestNode) UploadNewDirectory() (*RemoteDir, error)
- func (tn *TestNode) UploadNewFile(filesize int, dataPieces uint64, parityPieces uint64, force bool) (*LocalFile, *RemoteFile, error)
- func (tn *TestNode) UploadNewFileBlocking(filesize int, dataPieces uint64, parityPieces uint64, force bool) (*LocalFile, *RemoteFile, error)
- func (tn *TestNode) WaitForDecreasingRedundancy(rf *RemoteFile, redundancy float64) error
- func (tn *TestNode) WaitForDownload(lf *LocalFile, rf *RemoteFile) error
- func (tn *TestNode) WaitForStuckChunksToBubble() error
- func (tn *TestNode) WaitForStuckChunksToRepair() error
- func (tn *TestNode) WaitForUploadProgress(rf *RemoteFile, progress float64) error
- func (tn *TestNode) WaitForUploadRedundancy(rf *RemoteFile, redundancy float64) error
Constants ¶
const ( // NumberOfParallelGroups is the number of testgroups that can be created in // parallel to prevent `too many open files` errors // // The value of 1 is based on running the siatest package with 8 threads, so // 8 tests can be run in parallel and the testgroup creation is throttled to // 1 at a time NumberOfParallelGroups = 1 )
Variables ¶
var ( // DefaultAllowance is the allowance used for the group's renters DefaultAllowance = modules.Allowance{ Funds: types.SiacoinPrecision.Mul64(1e3), Hosts: 5, Period: 50, RenewWindow: 24, ExpectedStorage: modules.SectorSize, ExpectedUpload: modules.SectorSize / 50, ExpectedDownload: modules.SectorSize / 50, ExpectedRedundancy: 5.0, } )
var ( // ErrFileNotTracked is an error returned by the TestNode in case a file // wasn't accessible due to being unknown to the renter. ErrFileNotTracked = errors.New("file is not tracked by renter") )
var ( // MinerTemplate is a template for a Sia node that has a functioning // miner. The node has a miner and all dependencies, but no other // modules. MinerTemplate = node.NodeParams{ CreateConsensusSet: true, CreateExplorer: false, CreateGateway: true, CreateHost: false, CreateMiner: true, CreateRenter: false, CreateTransactionPool: true, CreateWallet: true, } )
var ( // SiaTestingDir is the directory that contains all of the files and // folders created during testing. SiaTestingDir = filepath.Join(os.TempDir(), "SiaTesting") )
Functions ¶
func ChunkSize ¶ added in v1.3.3
func ChunkSize(minPieces uint64, ct crypto.CipherType) uint64
ChunkSize is a helper method to calculate the size of a chunk depending on the minimum number of pieces required to restore the chunk.
func Fuzz ¶
func Fuzz() int
Fuzz returns 0, 1 or -1. This can be used to test for random off-by-one errors in the code. For example fuzz can be used to create a File that is either sector aligned or off-by-one.
func Miner ¶
func Miner(dir string) node.NodeParams
Miner returns an MinerTemplate filled out with the provided dir.
func NewDependencyCustomResolver ¶ added in v1.3.5
NewDependencyCustomResolver creates a dependency from a given lookupIP method which returns a custom resolver that uses the specified lookupIP method to resolve hostnames.
func NewGroupBuffer ¶ added in v1.4.0
func NewGroupBuffer(size int) chan struct{}
NewGroupBuffer creates a new buffer channel and fills it
Types ¶
type DependencyInterruptOnceOnKeyword ¶ added in v1.3.3
type DependencyInterruptOnceOnKeyword struct { modules.ProductionDependencies // contains filtered or unexported fields }
DependencyInterruptOnceOnKeyword is a generic dependency that interrupts the flow of the program if the argument passed to Disrupt equals str and if f was set to true by calling Fail.
func NewDependencyInterruptOnceOnKeyword ¶ added in v1.3.3
func NewDependencyInterruptOnceOnKeyword(str string) *DependencyInterruptOnceOnKeyword
NewDependencyInterruptOnceOnKeyword creates a new DependencyInterruptOnceOnKeyword from a given disrupt key.
func (*DependencyInterruptOnceOnKeyword) Disable ¶ added in v1.3.3
func (d *DependencyInterruptOnceOnKeyword) Disable()
Disable sets the flag to false to make sure that the dependency won't fail.
func (*DependencyInterruptOnceOnKeyword) Disrupt ¶ added in v1.3.3
func (d *DependencyInterruptOnceOnKeyword) Disrupt(s string) bool
Disrupt returns true if the correct string is provided and if the flag was set to true by calling fail on the dependency beforehand. After simulating a crash the flag will be set to false and fail has to be called again for another disruption.
func (*DependencyInterruptOnceOnKeyword) Fail ¶ added in v1.3.3
func (d *DependencyInterruptOnceOnKeyword) Fail()
Fail causes the next call to Disrupt to return true if the correct string is provided.
type GroupParams ¶
type GroupParams struct { Hosts int // number of hosts to create Renters int // number of renters to create Miners int // number of miners to create }
GroupParams is a helper struct to make creating TestGroups easier.
type LocalDir ¶ added in v1.4.0
type LocalDir struct {
// contains filtered or unexported fields
}
LocalDir is a helper struct that represents a directory on disk that is to be uploaded to the sia network
func (*LocalDir) CreateDir ¶ added in v1.4.0
CreateDir creates a new LocalDir in the current LocalDir with the provide name
func (*LocalDir) PopulateDir ¶ added in v1.4.0
PopulateDir populates a LocalDir levels deep with the number of files and directories provided at each level. The same number of files and directories will be at each level
type LocalFile ¶
type LocalFile struct {
// contains filtered or unexported fields
}
LocalFile is a helper struct that represents a file uploaded to the Sia network.
func (*LocalFile) Equal ¶ added in v1.4.0
Equal will compare the input to the bytes of the local file, returning an error if the bytes are not a perfect match, or if there is an error reading the local file data.
type RemoteDir ¶ added in v1.4.0
type RemoteDir struct {
// contains filtered or unexported fields
}
RemoteDir is a helper struct that represents a directory on the Sia network.
type RemoteFile ¶
type RemoteFile struct {
// contains filtered or unexported fields
}
RemoteFile is a helper struct that represents a file uploaded to the Sia network.
func (*RemoteFile) Checksum ¶ added in v1.4.0
func (rf *RemoteFile) Checksum() crypto.Hash
Checksum returns the checksum of a remote file.
func (*RemoteFile) SiaPath ¶ added in v1.3.4
func (rf *RemoteFile) SiaPath() string
SiaPath returns the siaPath of a remote file.
type TestGroup ¶
type TestGroup struct {
// contains filtered or unexported fields
}
TestGroup is a group of of TestNodes that are funded, synced and ready for upload, download and mining depending on their configuration
func NewGroup ¶
func NewGroup(groupDir string, nodeParams ...node.NodeParams) (*TestGroup, error)
NewGroup creates a group of TestNodes from node params. All the nodes will be connected, synced and funded. Hosts nodes are also announced.
func NewGroupFromTemplate ¶
func NewGroupFromTemplate(groupDir string, groupParams GroupParams) (*TestGroup, error)
NewGroupFromTemplate will create hosts, renters and miners according to the settings in groupParams.
func (*TestGroup) AddNodeN ¶ added in v1.3.3
AddNodeN adds n nodes of a given template to the group.
func (*TestGroup) AddNodes ¶ added in v1.3.3
func (tg *TestGroup) AddNodes(nps ...node.NodeParams) ([]*TestNode, error)
AddNodes creates a node and adds it to the group.
func (*TestGroup) Close ¶
Close closes the group and all its nodes. Closing a node is usually a slow process, but we can speed it up a lot by closing each node in a separate goroutine.
func (*TestGroup) RemoveNode ¶ added in v1.3.3
RemoveNode removes a node from the group and shuts it down.
func (*TestGroup) RestartNode ¶ added in v1.4.0
RestartNode stops a node and then starts it again while conducting a few checks and guaranteeing that the node is connected to the group afterwards.
func (*TestGroup) SetRenterAllowance ¶ added in v1.3.3
SetRenterAllowance finished the setup for the renter test node
func (*TestGroup) StartNode ¶ added in v1.3.3
StartNode starts a node from the group that has previously been stopped.
type TestNode ¶
TestNode is a helper struct for testing that contains a server and a client as embedded fields.
func NewCleanNode ¶
func NewCleanNode(nodeParams node.NodeParams) (*TestNode, error)
NewCleanNode creates a new TestNode that's not yet funded
func NewNode ¶
func NewNode(nodeParams node.NodeParams) (*TestNode, error)
NewNode creates a new funded TestNode
func (*TestNode) BlockHeight ¶ added in v1.4.0
func (tn *TestNode) BlockHeight() (types.BlockHeight, error)
BlockHeight returns the node's consensus modules's synced block height.
func (*TestNode) ConfirmedBalance ¶ added in v1.4.0
ConfirmedBalance returns the confirmed siacoin balance of the node's wallet.
func (*TestNode) ConfirmedTransactions ¶ added in v1.4.0
func (tn *TestNode) ConfirmedTransactions() ([]modules.ProcessedTransaction, error)
ConfirmedTransactions returns all of the wallet's tracked confirmed transactions.
func (*TestNode) Dirs ¶ added in v1.4.0
Dirs returns the siapaths of all dirs of the TestNode's renter in no deterministic order.
func (*TestNode) DownloadByStream ¶
func (tn *TestNode) DownloadByStream(rf *RemoteFile) (data []byte, err error)
DownloadByStream downloads a file and returns its contents as a slice of bytes.
func (*TestNode) DownloadDir ¶ added in v1.4.0
DownloadDir returns the LocalDir that is the testnodes download directory
func (*TestNode) DownloadInfo ¶
func (tn *TestNode) DownloadInfo(lf *LocalFile, rf *RemoteFile) (*api.DownloadInfo, error)
DownloadInfo returns the DownloadInfo struct of a file. If it returns nil, the download has either finished, or was never started in the first place. If the corresponding download info was found, DownloadInfo also performs a few sanity checks on its fields.
func (*TestNode) DownloadToDisk ¶
func (tn *TestNode) DownloadToDisk(rf *RemoteFile, async bool) (*LocalFile, error)
DownloadToDisk downloads a previously uploaded file. The file will be downloaded to a random location and returned as a LocalFile object.
func (*TestNode) DownloadToDiskPartial ¶ added in v1.3.5
func (tn *TestNode) DownloadToDiskPartial(rf *RemoteFile, lf *LocalFile, async bool, offset, length uint64) (*LocalFile, error)
DownloadToDiskPartial downloads a part of a previously uploaded file. The file will be downloaded to a random location and returned as a LocalFile object.
func (*TestNode) File ¶ added in v1.3.3
func (tn *TestNode) File(rf *RemoteFile) (modules.FileInfo, error)
File returns the file queried by the user
func (*TestNode) FilesDir ¶ added in v1.4.0
FilesDir returns the LocalDir that is the testnodes upload directory
func (*TestNode) KnowsHost ¶ added in v1.3.3
KnowsHost checks if tn has a certain host in its hostdb. This check is performed using the host's public key.
func (*TestNode) MineBlock ¶
MineBlock makes the underlying node mine a single block and broadcast it.
func (*TestNode) NewLocalDir ¶ added in v1.4.0
NewLocalDir creates a new LocalDir
func (*TestNode) PrintDebugInfo ¶ added in v1.3.5
PrintDebugInfo prints out helpful debug information when debug tests and ndfs, the boolean arguments dictate what is printed
func (*TestNode) Rename ¶ added in v1.4.0
func (tn *TestNode) Rename(rf *RemoteFile, newPath string) (*RemoteFile, error)
Rename renames a remoteFile and returns the new file.
func (*TestNode) RenterFilesDir ¶ added in v1.4.0
RenterFilesDir returns the renter's files directory
func (*TestNode) RestartNode ¶ added in v1.3.3
RestartNode restarts a TestNode
func (*TestNode) SetFileRepairPath ¶ added in v1.3.5
func (tn *TestNode) SetFileRepairPath(rf *RemoteFile, lf *LocalFile) error
SetFileRepairPath changes the repair path of a remote file to the provided local file's path.
func (*TestNode) SiaPath ¶ added in v1.4.0
SiaPath returns the siapath of a local file or directory to be used for uploading
func (*TestNode) Stream ¶ added in v1.3.3
func (tn *TestNode) Stream(rf *RemoteFile) (data []byte, err error)
Stream uses the streaming endpoint to download a file.
func (*TestNode) StreamPartial ¶ added in v1.3.3
func (tn *TestNode) StreamPartial(rf *RemoteFile, lf *LocalFile, from, to uint64) (data []byte, err error)
StreamPartial uses the streaming endpoint to download a partial file in range [from;to]. A local file can be provided optionally to implicitly check the checksum of the downloaded data.
func (*TestNode) Upload ¶
func (tn *TestNode) Upload(lf *LocalFile, siapath string, dataPieces, parityPieces uint64, force bool) (*RemoteFile, error)
Upload uses the node to upload the file with the option to overwrite if exists.
func (*TestNode) UploadBlocking ¶ added in v1.4.0
func (tn *TestNode) UploadBlocking(localFile *LocalFile, dataPieces uint64, parityPieces uint64, force bool) (*RemoteFile, error)
UploadBlocking attempts to upload an existing file with the option to overwrite if exists and waits for the upload to reach 100% progress and redundancy.
func (*TestNode) UploadDirectory ¶ added in v1.4.0
UploadDirectory uses the node to upload a directory
func (*TestNode) UploadNewDirectory ¶ added in v1.4.0
UploadNewDirectory uses the node to create and upload a directory with a random name
func (*TestNode) UploadNewFile ¶
func (tn *TestNode) UploadNewFile(filesize int, dataPieces uint64, parityPieces uint64, force bool) (*LocalFile, *RemoteFile, error)
UploadNewFile initiates the upload of a filesize bytes large file with the option to overwrite if exists.
func (*TestNode) UploadNewFileBlocking ¶
func (tn *TestNode) UploadNewFileBlocking(filesize int, dataPieces uint64, parityPieces uint64, force bool) (*LocalFile, *RemoteFile, error)
UploadNewFileBlocking uploads a filesize bytes large file with the option to overwrite if exists and waits for the upload to reach 100% progress and redundancy.
func (*TestNode) WaitForDecreasingRedundancy ¶ added in v1.3.3
func (tn *TestNode) WaitForDecreasingRedundancy(rf *RemoteFile, redundancy float64) error
WaitForDecreasingRedundancy waits until the redundancy decreases to a certain point.
func (*TestNode) WaitForDownload ¶
func (tn *TestNode) WaitForDownload(lf *LocalFile, rf *RemoteFile) error
WaitForDownload waits for the download of a file to finish. If a file wasn't scheduled for download it will return instantly without an error. If parent is provided, it will compare the contents of the downloaded file to the contents of tf2 after the download is finished. WaitForDownload also verifies the checksum of the downloaded file.
func (*TestNode) WaitForStuckChunksToBubble ¶ added in v1.4.0
WaitForStuckChunksToBubble waits until the stuck chunks have been bubbled to the root directory metadata
func (*TestNode) WaitForStuckChunksToRepair ¶ added in v1.4.0
WaitForStuckChunksToRepair waits until the stuck chunks have been repaired and bubbled to the root directory metadata
func (*TestNode) WaitForUploadProgress ¶
func (tn *TestNode) WaitForUploadProgress(rf *RemoteFile, progress float64) error
WaitForUploadProgress waits for a file to reach a certain upload progress.
func (*TestNode) WaitForUploadRedundancy ¶
func (tn *TestNode) WaitForUploadRedundancy(rf *RemoteFile, redundancy float64) error
WaitForUploadRedundancy waits for a file to reach a certain upload redundancy.