package thirdparty
import "github.com/mmcloughlin/avo/tests/thirdparty"
Package thirdparty executes integration tests based on third-party packages that use avo.
Index ¶
- func StorePackages(w io.Writer, pkgs Packages) error
- func StorePackagesFile(filename string, pkgs Packages) error
- type Context
- type GithubRepository
- type Metadata
- type Package
- func (p *Package) ID() string
- func (p *Package) Reason() string
- func (p *Package) Skip() bool
- func (p *Package) Steps(c *Context) []*Step
- func (p *Package) Validate() error
- type Packages
- func LoadPackages(r io.Reader) (Packages, error)
- func LoadPackagesFile(filename string) (Packages, error)
- func (p Packages) Validate() error
- type Step
Functions ¶
func StorePackages ¶
StorePackages writes a list of package configurations in JSON format.
func StorePackagesFile ¶
StorePackagesFile writes a list of package configurations to a JSON file.
Types ¶
type Context ¶
type Context struct { // Path to the avo version under test. AvoDirectory string // Path to the checked out third-party repository. RepositoryDirectory string }
Context specifies execution environment parameters for a third-party test.
type GithubRepository ¶
GithubRepository specifies a repository on github.
func (GithubRepository) CloneURL ¶
func (r GithubRepository) CloneURL() string
CloneURL returns the git clone URL.
func (GithubRepository) String ¶
func (r GithubRepository) String() string
type Metadata ¶
type Metadata struct { // Repository description. Description string `json:"description,omitempty"` // Homepage URL. Not the same as the Github page. Homepage string `json:"homepage,omitempty"` // Number of Github stars. Stars int `json:"stars,omitempty"` }
Metadata about the repository.
type Package ¶
type Package struct { // Repository the package belongs to. At the moment, all packages are // available on github. Repository GithubRepository `json:"repository"` // Repository metadata. Metadata Metadata `json:"metadata"` // Default git branch. This is used when testing against the latest version. DefaultBranch string `json:"default_branch,omitempty"` // Version as a git sha, tag or branch. Version string `json:"version"` // Sub-package within the repository under test. All file path references // will be relative to this directory. If empty the root of the repository // is used. SubPackage string `json:"pkg,omitempty"` // Path to the module file for the avo generator package. This is necessary // so the integration test can insert replace directives to point at the avo // version under test. Module string `json:"module"` // Setup steps. These run prior to the insertion of avo replace directives, // therefore should be used if it's necessary to initialize new go modules // within the repository. Setup []*Step `json:"setup,omitempty"` // Steps to run the avo code generator. Generate []*Step `json:"generate"` // generate commands to run // Test steps. If empty, defaults to "go test ./...". Test []*Step `json:"test,omitempty"` // If the package test has a known problem, record it by setting this to a // non-zero avo issue number. If set, the package will be skipped in // testing. KnownIssue int `json:"known_issue,omitempty"` }
Package defines an integration test based on a third-party package using avo.
func (*Package) ID ¶
ID returns an identifier for the package.
func (*Package) Reason ¶
Reason returns the reason why the test is skipped.
func (*Package) Skip ¶
Skip reports whether the package test should be skipped. If skipped, a known issue will be set.
func (*Package) Steps ¶
Steps generates the list of steps required to execute the integration test for this package. Context specifies execution environment parameters.
func (*Package) Validate ¶
Validate package definition.
type Packages ¶
type Packages []*Package
Packages is a collection of third-party integration tests.
func LoadPackages ¶
LoadPackages loads a list of package configurations from JSON format.
func LoadPackagesFile ¶
LoadPackagesFile loads a list of package configurations from a JSON file.
func (Packages) Validate ¶
Validate the package collection.
type Step ¶
type Step struct { Name string `json:"name,omitempty"` WorkingDirectory string `json:"dir,omitempty"` Commands []string `json:"commands"` }
Step represents a set of commands to run as part of the testing plan for a third-party package.
func (*Step) Validate ¶
Validate step parameters.
Source Files ¶
- Version
- v0.4.0
- Published
- Nov 13, 2021
- Platform
- windows/amd64
- Imports
- 8 packages
- Last checked
- 1 month ago –
Tools for package owners.