package cmd import ( "bytes" "encoding/json" "encoding/xml" "fmt" "io/ioutil" "net/http" "net/http/cookiejar" "reflect" "strings" "time" "github.com/SAP/jenkins-library/pkg/abaputils" "github.com/SAP/jenkins-library/pkg/command" piperhttp "github.com/SAP/jenkins-library/pkg/http" "github.com/SAP/jenkins-library/pkg/log" "github.com/SAP/jenkins-library/pkg/piperutils" "github.com/SAP/jenkins-library/pkg/telemetry" "github.com/pkg/errors" ) type abapEnvironmentRunAUnitTestUtils interface { command.ExecRunner FileExists(filename string) (bool, error) // Add more methods here, or embed additional interfaces, or remove/replace as required. // The abapEnvironmentRunAUnitTestUtils interface should be descriptive of your runtime dependencies, // i.e. include everything you need to be able to mock in tests. // Unit tests shall be executable in parallel (not depend on global state), and don't (re-)test dependencies. } type abapEnvironmentRunAUnitTestUtilsBundle struct { *command.Command *piperutils.Files // Embed more structs as necessary to implement methods or interfaces you add to abapEnvironmentRunAUnitTestUtils. // Structs embedded in this way must each have a unique set of methods attached. // If there is no struct which implements the method you need, attach the method to // abapEnvironmentRunAUnitTestUtilsBundle and forward to the implementation of the dependency. } func newAbapEnvironmentRunAUnitTestUtils() abapEnvironmentRunAUnitTestUtils { utils := abapEnvironmentRunAUnitTestUtilsBundle{ Command: &command.Command{}, Files: &piperutils.Files{}, } // Reroute command output to logging framework utils.Stdout(log.Writer()) utils.Stderr(log.Writer()) return &utils } func abapEnvironmentRunAUnitTest(config abapEnvironmentRunAUnitTestOptions, telemetryData *telemetry.CustomData) { // for command execution use Command c := command.Command{} // reroute command output to logging framework c.Stdout(log.Writer()) c.Stderr(log.Writer()) var autils = abaputils.AbapUtils{ Exec: &c, } client := piperhttp.Client{} // error situations should stop execution through log.Entry().Fatal() call which leads to an os.Exit(1) in the end err := runAbapEnvironmentRunAUnitTest(&config, telemetryData, &autils, &client) if err != nil { log.Entry().WithError(err).Fatal("step execution failed") } } func runAbapEnvironmentRunAUnitTest(config *abapEnvironmentRunAUnitTestOptions, telemetryData *telemetry.CustomData, com abaputils.Communication, client piperhttp.Sender) error { var details abaputils.ConnectionDetailsHTTP subOptions := convertAUnitOptions(config) details, err := com.GetAbapCommunicationArrangementInfo(subOptions, "") var resp *http.Response cookieJar, _ := cookiejar.New(nil) //Fetch Xcrsf-Token if err == nil { credentialsOptions := piperhttp.ClientOptions{ Username: details.User, Password: details.Password, CookieJar: cookieJar, } client.SetOptions(credentialsOptions) details.XCsrfToken, err = fetchAUnitXcsrfToken("GET", details, nil, client) } if err == nil { resp, err = triggerAUnitrun(*config, details, client) } if err == nil { err = fetchAndPersistAUnitResults(resp, details, client, config.AUnitResultsFileName, config.GenerateHTML) } if err != nil { log.Entry().WithError(err).Fatal("step execution failed") } log.Entry().Info("AUnit test run completed successfully. If there are any results from the respective run they will be listed in the logs above as well as being saved in the output .xml file") return nil } func triggerAUnitrun(config abapEnvironmentRunAUnitTestOptions, details abaputils.ConnectionDetailsHTTP, client piperhttp.Sender) (*http.Response, error) { abapEndpoint := details.URL bodyString, err := buildAUnitRequestBody(config) if err != nil { return nil, err } //Trigger AUnit run var resp *http.Response var body = []byte(bodyString) log.Entry().Debugf("Request Body: %s", bodyString) details.URL = abapEndpoint + "/sap/bc/adt/api/abapunit/runs" resp, err = runAUnit("POST", details, body, client) return resp, err } func resolveAUnitConfiguration(config abapEnvironmentRunAUnitTestOptions) (aUnitConfig AUnitConfig, err error) { if config.AUnitConfig != "" { // Configuration defaults to AUnitConfig log.Entry().Infof("AUnit Configuration: %s", config.AUnitConfig) result, err := abaputils.ReadConfigFile(config.AUnitConfig) if err != nil { return aUnitConfig, err } err = json.Unmarshal(result, &aUnitConfig) return aUnitConfig, err } else if config.Repositories != "" { // Fallback / EasyMode is the Repositories configuration log.Entry().Infof("AUnit Configuration derived from: %s", config.Repositories) repos, err := abaputils.GetRepositories((&abaputils.RepositoriesConfig{Repositories: config.Repositories})) if err != nil { return aUnitConfig, err } for _, repo := range repos { aUnitConfig.ObjectSet.SoftwareComponents = append(aUnitConfig.ObjectSet.SoftwareComponents, SoftwareComponents{Name: repo.Name}) } aUnitConfig.Title = "AUnit Test Run" return aUnitConfig, nil } else { // Fail if no configuration is provided return aUnitConfig, errors.New("No configuration provided - please provide either an AUnit configuration file or a repository configuration file") } } func convertAUnitOptions(options *abapEnvironmentRunAUnitTestOptions) abaputils.AbapEnvironmentOptions { subOptions := abaputils.AbapEnvironmentOptions{} subOptions.CfAPIEndpoint = options.CfAPIEndpoint subOptions.CfServiceInstance = options.CfServiceInstance subOptions.CfServiceKeyName = options.CfServiceKeyName subOptions.CfOrg = options.CfOrg subOptions.CfSpace = options.CfSpace subOptions.Host = options.Host subOptions.Password = options.Password subOptions.Username = options.Username return subOptions } func fetchAndPersistAUnitResults(resp *http.Response, details abaputils.ConnectionDetailsHTTP, client piperhttp.Sender, aunitResultFileName string, generateHTML bool) error { var err error var abapEndpoint string abapEndpoint = details.URL location := resp.Header.Get("Location") details.URL = abapEndpoint + location location, err = pollAUnitRun(details, nil, client) if err == nil { details.URL = abapEndpoint + location resp, err = getAUnitResults("GET", details, nil, client) } //Parse response var body []byte if err == nil { body, err = ioutil.ReadAll(resp.Body) } if err == nil { defer resp.Body.Close() err = persistAUnitResult(body, aunitResultFileName, generateHTML) } if err != nil { return fmt.Errorf("Handling AUnit result failed: %w", err) } return nil } func buildAUnitRequestBody(config abapEnvironmentRunAUnitTestOptions) (bodyString string, err error) { bodyString = "" AUnitConfig, err := resolveAUnitConfiguration(config) if err != nil { return bodyString, err } //Checks before building the XML body if AUnitConfig.Title == "" { return bodyString, fmt.Errorf("Error while parsing AUnit test run config. No title for the AUnit run has been provided. Please configure an appropriate title for the respective test run") } if AUnitConfig.Context == "" { AUnitConfig.Context = "ABAP Environment Pipeline" } if reflect.DeepEqual(ObjectSet{}, AUnitConfig.ObjectSet) { return bodyString, fmt.Errorf("Error while parsing AUnit test run object set config. No object set has been provided. Please configure the objects you want to be checked for the respective test run") } //Build Options optionsString := buildAUnitOptionsString(AUnitConfig) //Build metadata string metadataString := `` //Build Object Set objectSetString := buildAUnitObjectSetString(AUnitConfig) bodyString += `` + metadataString + optionsString + objectSetString + `` return bodyString, nil } func runAUnit(requestType string, details abaputils.ConnectionDetailsHTTP, body []byte, client piperhttp.Sender) (*http.Response, error) { log.Entry().WithField("ABAP endpoint: ", details.URL).Info("Triggering AUnit run") header := make(map[string][]string) header["X-Csrf-Token"] = []string{details.XCsrfToken} header["Content-Type"] = []string{"application/vnd.sap.adt.api.abapunit.run.v1+xml; charset=utf-8;"} req, err := client.SendRequest(requestType, details.URL, bytes.NewBuffer(body), header, nil) if err != nil { return req, fmt.Errorf("Triggering AUnit run failed: %w", err) } defer req.Body.Close() return req, err } func buildAUnitOptionsString(AUnitConfig AUnitConfig) (optionsString string) { optionsString += `` if AUnitConfig.Options.Measurements != "" { optionsString += `` } else { optionsString += `` } //We assume there must be one scope configured optionsString += `` return optionsString } func writeObjectSetProperties(set MultiPropertySet) (objectSetString string) { for _, packages := range set.PackageNames { objectSetString += `` } for _, objectTypeGroup := range set.ObjectTypeGroups { objectSetString += `` } for _, objectType := range set.ObjectTypes { objectSetString += `` } for _, owner := range set.Owners { objectSetString += `` } for _, releaseState := range set.ReleaseStates { objectSetString += `` } for _, version := range set.Versions { objectSetString += `` } for _, applicationComponent := range set.ApplicationComponents { objectSetString += `` } for _, component := range set.SoftwareComponents { objectSetString += `` } for _, transportLayer := range set.TransportLayers { objectSetString += `` } for _, language := range set.Languages { objectSetString += `` } for _, sourceSystem := range set.SourceSystems { objectSetString += `` } return objectSetString } func buildAUnitObjectSetString(AUnitConfig AUnitConfig) (objectSetString string) { //Build ObjectSets s := AUnitConfig.ObjectSet if s.Type == "" { s.Type = "multiPropertySet" } if s.Type != "multiPropertySet" { log.Entry().Infof("Wrong configuration has been detected: %s has been used. This is currently not supported and this set will not be included in this run. Please check the step documentation for more information", s.Type) } else { objectSetString += `` if !(reflect.DeepEqual(s.PackageNames, AUnitPackage{})) || !(reflect.DeepEqual(s.SoftwareComponents, SoftwareComponents{})) { //To ensure Scomps and packages can be assigned on this level mps := MultiPropertySet{ PackageNames: s.PackageNames, SoftwareComponents: s.SoftwareComponents, } objectSetString += writeObjectSetProperties(mps) } objectSetString += writeObjectSetProperties(s.MultiPropertySet) if !(reflect.DeepEqual(s.MultiPropertySet, MultiPropertySet{})) { log.Entry().Info("Wrong configuration has been detected: MultiPropertySet has been used. Please note that there is no official documentation for this usage. Please check the step documentation for more information") } for _, t := range s.Set { log.Entry().Infof("Wrong configuration has been detected: %s has been used. This is currently not supported and this set will not be included in this run. Please check the step documentation for more information", t.Type) } objectSetString += `` } return objectSetString } func fetchAUnitXcsrfToken(requestType string, details abaputils.ConnectionDetailsHTTP, body []byte, client piperhttp.Sender) (string, error) { log.Entry().WithField("ABAP Endpoint: ", details.URL).Debug("Fetching Xcrsf-Token") details.URL += "/sap/bc/adt/api/abapunit/runs/00000000000000000000000000000000" details.XCsrfToken = "fetch" header := make(map[string][]string) header["X-Csrf-Token"] = []string{details.XCsrfToken} header["Accept"] = []string{"application/vnd.sap.adt.api.abapunit.run-status.v1+xml"} req, err := client.SendRequest(requestType, details.URL, bytes.NewBuffer(body), header, nil) if err != nil { return "", fmt.Errorf("Fetching Xcsrf-Token failed: %w", err) } defer req.Body.Close() token := req.Header.Get("X-Csrf-Token") return token, err } func pollAUnitRun(details abaputils.ConnectionDetailsHTTP, body []byte, client piperhttp.Sender) (string, error) { log.Entry().WithField("ABAP endpoint", details.URL).Info("Polling AUnit run status") for { resp, err := getHTTPResponseAUnitRun("GET", details, nil, client) if err != nil { return "", fmt.Errorf("Getting HTTP response failed: %w", err) } bodyText, err := ioutil.ReadAll(resp.Body) if err != nil { return "", fmt.Errorf("Reading response body failed: %w", err) } x := new(AUnitRun) xml.Unmarshal(bodyText, &x) log.Entry().Infof("Current polling status: %s", x.Progress.Status) if x.Progress.Status == "Not Created" { return "", err } if x.Progress.Status == "Completed" || x.Progress.Status == "FINISHED" { return x.Link.Href, err } if x.Progress.Status == "" { return "", fmt.Errorf("Could not get any response from AUnit poll: %w", errors.New("Status from AUnit run is empty. Either it's not an ABAP system or AUnit run hasn't started")) } time.Sleep(10 * time.Second) } } func getHTTPResponseAUnitRun(requestType string, details abaputils.ConnectionDetailsHTTP, body []byte, client piperhttp.Sender) (*http.Response, error) { log.Entry().WithField("ABAP Endpoint: ", details.URL).Info("Polling AUnit run status") header := make(map[string][]string) header["Accept"] = []string{"application/vnd.sap.adt.api.abapunit.run-status.v1+xml"} req, err := client.SendRequest(requestType, details.URL, bytes.NewBuffer(body), header, nil) if err != nil { return req, fmt.Errorf("Getting AUnit run status failed: %w", err) } return req, err } func getAUnitResults(requestType string, details abaputils.ConnectionDetailsHTTP, body []byte, client piperhttp.Sender) (*http.Response, error) { log.Entry().WithField("ABAP Endpoint: ", details.URL).Info("Getting AUnit results") header := make(map[string][]string) header["x-csrf-token"] = []string{details.XCsrfToken} header["Accept"] = []string{"application/vnd.sap.adt.api.junit.run-result.v1+xml"} req, err := client.SendRequest(requestType, details.URL, bytes.NewBuffer(body), header, nil) if err != nil { return req, fmt.Errorf("Getting AUnit run results failed: %w", err) } return req, err } func persistAUnitResult(body []byte, aunitResultFileName string, generateHTML bool) (err error) { if len(body) == 0 { return fmt.Errorf("Parsing AUnit result failed: %w", errors.New("Body is empty, can't parse empty body")) } responseBody := string(body) log.Entry().Debugf("Response body: %s", responseBody) //Optional checks before writing the Results parsedXML := new(AUnitResult) xml.Unmarshal([]byte(body), &parsedXML) //Write Results err = ioutil.WriteFile(aunitResultFileName, body, 0644) if err != nil { return fmt.Errorf("Writing results failed: %w", err) } log.Entry().Infof("Writing %s file was successful.", aunitResultFileName) var reports []piperutils.Path //Return before processing empty AUnit results --> XML can still be written with response body if len(parsedXML.Testsuite.Testcase) == 0 { log.Entry().Infof("There were no AUnit findings from this run. The response has been saved in the %s file", aunitResultFileName) } else { log.Entry().Infof("Please find the results from the respective AUnit run in the %s file or in below logs", aunitResultFileName) //Logging of AUnit findings log.Entry().Infof(`Here are the results for the AUnit test run '%s' executed by User %s on System %s in Client %s at %s. The AUnit run took %s seconds and contains %s tests with %s failures, %s errors, %s skipped and %s assert findings`, parsedXML.Title, parsedXML.System, parsedXML.ExecutedBy, parsedXML.Client, parsedXML.Timestamp, parsedXML.Time, parsedXML.Tests, parsedXML.Failures, parsedXML.Errors, parsedXML.Skipped, parsedXML.Asserts) for _, s := range parsedXML.Testsuite.Testcase { //Log Infos for testcase //HTML Procesing can be done here for _, failure := range s.Failure { log.Entry().Debugf("%s, %s: %s found by %s", failure.Type, failure.Message, failure.Message, s.Classname) } for _, skipped := range s.Skipped { log.Entry().Debugf("The following test has been skipped: %s: %s", skipped.Message, skipped.Text) } } if generateHTML == true { htmlString := generateHTMLDocumentAUnit(parsedXML) htmlStringByte := []byte(htmlString) aUnitResultHTMLFileName := strings.Trim(aunitResultFileName, ".xml") + ".html" err = ioutil.WriteFile(aUnitResultHTMLFileName, htmlStringByte, 0644) if err != nil { return fmt.Errorf("Writing HTML document failed: %w", err) } log.Entry().Info("Writing " + aUnitResultHTMLFileName + " file was successful") reports = append(reports, piperutils.Path{Target: aUnitResultHTMLFileName, Name: "ATC Results HTML file", Mandatory: true}) } } //Persist findings afterwards reports = append(reports, piperutils.Path{Target: aunitResultFileName, Name: "AUnit Results", Mandatory: true}) piperutils.PersistReportsAndLinks("abapEnvironmentRunAUnitTest", "", reports, nil) return nil } func generateHTMLDocumentAUnit(parsedXML *AUnitResult) (htmlDocumentString string) { htmlDocumentString = `AUnit Results

AUnit Results

Run title` + parsedXML.Title + `System` + parsedXML.System + `Client` + parsedXML.Client + `ExecutedBy` + parsedXML.ExecutedBy + `Duration` + parsedXML.Time + `sTimestamp` + parsedXML.Timestamp + `
Failures` + parsedXML.Failures + `Errors` + parsedXML.Errors + `Skipped` + parsedXML.Skipped + `Asserts` + parsedXML.Asserts + `Tests` + parsedXML.Tests + `

` var htmlDocumentStringError, htmlDocumentStringWarning, htmlDocumentStringInfo, htmlDocumentStringDefault string for _, s := range parsedXML.Testsuite.Testcase { //Add coloring of lines inside of the respective severities, e.g. failures in red trBackgroundColorTestcase := "grey" trBackgroundColorError := "rgba(227,85,0)" trBackgroundColorFailure := "rgba(227,85,0)" trBackgroundColorSkipped := "rgba(255,175,0, 0.2)" if (len(s.Error) != 0) || (len(s.Failure) != 0) || (len(s.Skipped) != 0) { htmlDocumentString += `` } for _, t := range s.Error { htmlDocumentString += `` } for _, t := range s.Failure { htmlDocumentString += `` } for _, t := range s.Skipped { htmlDocumentString += `` } } if len(parsedXML.Testsuite.Testcase) == 0 { htmlDocumentString += `` } htmlDocumentString += htmlDocumentStringError + htmlDocumentStringWarning + htmlDocumentStringInfo + htmlDocumentStringDefault + `
SeverityFileMessageTypeText
Testcase: ` + s.Name + ` for class ` + s.Classname + `
Failure` + s.Classname + `` + t.Message + `` + t.Type + `` + t.Text + `
Failure` + s.Classname + `` + t.Message + `` + t.Type + `` + t.Text + `
Failure` + s.Classname + `` + t.Message + `-` + t.Text + `
There are no AUnit findings to be displayed
` return htmlDocumentString } // // Object Set Structure // //AUnitConfig object for parsing yaml config of software components and packages type AUnitConfig struct { Title string `json:"title,omitempty"` Context string `json:"context,omitempty"` Options AUnitOptions `json:"options,omitempty"` ObjectSet ObjectSet `json:"objectset,omitempty"` } //AUnitOptions in form of packages and software components to be checked type AUnitOptions struct { Measurements string `json:"measurements,omitempty"` Scope Scope `json:"scope,omitempty"` RiskLevel RiskLevel `json:"risklevel,omitempty"` Duration Duration `json:"duration,omitempty"` } //Scope in form of packages and software components to be checked type Scope struct { OwnTests *bool `json:"owntests,omitempty"` ForeignTests *bool `json:"foreigntests,omitempty"` } //RiskLevel in form of packages and software components to be checked type RiskLevel struct { Harmless *bool `json:"harmless,omitempty"` Dangerous *bool `json:"dangerous,omitempty"` Critical *bool `json:"critical,omitempty"` } //Duration in form of packages and software components to be checked type Duration struct { Short *bool `json:"short,omitempty"` Medium *bool `json:"medium,omitempty"` Long *bool `json:"long,omitempty"` } //ObjectSet in form of packages and software components to be checked type ObjectSet struct { PackageNames []AUnitPackage `json:"packages,omitempty"` SoftwareComponents []SoftwareComponents `json:"softwarecomponents,omitempty"` Type string `json:"type,omitempty"` MultiPropertySet MultiPropertySet `json:"multipropertyset,omitempty"` Set []Set `json:"set,omitempty"` } //MultiPropertySet that can possibly contain any subsets/object of the OSL type MultiPropertySet struct { Type string `json:"type,omitempty"` PackageNames []AUnitPackage `json:"packages,omitempty"` ObjectTypeGroups []ObjectTypeGroup `json:"objecttypegroups,omitempty"` ObjectTypes []ObjectType `json:"objecttypes,omitempty"` Owners []Owner `json:"owners,omitempty"` ReleaseStates []ReleaseState `json:"releasestates,omitempty"` Versions []Version `json:"versions,omitempty"` ApplicationComponents []ApplicationComponent `json:"applicationcomponents,omitempty"` SoftwareComponents []SoftwareComponents `json:"softwarecomponents,omitempty"` TransportLayers []TransportLayer `json:"transportlayers,omitempty"` Languages []Language `json:"languages,omitempty"` SourceSystems []SourceSystem `json:"sourcesystems,omitempty"` } //Set type Set struct { Type string `json:"type,omitempty"` Set []Set `json:"set,omitempty"` PackageSet []AUnitPackageSet `json:"package,omitempty"` FlatObjectSet []AUnitFlatObjectSet `json:"object,omitempty"` ComponentSet []AUnitComponentSet `json:"component,omitempty"` TransportSet []AUnitTransportSet `json:"transport,omitempty"` ObjectTypeSet []AUnitObjectTypeSet `json:"objecttype,omitempty"` } //AUnitPackageSet in form of packages to be checked type AUnitPackageSet struct { Name string `json:"name,omitempty"` IncludeSubpackages *bool `json:"includesubpackages,omitempty"` } //AUnitFlatObjectSet type AUnitFlatObjectSet struct { Name string `json:"name,omitempty"` Type string `json:"type,omitempty"` } //AUnitComponentSet in form of software components to be checked type AUnitComponentSet struct { Name string `json:"name,omitempty"` } //AUnitTransportSet in form of transports to be checked type AUnitTransportSet struct { Number string `json:"number,omitempty"` } //AUnitObjectTypeSet type AUnitObjectTypeSet struct { Name string `json:"name,omitempty"` } //AUnitPackage for MPS type AUnitPackage struct { Name string `json:"name,omitempty"` } //ObjectTypeGroup type ObjectTypeGroup struct { Name string `json:"name,omitempty"` } //ObjectType type ObjectType struct { Name string `json:"name,omitempty"` } //Owner type Owner struct { Name string `json:"name,omitempty"` } //ReleaseState type ReleaseState struct { Value string `json:"value,omitempty"` } //Version type Version struct { Value string `json:"value,omitempty"` } //ApplicationComponent type ApplicationComponent struct { Name string `json:"name,omitempty"` } //SoftwareComponents type SoftwareComponents struct { Name string `json:"name,omitempty"` } //TransportLayer type TransportLayer struct { Name string `json:"name,omitempty"` } //Language type Language struct { Value string `json:"value,omitempty"` } //SourceSystem type SourceSystem struct { Name string `json:"name,omitempty"` } // // AUnit Run Structure // //AUnitRun Object for parsing XML type AUnitRun struct { XMLName xml.Name `xml:"run"` Title string `xml:"title,attr"` Context string `xml:"context,attr"` Progress Progress `xml:"progress"` ExecutedBy ExecutedBy `xml:"executedBy"` Time Time `xml:"time"` Link AUnitLink `xml:"link"` } //Progress of AUnit run type Progress struct { Status string `xml:"status,attr"` Percentage string `xml:"percentage,attr"` } //ExecutedBy User type ExecutedBy struct { User string `xml:"user,attr"` } //Time run was started and finished type Time struct { Started string `xml:"started,attr"` Ended string `xml:"ended,attr"` } //AUnitLink containing result locations type AUnitLink struct { Href string `xml:"href,attr"` Rel string `xml:"rel,attr"` Type string `xml:"type,attr"` } // // AUnit Result Structure // type AUnitResult struct { XMLName xml.Name `xml:"testsuites"` Title string `xml:"title,attr"` System string `xml:"system,attr"` Client string `xml:"client,attr"` ExecutedBy string `xml:"executedBy,attr"` Time string `xml:"time,attr"` Timestamp string `xml:"timestamp,attr"` Failures string `xml:"failures,attr"` Errors string `xml:"errors,attr"` Skipped string `xml:"skipped,attr"` Asserts string `xml:"asserts,attr"` Tests string `xml:"tests,attr"` Testsuite struct { Tests string `xml:"tests,attr"` Asserts string `xml:"asserts,attr"` Skipped string `xml:"skipped,attr"` Errors string `xml:"errors,attr"` Failures string `xml:"failures,attr"` Timestamp string `xml:"timestamp,attr"` Time string `xml:"time,attr"` Hostname string `xml:"hostname,attr"` Package string `xml:"package,attr"` Name string `xml:"name,attr"` Testcase []struct { Asserts string `xml:"asserts,attr"` Time string `xml:"time,attr"` Name string `xml:"name,attr"` Classname string `xml:"classname,attr"` Error []struct { Text string `xml:",chardata"` Type string `xml:"type,attr"` Message string `xml:"message,attr"` } `xml:"error"` Failure []struct { Text string `xml:",chardata"` Type string `xml:"type,attr"` Message string `xml:"message,attr"` } `xml:"failure"` Skipped []struct { Text string `xml:",chardata"` Message string `xml:"message,attr"` } `xml:"skipped"` } `xml:"testcase"` } `xml:"testsuite"` }