insights

package
v0.175.0 Latest Latest
Warning

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

Go to latest
Published: Apr 2, 2024 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const (
	StatePassed  = "passed"
	StateFailed  = "failed"
	StateSkipped = "skipped"
)

The different states that a run can be in.

View Source
const (
	TypeWeb    = "web"
	TypeMobile = "mobile"
)

The different types that a run can be.

Variables

This section is empty.

Functions

This section is empty.

Types

type CI added in v0.119.0

type CI struct {
	RefName    string `json:"ref_name,omitempty"`
	CommitSha  string `json:"commit_sha,omitempty"`
	Repository string `json:"repository,omitempty"`
	Branch     string `json:"branch,omitempty"`
}

type Details added in v0.119.0

type Details struct {
	AppName   string
	Browser   string
	BuildName string
	BuildID   string
	CI        string
	Device    string
	Framework string
	Platform  string
	Tags      []string
}

type Job added in v0.119.0

type Job struct {
	ID   string `json:"id,omitempty"`
	Name string `json:"name,omitempty"`
}

type JobHistory

type JobHistory struct {
	TestCases []TestCase `json:"test_cases"`
}

JobHistory represents job history data structure

type ListJobsOptions added in v0.173.0

type ListJobsOptions struct {
	UserID string
	Page   int
	Size   int
	Status string
	Source job.Source
}

ListJobsOptions represents the query option for listing jobs

type Service

type Service interface {
	GetHistory(ctx context.Context, user iam.User, sortBy string) (JobHistory, error)
	PostTestRun(ctx context.Context, runs []TestRun) error
	ListJobs(ctx context.Context, opts ListJobsOptions) ([]job.Job, error)
	ReadJob(ctx context.Context, id string) (job.Job, error)
}

type TestCase

type TestCase struct {
	Name     string  `json:"name"`
	FailRate float64 `json:"fail_rate"`
}

TestCase represents test case data structure

type TestRun added in v0.119.0

type TestRun struct {
	ID           string         `json:"id,omitempty"`
	Name         string         `json:"name,omitempty"`
	UserID       string         `json:"user_id,omitempty"`
	OrgID        string         `json:"org_id,omitempty"`
	TeamID       string         `json:"team_id,omitempty"`
	GroupID      string         `json:"group_id,omitempty"`
	AuthorID     string         `json:"author_id,omitempty"`
	PathName     string         `json:"path_name,omitempty"`
	BuildID      string         `json:"build_id,omitempty"`
	BuildName    string         `json:"build_name,omitempty"`
	CreationTime time.Time      `json:"creation_time,omitempty"`
	StartTime    time.Time      `json:"start_time,omitempty"`
	EndTime      time.Time      `json:"end_time,omitempty"`
	Duration     int            `json:"duration"`
	Browser      string         `json:"browser,omitempty"`
	Device       string         `json:"device,omitempty"`
	OS           string         `json:"os,omitempty"`
	AppName      string         `json:"app_name,omitempty"`
	Status       string         `json:"status,omitempty"`
	Platform     job.Source     `json:"platform,omitempty"`
	Type         string         `json:"type,omitempty"`
	Framework    string         `json:"framework,omitempty"`
	CI           *CI            `json:"ci,omitempty"`
	SauceJob     *Job           `json:"sauce_job,omitempty"`
	Errors       []TestRunError `json:"errors,omitempty"`
	Tags         []string       `json:"tags,omitempty"`
}

TestRun represents a single test run.

func FromJUnit added in v0.119.0

func FromJUnit(suites junit.TestSuites, jobID string, jobName string, details Details, isRDC bool) []TestRun

func FromSauceReport added in v0.119.0

func FromSauceReport(report saucereport.SauceReport, jobID string, jobName string, details Details, isRDC bool) []TestRun

type TestRunError added in v0.119.0

type TestRunError struct {
	Message string `json:"message,omitempty"`
	Path    string `json:"path,omitempty"`
	Line    int    `json:"line,omitempty"`
}

Jump to

Keyboard shortcuts

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