Documentation ¶
Index ¶
- Variables
- type Config
- type Cypress
- type Project
- func (p *Project) AppendTags(tags []string)
- func (p *Project) ApplyFlags(selectedSuite string) error
- func (p *Project) CleanPackages()
- func (p *Project) FilterFailedTests(suiteName string, report saucereport.SauceReport) error
- func (p *Project) FilterSuites(suiteName string) error
- func (p *Project) GetAPIVersion() string
- func (p *Project) GetArtifactsCfg() config.Artifacts
- func (p *Project) GetBeforeExec() []string
- func (p *Project) GetCLIFlags() map[string]interface{}
- func (p *Project) GetCfgPath() string
- func (p *Project) GetKind() string
- func (p *Project) GetNotifications() config.Notifications
- func (p *Project) GetNpm() config.Npm
- func (p *Project) GetReporter() config.Reporters
- func (p *Project) GetRootDir() string
- func (p *Project) GetRunnerVersion() string
- func (p *Project) GetSauceCfg() config.SauceConfig
- func (p *Project) GetSmartRetry(suiteName string) config.SmartRetry
- func (p *Project) GetSuite() suite.Suite
- func (p *Project) GetSuiteCount() int
- func (p *Project) GetSuiteNames() string
- func (p *Project) GetSuites() []suite.Suite
- func (p *Project) GetVersion() string
- func (p *Project) IsDryRun() bool
- func (p *Project) IsSharded() bool
- func (p *Project) IsShowConsoleLog() bool
- func (p *Project) IsSmartRetried() bool
- func (p *Project) SetCLIFlags(flags map[string]interface{})
- func (p *Project) SetDefaults()
- func (p *Project) SetRunnerVersion(version string)
- func (p *Project) SetVersion(version string)
- func (p *Project) Validate() error
- type Reporter
- type Suite
- type SuiteConfig
Constants ¶
This section is empty.
Variables ¶
var ( // Kind represents the type definition of this config. Kind = "cypress" // APIVersion represents the supported config version. APIVersion = "v1alpha" )
Config descriptors.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Path is the location of the config file itself. Path string `yaml:"-" json:"-"` FixturesFolder interface{} `json:"fixturesFolder,omitempty"` IntegrationFolder string `json:"integrationFolder,omitempty"` PluginsFile string `json:"pluginsFile,omitempty"` SupportFile string `json:"supportFile,omitempty"` }
Config represents the cypress.json native configuration file.
func (Config) AbsIntegrationFolder ¶
AbsIntegrationFolder returns the absolute path to Config.IntegrationFolder.
type Cypress ¶
type Cypress struct { // ConfigFile is the path to "cypress.json". ConfigFile string `yaml:"configFile,omitempty" json:"configFile"` // Version represents the cypress framework version. Version string `yaml:"version" json:"version"` // Record represents the cypress framework record flag. Record bool `yaml:"record" json:"record"` // Key represents the cypress framework key flag. Key string `yaml:"key" json:"key"` // Reporters represents the customer reporters. Reporters []Reporter `yaml:"reporters" json:"reporters"` }
Cypress represents crucial cypress configuration that is required for setting up a project.
type Project ¶
type Project struct { config.TypeDef `yaml:",inline" mapstructure:",squash"` Defaults config.Defaults `yaml:"defaults" json:"defaults"` DryRun bool `yaml:"-" json:"-"` ShowConsoleLog bool `yaml:"showConsoleLog" json:"-"` ConfigFilePath string `yaml:"-" json:"-"` CLIFlags map[string]interface{} `yaml:"-" json:"-"` Sauce config.SauceConfig `yaml:"sauce,omitempty" json:"sauce"` Cypress Cypress `yaml:"cypress,omitempty" json:"cypress"` // Suite is only used as a workaround to parse adhoc suites that are created via CLI args. Suite Suite `yaml:"suite,omitempty" json:"-"` Suites []Suite `yaml:"suites,omitempty" json:"suites"` BeforeExec []string `yaml:"beforeExec,omitempty" json:"beforeExec"` Npm config.Npm `yaml:"npm,omitempty" json:"npm"` RootDir string `yaml:"rootDir,omitempty" json:"rootDir"` RunnerVersion string `yaml:"runnerVersion,omitempty" json:"runnerVersion"` Artifacts config.Artifacts `yaml:"artifacts,omitempty" json:"artifacts"` Reporters config.Reporters `yaml:"reporters,omitempty" json:"-"` Env map[string]string `yaml:"env,omitempty" json:"env"` Notifications config.Notifications `yaml:"notifications,omitempty" json:"-"` }
Project represents the cypress project configuration.
func (*Project) ApplyFlags ¶
ApplyFlags applys cli flags on cypress project
func (*Project) CleanPackages ¶
func (p *Project) CleanPackages()
CleanPackages removes cypress from npm packages
func (*Project) FilterFailedTests ¶ added in v0.138.0
func (p *Project) FilterFailedTests(suiteName string, report saucereport.SauceReport) error
FilterFailedTests takes the failed tests in the report and sets them as a test filter in the suite. The test filter remains unchanged if the report does not contain any failed tests.
func (*Project) FilterSuites ¶
FilterSuites filters out suites in the project that don't match the given suite name.
func (*Project) GetAPIVersion ¶
GetAPIVersion returns APIVersion
func (*Project) GetArtifactsCfg ¶
GetArtifactsCfg returns config.Artifacts
func (*Project) GetBeforeExec ¶
GetBeforeExec returns BeforeExec
func (*Project) GetCLIFlags ¶
GetCLIFlags returns CLIFlags
func (*Project) GetCfgPath ¶
GetCfgPath returns ConfigFilePath
func (*Project) GetNotifications ¶
func (p *Project) GetNotifications() config.Notifications
GetNotifications returns config.Notifications
func (*Project) GetReporter ¶
GetReporter returns config.Reporters
func (*Project) GetRunnerVersion ¶
GetRunnerVersion returns RunnerVersion
func (*Project) GetSauceCfg ¶
func (p *Project) GetSauceCfg() config.SauceConfig
GetSauceCfg returns sauce related config
func (*Project) GetSmartRetry ¶ added in v0.138.0
func (p *Project) GetSmartRetry(suiteName string) config.SmartRetry
GetSmartRetry returns smartRetry config
func (*Project) GetSuiteCount ¶
GetSuiteCount returns the amount of suites
func (*Project) GetSuiteNames ¶
GetSuiteNames returns combined suite names
func (*Project) GetVersion ¶
GetVersion returns cypress version
func (*Project) IsShowConsoleLog ¶
IsShowConsoleLog returns ShowConsoleLog
func (*Project) IsSmartRetried ¶ added in v0.148.0
IsSmartRetried checks if the suites contain a smartRetried suite
func (*Project) SetCLIFlags ¶
SetCLIFlags sets cli flags
func (*Project) SetDefaults ¶
func (p *Project) SetDefaults()
SetDefaults applies config defaults in case the user has left them blank.
func (*Project) SetRunnerVersion ¶
SetRunnerVersion sets runner version
func (*Project) SetVersion ¶
SetVersion sets cypress version
func (*Project) Validate ¶
Validate validates basic configuration of the project and returns an error if any of the settings contain illegal values. This is not an exhaustive operation and further validation should be performed both in the client and/or server side depending on the workflow that is executed.
type Reporter ¶
type Reporter struct { Name string `yaml:"name" json:"name"` Options map[string]interface{} `yaml:"options" json:"options"` }
Reporter represents a cypress report configuration.
type Suite ¶
type Suite struct { Name string `yaml:"name,omitempty" json:"name"` Browser string `yaml:"browser,omitempty" json:"browser"` BrowserVersion string `yaml:"browserVersion,omitempty" json:"browserVersion"` PlatformName string `yaml:"platformName,omitempty" json:"platformName"` Config SuiteConfig `yaml:"config,omitempty" json:"config"` ScreenResolution string `yaml:"screenResolution,omitempty" json:"screenResolution"` Mode string `yaml:"mode,omitempty" json:"-"` Timeout time.Duration `yaml:"timeout,omitempty" json:"timeout"` Shard string `yaml:"shard,omitempty" json:"-"` Headless bool `yaml:"headless,omitempty" json:"headless"` PreExec []string `yaml:"preExec,omitempty" json:"preExec"` TimeZone string `yaml:"timeZone,omitempty" json:"timeZone"` PassThreshold int `yaml:"passThreshold,omitempty" json:"-"` SmartRetry config.SmartRetry `yaml:"smartRetry,omitempty" json:"-"` }
Suite represents the cypress test suite configuration.
type SuiteConfig ¶
type SuiteConfig struct { TestFiles []string `yaml:"testFiles,omitempty" json:"testFiles"` ExcludedTestFiles []string `yaml:"excludedTestFiles,omitempty" json:"ignoreTestFiles,omitempty"` Env map[string]string `yaml:"env,omitempty" json:"env"` }
SuiteConfig represents the cypress config overrides.