crowdsec/cmd/crowdsec-cli/clihubtest/table.go
mmetc cab99643d1
Parallel hubtest (#3509)
Hubtests are now much faster and have a --max-jobs option which defaults to the number of cpu cores.
2025-03-17 11:27:09 +01:00

74 lines
1.9 KiB
Go

package clihubtest
import (
"fmt"
"io"
"strconv"
"github.com/jedib0t/go-pretty/v6/text"
"github.com/crowdsecurity/crowdsec/cmd/crowdsec-cli/cstable"
"github.com/crowdsecurity/crowdsec/pkg/emoji"
"github.com/crowdsecurity/crowdsec/pkg/hubtest"
)
func hubTestResultTable(out io.Writer, wantColor string, testMap map[string]*hubtest.HubTestItem, reportSuccess bool) {
t := cstable.NewLight(out, wantColor)
t.SetHeaders("Test", "Result", "Assertions")
t.SetHeaderAlignment(text.AlignLeft)
t.SetAlignment(text.AlignLeft)
showTable := reportSuccess
for testName, test := range testMap {
status := emoji.CheckMarkButton
if !test.Success {
status = emoji.CrossMark
showTable = true
}
if !test.Success || reportSuccess {
t.AddRow(testName, status, strconv.Itoa(test.ParserAssert.NbAssert+test.ScenarioAssert.NbAssert))
}
}
if showTable {
t.Render()
} else {
fmt.Println("All tests passed, use --report-success for more details.")
}
}
func hubTestListTable(out io.Writer, wantColor string, tests []*hubtest.HubTestItem) {
t := cstable.NewLight(out, wantColor)
t.SetHeaders("Name", "Path")
t.SetHeaderAlignment(text.AlignLeft, text.AlignLeft)
t.SetAlignment(text.AlignLeft, text.AlignLeft)
for _, test := range tests {
t.AddRow(test.Name, test.Path)
}
t.Render()
}
func hubTestCoverageTable(out io.Writer, wantColor string, headers []string, coverage []hubtest.Coverage) {
t := cstable.NewLight(out, wantColor)
t.SetHeaders(headers...)
t.SetHeaderAlignment(text.AlignLeft, text.AlignLeft, text.AlignLeft)
t.SetAlignment(text.AlignLeft, text.AlignLeft, text.AlignLeft)
parserTested := 0
for _, test := range coverage {
status := emoji.RedCircle
if test.TestsCount > 0 {
status = emoji.GreenCircle
parserTested++
}
t.AddRow(test.Name, status, fmt.Sprintf("%d times (across %d tests)", test.TestsCount, len(test.PresentIn)))
}
t.Render()
}