config

package
v0.18.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 6, 2020 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ImageDefinition

type ImageDefinition struct {
	Base    string                 `yaml:"base,omitempty"`
	Version string                 `yaml:"version,omitempty"`
	Exec    string                 `yaml:"exec,omitempty"`
	Options map[string]interface{} `yaml:"options,omitempty"`
}

ImageDefinition describe configuration to the testrunner image

type Metadata

type Metadata struct {
	Name  string   `yaml:"name"`
	Tags  []string `yaml:"tags"`
	Build string   `yaml:"build"`
}

Metadata describes job metadata

func (*Metadata) ExpandEnv added in v0.9.1

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{
	Name:  "Test $tname",
	Tags:  []string{"$ttag"},
	Build: "Build $tbuild",
}

m.ExpandEnv()

fmt.Println(m)
Output:

{Test Envy [xp1] Build Bob}

type Project added in v0.11.0

type Project struct {
	APIVersion string            `yaml:"apiVersion,omitempty"`
	Kind       string            `yaml:"kind,omitempty"`
	Metadata   Metadata          `yaml:"metadata,omitempty"`
	Suites     []Suite           `yaml:"suites,omitempty"`
	Files      []string          `yaml:"files,omitempty"`
	Image      ImageDefinition   `yaml:"image,omitempty"`
	BeforeExec []string          `yaml:"beforeExec,omitempty"`
	Timeout    int               `yaml:"timeout,omitempty"`
	Sauce      SauceConfig       `yaml:"sauce,omitempty"`
	Env        map[string]string `yaml:"env,omitempty"`
	Parallel   bool              `yaml:"parallel,omitempty"`
}

Project represents the project configuration.

func NewJobConfiguration

func NewJobConfiguration(cfgFilePath string) (Project, error)

NewJobConfiguration creates a new job configuration based on a config file

func (*Project) SyncCapabilities added in v0.14.0

func (p *Project) SyncCapabilities()

SyncCapabilities uses the project capabilities if no settings have been defined in the suites.

type Run added in v0.12.0

type Run struct {
	Match       []string `yaml:"match"`
	ProjectPath string   `yaml:"projectPath"`
}

Run represents the configuration for a particular test run. This information is communicated to the test framework.

type RunnerConfiguration

type RunnerConfiguration struct {
	RootDir     string   `yaml:"rootDir"`
	TargetDir   string   `yaml:"targetDir"`
	ExecCommand []string `yaml:"execCommand"`
}

RunnerConfiguration describes configurations for the testrunner

func NewRunnerConfiguration

func NewRunnerConfiguration(cfgFilePath string) (RunnerConfiguration, error)

NewRunnerConfiguration reads yaml file for runner configurations

type SauceConfig added in v0.8.0

type SauceConfig struct {
	Region string `yaml:"region,omitempty"`
}

SauceConfig represents sauce labs related settings.

type Settings added in v0.14.0

type Settings struct {
	BrowserName               string   `yaml:"browserName,omitempty"`
	BrowserVersion            string   `yaml:"browserVersion,omitempty"`
	PlatformName              string   `yaml:"platformName,omitempty"`
	AcceptInsecureCerts       bool     `yaml:"acceptInsecureCerts,omitempty"`
	PageLoadStrategy          bool     `yaml:"pageLoadStrategy,omitempty"`
	SetWindowRect             bool     `yaml:"setWindowRect,omitempty"`
	Timeouts                  Timeouts `yaml:"timeouts,omitempty"`
	StrictFileInteractability bool     `yaml:"strictFileInteractability,omitempty"`
	UnhandledPromptBehavior   string   `yaml:"unhandledPromptBehavior,omitempty"`
}

Settings describes job settings

type Suite added in v0.11.0

type Suite struct {
	Name         string   `yaml:"name,omitempty"`
	Capabilities Settings `yaml:"capabilities,omitempty"`
	Settings     Settings `yaml:"settings,omitempty"`
	Match        string   `yaml:"match,omitempty"`
}

Suite represents the test suite configuration.

type Timeouts

type Timeouts struct {
	Script   int `yaml:"script,omitempty"`
	PageLoad int `yaml:"pageLoad,omitempty"`
	Implicit int `yaml:"implicit,omitempty"`
}

Timeouts describes WebDriver timeouts

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL