Documentation ¶
Index ¶
- Variables
- func CleanNpmPackages(packages map[string]string, denyList []string) map[string]string
- func IsSupportedDeviceType(deviceType string) bool
- func StandardizeVersionFormat(version string) string
- func Unmarshal(cfgPath string, project interface{}) error
- type ArtifactDownload
- type Artifacts
- type Defaults
- type Device
- type DeviceOptions
- type Docker
- type DockerFileMode
- type Emulator
- type Metadata
- type Notifications
- type Npm
- type Reporters
- type SauceConfig
- type Simulator
- type Slack
- type Tunnel
- type TypeDef
- type When
Examples ¶
Constants ¶
This section is empty.
Variables ¶
var SupportedDeviceTypes = []string{"ANY", "PHONE", "TABLET"}
SupportedDeviceTypes contains the list of supported device types.
Functions ¶
func CleanNpmPackages ¶ added in v0.63.4
CleanNpmPackages removes any packages in denyList from packages
func IsSupportedDeviceType ¶ added in v0.52.0
IsSupportedDeviceType check that the specified deviceType is valid.
func StandardizeVersionFormat ¶
StandardizeVersionFormat remove the leading v in version to ensure reliable comparisons.
Types ¶
type ArtifactDownload ¶ added in v0.36.0
type ArtifactDownload struct { Match []string `yaml:"match,omitempty" json:"match"` When When `yaml:"when,omitempty" json:"when"` Directory string `yaml:"directory,omitempty" json:"directory"` }
ArtifactDownload represents the test artifacts configuration.
type Artifacts ¶ added in v0.36.0
type Artifacts struct {
Download ArtifactDownload `yaml:"download,omitempty" json:"download"`
}
Artifacts represents the test artifacts configuration.
type Defaults ¶ added in v0.37.0
type Defaults struct { Mode string `yaml:"mode,omitempty" json:"mode"` Timeout time.Duration `yaml:"timeout,omitempty" json:"timeout"` }
Defaults represents default suite settings.
type Device ¶ added in v0.36.0
type Device struct { ID string `yaml:"id,omitempty" json:"id"` Name string `yaml:"name,omitempty" json:"name"` PlatformName string `yaml:"platformName,omitempty" json:"platformName"` PlatformVersion string `yaml:"platformVersion,omitempty" json:"platformVersion"` Options DeviceOptions `yaml:"options,omitempty" json:"options,omitempty"` }
Device represents the RDC device configuration.
type DeviceOptions ¶ added in v0.43.0
type DeviceOptions struct { CarrierConnectivity bool `yaml:"carrierConnectivity,omitempty" json:"carrierConnectivity"` DeviceType string `yaml:"deviceType,omitempty" json:"deviceType,omitempty"` Private bool `yaml:"private,omitempty" json:"private,omitempty"` }
DeviceOptions represents the devices capabilities required from a real device.
type Docker ¶
type Docker struct { FileTransfer DockerFileMode `yaml:"fileTransfer,omitempty" json:"fileTransfer,omitempty"` Image string `yaml:"image,omitempty" json:"image,omitempty"` }
Docker represents docker settings.
type DockerFileMode ¶
type DockerFileMode string
DockerFileMode represent the file providing method
const ( DockerFileMount DockerFileMode = "mount" DockerFileCopy DockerFileMode = "copy" )
DockerFile* represent the different modes
type Emulator ¶ added in v0.43.0
type Emulator struct { Name string `yaml:"name,omitempty" json:"name,omitempty"` PlatformName string `yaml:"platformName,omitempty" json:"platformName"` Orientation string `yaml:"orientation,omitempty" json:"orientation,omitempty"` PlatformVersions []string `yaml:"platformVersions,omitempty" json:"platformVersions,omitempty"` }
Emulator represents the emulator configuration.
type Metadata ¶
type Metadata struct { Tags []string `yaml:"tags" json:"tags,omitempty"` Build string `yaml:"build" json:"build"` }
Metadata describes job metadata
func (*Metadata) ExpandEnv ¶
func (m *Metadata) ExpandEnv()
ExpandEnv expands environment variables inside metadata fields.
Example ¶
os.Setenv("tname", "Envy") os.Setenv("ttag", "xp1") os.Setenv("tbuild", "Bob") m := Metadata{ Tags: []string{"$ttag"}, Build: "Build $tbuild", } m.ExpandEnv() fmt.Println(m)
Output: {[xp1] Build Bob}
type Notifications ¶ added in v0.66.0
type Notifications struct {
Slack Slack `yaml:"slack,omitempty" json:"slack"`
}
Notifications represents the test notifications configuration.
type Npm ¶
type Npm struct { Registry string `yaml:"registry,omitempty" json:"registry,omitempty"` Packages map[string]string `yaml:"packages,omitempty" json:"packages"` StrictSSL bool `yaml:"strictSSL,omitempty" json:"strictSSL"` }
Npm represents the npm settings
type Reporters ¶ added in v0.62.0
type Reporters struct { JUnit struct { Enabled bool `yaml:"enabled"` Filename string `yaml:"filename"` } `yaml:"junit"` }
Reporters represents the reporter configuration.
type SauceConfig ¶
type SauceConfig struct { Region string `yaml:"region,omitempty" json:"region"` Metadata Metadata `yaml:"metadata,omitempty" json:"metadata"` Tunnel Tunnel `yaml:"tunnel,omitempty" json:"tunnel,omitempty"` Concurrency int `yaml:"concurrency,omitempty" json:"concurrency,omitempty"` Sauceignore string `yaml:"sauceignore,omitempty" json:"sauceignore,omitempty"` Experiments map[string]string `yaml:"experiments,omitempty" json:"experiments,omitempty"` Retries int `yaml:"retries,omitempty" json:"-"` }
SauceConfig represents sauce labs related settings.
type Simulator ¶ added in v0.49.0
type Simulator Emulator
Simulator represents the simulator configuration.
type Slack ¶ added in v0.66.0
type Slack struct { Channels []string `yaml:"channels,omitempty" json:"channels"` Send When `yaml:"send,omitempty" json:"send"` }
Slack represents slack configuration.
type Tunnel ¶
type Tunnel struct { // ID represents the tunnel identifier (aka tunnel name). // Deprecated. Use Name instead. ID string `yaml:"id,omitempty" json:"id,omitempty"` Name string `yaml:"name,omitempty" json:"name,omitempty"` // Parent represents the tunnel owner. // Deprecated. Use Owner instead. Parent string `yaml:"parent,omitempty" json:"parent,omitempty"` Owner string `yaml:"owner,omitempty" json:"owner,omitempty"` }
Tunnel represents a sauce labs tunnel.
func (*Tunnel) SetDefaults ¶ added in v0.68.2
func (t *Tunnel) SetDefaults()
SetDefaults updates tunnel default values