forked from BirmacherAkos/bitrise-step-xctest-html-report
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
260 lines (218 loc) · 7.22 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package main
import (
"fmt"
"os"
"path"
"strings"
"github.com/bitrise-io/go-steputils/stepconf"
"github.com/bitrise-io/go-steputils/tools"
"github.com/bitrise-io/go-utils/errorutil"
"github.com/bitrise-io/go-utils/log"
"github.com/bitrise-io/go-utils/pathutil"
)
const fallbackVersion = "2.0.0"
// Config ...
type Config struct {
// Authentication
GithubAccessToken stepconf.Secret `env:"github_access_token"`
// XCHTMLReport
TestResults string `env:"test_result_path,required"`
GenerateJUnit bool `env:"generate_junit,opt[yes,no]"`
Version string `env:"version,required"`
// Common
OutputDir string `env:"output_dir,dir"`
// Log
Verbose bool `env:"verbose,opt[yes,no]"`
}
// exportReports will search for the generated html and junit report
// it will copy them to the provided outputDir
// export the reports' path to env via envman
func exportReports(pth, outputDir string, generateJUnit bool, errors *[]error) (string, string, error) {
// Find the generated reports
htmlReportPths := []string{"index.html", path.Join(pth, "index.html"), path.Join(path.Dir(pth), "index.html")}
junitPth := path.Join(pth, "report.junit")
//
// Check the report files
var exportedHTMLReportPth string
var exportedJUnitReportPth string
{
// HTML report
for _, htmlReportPth := range htmlReportPths {
if exists, err := pathutil.IsPathExists(htmlReportPth); err != nil {
return "", "", fmt.Errorf("Failed to check if path exists, error: %s", err)
} else if !exists {
log.Debugf("HTML report does not exists in path: %s", htmlReportPth)
} else {
log.Debugf("Found HTML report in path: %s", htmlReportPth)
exportedHTMLReportPth = copy(htmlReportPth, outputDir, errors)
break
}
}
if exportedHTMLReportPth == "" {
*errors = append(*errors, fmt.Errorf("HTML report does not exists in paths: %s", strings.Join(htmlReportPths, ", ")))
}
// JUNIT
if generateJUnit {
if exists, err := pathutil.IsPathExists(junitPth); err != nil {
return "", "", fmt.Errorf("Failed to check if path exists, error: %s", err)
} else if !exists {
log.Debugf("JUnit report does not exists in: %s", junitPth)
*errors = append(*errors, fmt.Errorf("JUnit report does not exists in: %s", junitPth))
} else {
log.Debugf("Found JUNIT in path: %s", junitPth)
exportedJUnitReportPth = copy(junitPth, outputDir, errors)
}
}
}
//
// Export reports
{
if err := tools.ExportEnvironmentWithEnvman("XC_HTML_REPORT", exportedHTMLReportPth); err != nil {
return "", "", fmt.Errorf("Failed to generate output - %s", "XC_HTML_REPORT")
}
if generateJUnit {
if err := tools.ExportEnvironmentWithEnvman("XC_JUNIT_REPORT", exportedJUnitReportPth); err != nil {
return "", "", fmt.Errorf("Failed to generate output - %s", "XC_JUNIT_REPORT")
}
}
}
return exportedHTMLReportPth, exportedJUnitReportPth, nil
}
func main() {
var cfg Config
if err := stepconf.Parse(&cfg); err != nil {
failf("Issue with input: %s", err)
}
stepconf.Print(cfg)
fmt.Println()
testResults := strings.Split(strings.TrimRight(cfg.TestResults, "\n"), "\n")
log.SetEnableDebugLog(cfg.Verbose)
dir, err := os.Getwd()
if err != nil {
failf("Failed to get current directory, error: %s", err)
}
version := cfg.Version
if version == "latest" {
log.Printf("Latest version selected, identify the latest version on Github")
release, err := latestGithubRelease(xcHTMLReportGithubOrg, xcHTMLReportGithubRepo, cfg.GithubAccessToken)
if err != nil {
log.Warnf("Failed to identify the latest Github release of the XCTestHTMLReport, error: %s\nTry to add Github Access Token to the step to avoid API rate limit.\nUsing the known latest version: %s", err, fallbackVersion)
version = fallbackVersion
} else {
version = release.TagName
fmt.Printf("Latest version: %s\n", version)
}
}
x := xcTestHTMLReport{
verbose: cfg.Verbose,
generateJUnit: cfg.GenerateJUnit,
resultBundlePaths: testResults,
version: version,
}
//
// Install via Brew
// Deprecated
// {
// log.Infof("Install XCTestHTMLReport via brew")
// cmd := x.installCmd(cfg.Branch)
// cmd.SetDir(dir).
// SetStdout(os.Stdout).
// SetStderr(os.Stderr)
// log.Printf("$ %s", cmd.PrintableCommandArgs())
// if err := cmd.Run(); err != nil {
// log.Warnf("Try to change the install branch of the XCTestHTMLReport")
// failf("Failed to install XCTestHTMLReport, error: %s", err)
// }
// log.Successf("XCTestHTMLReport successfully installed")
// fmt.Println()
// }
log.Infof("Check if XCTestHTMLReport installed")
if !installedInPath("xchtmlreport") {
log.Printf("Not installed yet")
fmt.Println()
// Install via install script
{
log.Infof("Install XCTestHTMLReport via install script")
log.Printf("Download install script from the XCTestHTMLReport repository and write it to the install.sh file")
script, err := x.installScript()
if err != nil {
failf("Failed to download the install script of the XCTestHTMLReport")
}
log.Debugf("Install script:\n%s\n", script)
log.Debugf("Write the install script to the install.sh file")
outFile, err := os.Create("install.sh")
// handle err
defer func() {
if cerr := outFile.Close(); err != nil {
log.Warnf("Failed to close the output file (install.sh) after writing in it, error: %v", cerr)
}
}()
_, err = outFile.WriteString(script)
if err != nil {
fmt.Printf("failed to write the install script to the install.sh file, error: %v", err)
}
log.Debugf("Make executable the install.sh file")
if err := os.Chmod("install.sh", 0777); err != nil {
log.Errorf("failed to change access permission of the install.sh file, error: %v", err)
}
log.Printf("Running install.sh")
cmd := x.installViaScriptCmd(x.version)
cmd.SetDir(dir).
SetStdout(os.Stdout).
SetStderr(os.Stderr)
if err := cmd.Run(); err != nil {
if errorutil.IsExitStatusError(err) {
failf("Command `tojunit` failed to install, error: %s", err)
}
failf("Failed to run command `tojunit`, %s", err)
}
}
} else {
log.Successf("Already installed")
}
fmt.Println()
//
// Generate reports
{
info := "Generating html report"
if cfg.GenerateJUnit {
info = "Generating html and JUnit report"
}
log.Infof(info)
cmd := x.convertToHTMReportCmd()
cmd.SetDir(dir).
SetStdout(os.Stdout).
SetStderr(os.Stderr)
log.Printf("$ %s", cmd.PrintableCommandArgs())
if err := cmd.Run(); err != nil {
failf("Failed to generate XCTestHTMLReport, error: %s", err)
}
info = "Html report successfully generated"
if cfg.GenerateJUnit {
info = "Html and JUnit reports successfully generated"
}
log.Successf(info)
fmt.Println()
}
//
// Export generated reports
log.Infof("Exporting generated reports")
var errors []error
htmlReport, junitReport, err := exportReports(x.resultBundlePaths[0], cfg.OutputDir, x.generateJUnit, &errors)
if err != nil {
failf("Failed to export the generated reports, error: %s", err)
}
// Log envs
log.Successf("XC_HTML_REPORT => %s", htmlReport)
if x.generateJUnit {
log.Successf("XC_JUNIT_REPORT => %s", junitReport)
}
// Log errors
if errors != nil {
log.Warnf("Errors during the step:\n")
for _, err := range errors {
log.Errorf(err.Error())
}
os.Exit(1)
}
}