coverage

package
v0.23.2 Latest Latest
Warning

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

Go to latest
Published: Oct 15, 2021 License: MIT Imports: 14 Imported by: 0

Documentation

Index

Constants

View Source
const CloverDefaultPath = "coverage.xml"
View Source
const CoberturaDefaultPath = "coverage.xml"
View Source
const GocoverDefaultPath = "coverage.out"

Variables

View Source
var LcovDefaultPath = []string{"coverage", "lcov.info"}
View Source
var SimplecovDefaultPath = []string{"coverage", ".resultset.json"}

Functions

This section is empty.

Types

type BlockCoverage added in v0.17.0

type BlockCoverage struct {
	Type      Type `json:"type"`
	StartLine *int `json:"start_line,omitempty"`
	StartCol  *int `json:"start_col,omitempty"`
	EndLine   *int `json:"end_line,omitempty"`
	EndCol    *int `json:"end_col,omitempty"`
	NumStmt   *int `json:"num_stmt,omitempty"`
	Count     *int `json:"count,omitempty"`
}

type BlockCoverages added in v0.17.0

type BlockCoverages []*BlockCoverage

type Clover

type Clover struct{}

func NewClover

func NewClover() *Clover

func (*Clover) Name added in v0.17.0

func (c *Clover) Name() string

func (*Clover) ParseReport

func (c *Clover) ParseReport(path string) (*Coverage, string, error)

type CloverReport

type CloverReport struct {
	XMLName   xml.Name             `xml:"coverage"`
	Generated string               `xml:"generated,attr"`
	Project   *CloverReportProject `xml:"project"`
}

type CloverReportFile

type CloverReportFile struct {
	XMLName xml.Name `xml:"file"`
	Name    string   `xml:"name,attr"`
	Metrics struct {
		Loc                 int `xml:"loc,attr"`
		Ncloc               int `xml:"ncloc,attr"`
		Classes             int `xml:"classes,attr"`
		Methods             int `xml:"methods,attr"`
		Coveredmethods      int `xml:"coveredmethods,attr"`
		Conditionals        int `xml:"conditionals,attr"`
		Coveredconditionals int `xml:"coveredconditionals,attr"`
		Statements          int `xml:"statements,attr"`
		Coveredstatements   int `xml:"coveredstatements,attr"`
		Elements            int `xml:"elements,attr"`
		Coveredelements     int `xml:"coveredelements,attr"`
	} `xml:"metrics"`
	Class struct {
		Name      string `xml:"name,attr"`
		Namespace string `xml:"namespace,attr"`
		Metrics   struct {
			Complexity          int `xml:"complexity,attr"`
			Methods             int `xml:"methods,attr"`
			Coveredmethods      int `xml:"coveredmethods,attr"`
			Conditionals        int `xml:"conditionals,attr"`
			Coveredconditionals int `xml:"coveredconditionals,attr"`
			Statements          int `xml:"statements,attr"`
			Coveredstatements   int `xml:"coveredstatements,attr"`
			Elements            int `xml:"elements,attr"`
			Coveredelements     int `xml:"coveredelements,attr"`
		} `xml:"metrics"`
	} `xml:"class"`
	Line []struct {
		Num        int     `xml:"num,attr"`
		Type       string  `xml:"type,attr"`
		Name       string  `xml:"name,attr"`
		Visibility string  `xml:"visibility,attr"`
		Complexity int     `xml:"complexity,attr"`
		Crap       float64 `xml:"crap,attr"`
		Count      int     `xml:"count,attr"`
	} `xml:"line"`
}

type CloverReportProject added in v0.12.1

type CloverReportProject struct {
	Timestamp string             `xml:"timestamp,attr"`
	File      []CloverReportFile `xml:"file"`
	Metrics   struct {
		Files               int `xml:"files,attr"`
		Loc                 int `xml:"loc,attr"`
		Ncloc               int `xml:"ncloc,attr"`
		Classes             int `xml:"classes,attr"`
		Methods             int `xml:"methods,attr"`
		Coveredmethods      int `xml:"coveredmethods,attr"`
		Conditionals        int `xml:"conditionals,attr"`
		Coveredconditionals int `xml:"coveredconditionals,attr"`
		Statements          int `xml:"statements,attr"`
		Coveredstatements   int `xml:"coveredstatements,attr"`
		Elements            int `xml:"elements,attr"`
		Coveredelements     int `xml:"coveredelements,attr"`
	} `xml:"metrics"`
}

type Cobertura added in v0.12.0

type Cobertura struct{}

func NewCobertura added in v0.12.0

func NewCobertura() *Cobertura

func (*Cobertura) Name added in v0.17.0

func (c *Cobertura) Name() string

func (*Cobertura) ParseReport added in v0.12.0

func (c *Cobertura) ParseReport(path string) (*Coverage, string, error)

type CoberturaReport added in v0.12.0

type CoberturaReport struct {
	XMLName         xml.Name `xml:"coverage"`
	Version         string   `xml:"version,attr"`
	Timestamp       string   `xml:"timestamp,attr"`
	LinesValid      int      `xml:"lines-valid,attr"`
	LinesCovered    int      `xml:"lines-covered,attr"`
	LineRate        float64  `xml:"line-rate,attr"`
	BranchesCovered int      `xml:"branches-covered,attr"`
	BranchesValid   int      `xml:"branches-valid,attr"`
	BranchRate      float64  `xml:"branch-rate,attr"`
	Complexity      int      `xml:"complexity,attr"`
	Sources         struct {
		Source []string `xml:"source"`
	} `xml:"sources"`
	Packages *CoberturaReportPackages `xml:"packages"`
}

type CoberturaReportPackage added in v0.12.0

type CoberturaReportPackage struct {
	Name       string  `xml:"name,attr"`
	LineRate   float64 `xml:"line-rate,attr"`
	BranchRate float64 `xml:"branch-rate,attr"`
	Complexity int     `xml:"complexity,attr"`
	Classes    struct {
		Class []struct {
			Filename   string  `xml:"filename,attr"`
			Complexity int     `xml:"complexity,attr"`
			LineRate   float64 `xml:"line-rate,attr"`
			BranchRate float64 `xml:"branch-rate,attr"`
			Methods    struct {
				Method []struct {
					Name       string  `xml:"name,attr"`
					Signature  string  `xml:"signature,attr"`
					LineRate   float64 `xml:"line-rate,attr"`
					BranchRate float64 `xml:"branch-rate,attr"`
					Lines      struct {
						Line []struct {
							Number int `xml:"number,attr"`
							Hits   int `xml:"hits,attr"`
						} `xml:"line"`
					} `xml:"lines"`
				}
			} `xml:"methods"`
			Lines struct {
				Line []struct {
					Number int `xml:"number,attr"`
					Hits   int `xml:"hits,attr"`
				} `xml:"line"`
			} `xml:"lines"`
		} `xml:"class"`
	} `xml:"classes"`
}

type CoberturaReportPackages added in v0.12.1

type CoberturaReportPackages struct {
	Package []CoberturaReportPackage `xml:"package"`
}

type Coverage

type Coverage struct {
	Type    Type          `json:"type"`
	Format  string        `json:"format"`
	Total   int           `json:"total"`
	Covered int           `json:"covered"`
	Files   FileCoverages `json:"files"`
}

func New

func New() *Coverage

func (*Coverage) Compare added in v0.20.0

func (c *Coverage) Compare(c2 *Coverage) *DiffCoverage

func (*Coverage) FlushBlockCoverages added in v0.18.0

func (c *Coverage) FlushBlockCoverages()

type DiffCoverage added in v0.20.0

type DiffCoverage struct {
	A         float64           `json:"a"`
	B         float64           `json:"b"`
	Diff      float64           `json:"diff"`
	CoverageA *Coverage         `json:"-"`
	CoverageB *Coverage         `json:"-"`
	Files     DiffFileCoverages `json:"files"`
}

type DiffFileCoverage added in v0.20.0

type DiffFileCoverage struct {
	File          string        `json:"file"`
	A             float64       `json:"a"`
	B             float64       `json:"b"`
	Diff          float64       `json:"diff"`
	FileCoverageA *FileCoverage `json:"-"`
	FileCoverageB *FileCoverage `json:"-"`
}

type DiffFileCoverages added in v0.20.0

type DiffFileCoverages []*DiffFileCoverage

func (DiffFileCoverages) FuzzyFindByFile added in v0.20.0

func (dfcs DiffFileCoverages) FuzzyFindByFile(file string) (*DiffFileCoverage, error)

type FileCoverage

type FileCoverage struct {
	File    string         `json:"file"`
	Total   int            `json:"total"`
	Covered int            `json:"covered"`
	Blocks  BlockCoverages `json:"blocks,omitempty"`
	// contains filtered or unexported fields
}

func NewFileCoverage

func NewFileCoverage(file string) *FileCoverage

func (*FileCoverage) FindBlocksByLine added in v0.17.0

func (fc *FileCoverage) FindBlocksByLine(n int) BlockCoverages

type FileCoverages

type FileCoverages []*FileCoverage

func (FileCoverages) FindByFile added in v0.17.0

func (fcs FileCoverages) FindByFile(file string) (*FileCoverage, error)

func (FileCoverages) FuzzyFindByFile added in v0.17.0

func (fcs FileCoverages) FuzzyFindByFile(file string) (*FileCoverage, error)

func (FileCoverages) PathPrefix added in v0.21.0

func (fcs FileCoverages) PathPrefix() (string, error)

type Gocover

type Gocover struct{}

func NewGocover

func NewGocover() *Gocover

func (*Gocover) Name added in v0.17.0

func (g *Gocover) Name() string

func (*Gocover) ParseReport

func (g *Gocover) ParseReport(path string) (*Coverage, string, error)

type Lcov

type Lcov struct{}

func NewLcov

func NewLcov() *Lcov

func (*Lcov) Name added in v0.17.0

func (l *Lcov) Name() string

func (*Lcov) ParseReport

func (l *Lcov) ParseReport(path string) (*Coverage, string, error)

type Printer added in v0.17.0

type Printer struct {
	// contains filtered or unexported fields
}

func NewPrinter added in v0.17.0

func NewPrinter(fc *FileCoverage) *Printer

func (*Printer) Print added in v0.17.0

func (p *Printer) Print(src io.Reader, dest io.Writer) error

type Processor

type Processor interface {
	Name() string
	ParseReport(path string) (*Coverage, string, error)
}

type Simplecov

type Simplecov struct{}

func NewSimplecov

func NewSimplecov() *Simplecov

func (*Simplecov) Name added in v0.17.0

func (s *Simplecov) Name() string

func (*Simplecov) ParseReport

func (s *Simplecov) ParseReport(path string) (*Coverage, string, error)

type SimplecovCoverage

type SimplecovCoverage struct {
	Coverage map[string]SimplecovFileCoverage
}

type SimplecovFileCoverage

type SimplecovFileCoverage struct {
	Lines []interface{}
}

type SimplecovReport

type SimplecovReport map[string]SimplecovCoverage

type Type

type Type string
const (
	TypeLOC  Type = "loc"
	TypeStmt Type = "statement"
)

Jump to

Keyboard shortcuts

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