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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
|
package integration_test
import (
"fmt"
"os"
"strings"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/ginkgo/v2/internal/test_helpers"
"github.com/onsi/ginkgo/v2/reporters"
"github.com/onsi/ginkgo/v2/types"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/gbytes"
"github.com/onsi/gomega/gexec"
)
var _ = Describe("Reporting", func() {
BeforeEach(func() {
fm.MountFixture("reporting")
})
Describe("in-suite reporting with ReportBeforeEach, ReportAfterEach, ReportBeforeSuite and ReportAfterSuite", func() {
It("preview thes uite via ReportBeforeSuite", func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "--seed=17", "--procs=2")
Eventually(session).Should(gexec.Exit(1))
report, err := os.ReadFile(fm.PathTo("reporting", "report-before-suite-1.out"))
Ω(err).ShouldNot(HaveOccurred())
lines := strings.Split(string(report), "\n")
Ω(lines).Should(ConsistOf(
"ReportingFixture Suite - 17",
"7 of 8",
))
})
It("reports on each test via ReportBeforeEach", func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color")
Eventually(session).Should(gexec.Exit(1))
report, err := os.ReadFile(fm.PathTo("reporting", "report-before-each.out"))
Ω(err).ShouldNot(HaveOccurred())
lines := strings.Split(string(report), "\n")
Ω(lines).Should(ConsistOf(
"passes - INVALID SPEC STATE",
"is labelled - INVALID SPEC STATE",
"fails - INVALID SPEC STATE",
"panics - INVALID SPEC STATE",
"has a progress report - INVALID SPEC STATE",
"is pending - pending",
"is skipped - INVALID SPEC STATE",
"times out and fails during cleanup - INVALID SPEC STATE",
"",
))
})
It("reports on each test via ReportAfterEach", func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color")
Eventually(session).Should(gexec.Exit(1))
report, err := os.ReadFile(fm.PathTo("reporting", "report-after-each.out"))
Ω(err).ShouldNot(HaveOccurred())
lines := strings.Split(string(report), "\n")
Ω(lines).Should(ConsistOf(
"passes - passed",
"is labelled - passed",
"fails - failed",
"panics - panicked",
"has a progress report - passed",
"is pending - pending",
"is skipped - skipped",
"times out and fails during cleanup - timedout",
"",
))
})
It("reports on all the tests via ReportAfterSuite", func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "--seed=17")
Eventually(session).Should(gexec.Exit(1))
report, err := os.ReadFile(fm.PathTo("reporting", "report-after-suite.out"))
Ω(err).ShouldNot(HaveOccurred())
lines := strings.Split(string(report), "\n")
Ω(lines).Should(ConsistOf(
"ReportingFixture Suite - 17",
"1: [ReportBeforeSuite] - passed",
"1: [BeforeSuite] - passed",
"passes - passed",
"is labelled - passed",
"fails - failed",
"panics - panicked",
"has a progress report - passed",
"is pending - pending",
"is skipped - skipped",
"times out and fails during cleanup - timedout",
"1: [DeferCleanup (Suite)] - passed",
"1: [DeferCleanup (Suite)] - passed",
"",
))
})
Context("when running in parallel", func() {
It("reports only runs ReportBeforeSuite on proc 1 and reports on all the tests via ReportAfterSuite", func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "--seed=17", "--procs=2")
Eventually(session).Should(gexec.Exit(1))
By("validating the ReportBeforeSuite report")
report, err := os.ReadFile(fm.PathTo("reporting", "report-before-suite-1.out"))
Ω(err).ShouldNot(HaveOccurred())
lines := strings.Split(string(report), "\n")
Ω(lines).Should(ConsistOf(
"ReportingFixture Suite - 17",
"7 of 8",
))
By("ensuring there is only one ReportBeforeSuite report")
Ω(fm.PathTo("reporting", "report-before-suite-2.out")).ShouldNot(BeARegularFile())
By("validating the ReportAfterSuite report")
report, err = os.ReadFile(fm.PathTo("reporting", "report-after-suite.out"))
Ω(err).ShouldNot(HaveOccurred())
lines = strings.Split(string(report), "\n")
Ω(lines).Should(ConsistOf(
"ReportingFixture Suite - 17",
"1: [ReportBeforeSuite] - passed",
"1: [BeforeSuite] - passed",
"2: [BeforeSuite] - passed",
"passes - passed",
"is labelled - passed",
"fails - failed",
"panics - panicked",
"has a progress report - passed",
"is pending - pending",
"is skipped - skipped",
"times out and fails during cleanup - timedout",
"1: [DeferCleanup (Suite)] - passed",
"1: [DeferCleanup (Suite)] - passed",
"2: [DeferCleanup (Suite)] - passed",
"2: [DeferCleanup (Suite)] - passed",
"",
))
})
})
Context("when a ReportAfterSuite node fails", func() {
It("reports on it", func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "--seed=17", "--procs=2")
Eventually(session).Should(gexec.Exit(1))
Ω(string(session.Out.Contents())).Should(ContainSubstring("[ReportAfterSuite] my report"))
Ω(string(session.Out.Contents())).Should(ContainSubstring("fail!\n In [ReportAfterSuite] at:"))
})
})
})
Describe("JSON and JUnit reporting", func() {
checkJSONReport := func(report types.Report) {
Ω(report.SuitePath).Should(Equal(fm.AbsPathTo("reporting")))
Ω(report.SuiteDescription).Should(Equal("ReportingFixture Suite"))
Ω(report.SuiteConfig.ParallelTotal).Should(Equal(2))
Ω(report.SpecReports).Should(HaveLen(16)) //8 tests + (1 before-suite + 2 defercleanup after-suite)*2(nodes) + 1 report-before-suite + 1 report-after-suite
specReports := Reports(report.SpecReports)
Ω(specReports.WithLeafNodeType(types.NodeTypeIt)).Should(HaveLen(8))
Ω(specReports.Find("passes")).Should(HavePassed())
Ω(specReports.Find("is labelled")).Should(HavePassed())
Ω(specReports.Find("is labelled").Labels()).Should(Equal([]string{"dog", "cat"}))
Ω(specReports.Find("fails")).Should(HaveFailed("fail!", types.FailureNodeIsLeafNode, CapturedGinkgoWriterOutput("some ginkgo-writer output")))
Ω(specReports.Find("panics")).Should(HavePanicked("boom"))
Ω(specReports.Find("is pending")).Should(BePending())
Ω(specReports.Find("is skipped").State).Should(Equal(types.SpecStateSkipped))
Ω(specReports.Find("times out and fails during cleanup")).Should(HaveTimedOut("A node timeout occurred"))
Ω(specReports.Find("times out and fails during cleanup").AdditionalFailures[0].Failure.Message).Should(Equal("double-whammy"))
Ω(specReports.Find("times out and fails during cleanup").AdditionalFailures[0].Failure.FailureNodeType).Should(Equal(types.NodeTypeCleanupAfterEach))
Ω(specReports.FindByLeafNodeType(types.NodeTypeReportBeforeSuite)).Should(HavePassed())
Ω(specReports.Find("my report")).Should(HaveFailed("fail!", types.FailureNodeIsLeafNode, types.NodeTypeReportAfterSuite))
Ω(specReports.FindByLeafNodeType(types.NodeTypeBeforeSuite)).Should(HavePassed())
Ω(specReports.FindByLeafNodeType(types.NodeTypeCleanupAfterSuite)).Should(HavePassed())
//check that progress reporst are correctly embedded
Ω(specReports.Find("passes").ProgressReports).Should(BeEmpty())
Ω(specReports.Find("has a progress report").ProgressReports).ShouldNot(BeEmpty())
var highlightedFunction types.FunctionCall
for _, functionCall := range specReports.Find("has a progress report").ProgressReports[0].SpecGoroutine().Stack {
if functionCall.Highlight {
highlightedFunction = functionCall
break
}
}
Ω(highlightedFunction).ShouldNot(BeZero())
Ω(highlightedFunction.Source[highlightedFunction.SourceHighlight]).Should(ContainSubstring("time.Sleep("))
}
checkJSONSubpackageReport := func(report types.Report) {
Ω(report.SuitePath).Should(Equal(fm.AbsPathTo("reporting", "reporting_sub_package")))
Ω(report.SuiteDescription).Should(Equal("Reporting SubPackage Suite"))
Ω(report.SuiteConfig.ParallelTotal).Should(Equal(2))
Ω(report.SpecReports).Should(HaveLen(3))
specReports := Reports(report.SpecReports)
Ω(specReports.Find("passes here too")).Should(HavePassed())
Ω(specReports.Find("fails here too")).Should(HaveFailed("fail!", types.FailureNodeIsLeafNode, CapturedStdOutput("some std output")))
Ω(specReports.Find("panics here too")).Should(HavePanicked("bam!"))
}
checkJSONFailedCompilationReport := func(report types.Report) {
Ω(report.SuitePath).Should(Equal(fm.AbsPathTo("reporting", "malformed_sub_package")))
Ω(report.SuiteDescription).Should(Equal(""))
Ω(report.SuiteConfig.RandomSeed).Should(Equal(int64(17)))
Ω(report.SpecialSuiteFailureReasons).Should(ContainElement(ContainSubstring("Failed to compile malformed_sub_package:")))
Ω(report.SpecReports).Should(HaveLen(0))
}
getTestCase := func(name string, tests []reporters.JUnitTestCase) reporters.JUnitTestCase {
for _, test := range tests {
if test.Name == name {
return test
}
}
return reporters.JUnitTestCase{}
}
checkJUnitReport := func(suite reporters.JUnitTestSuite) {
Ω(suite.Name).Should(Equal("ReportingFixture Suite"))
Ω(suite.Package).Should(Equal(fm.AbsPathTo("reporting")))
Ω(suite.Tests).Should(Equal(16))
Ω(suite.Disabled).Should(Equal(1))
Ω(suite.Skipped).Should(Equal(1))
Ω(suite.Errors).Should(Equal(1))
Ω(suite.Failures).Should(Equal(3))
Ω(suite.Properties.WithName("SuiteSucceeded")).Should(Equal("false"))
Ω(suite.Properties.WithName("RandomSeed")).Should(Equal("17"))
Ω(suite.Properties.WithName("ParallelTotal")).Should(Equal("2"))
Ω(getTestCase("[ReportBeforeSuite]", suite.TestCases).Status).Should(Equal("passed"))
Ω(getTestCase("[BeforeSuite]", suite.TestCases).Status).Should(Equal("passed"))
Ω(getTestCase("[It] reporting test passes", suite.TestCases).Classname).Should(Equal("ReportingFixture Suite"))
Ω(getTestCase("[It] reporting test passes", suite.TestCases).Status).Should(Equal("passed"))
Ω(getTestCase("[It] reporting test passes", suite.TestCases).Failure).Should(BeNil())
Ω(getTestCase("[It] reporting test passes", suite.TestCases).Error).Should(BeNil())
Ω(getTestCase("[It] reporting test passes", suite.TestCases).Skipped).Should(BeNil())
Ω(getTestCase("[It] reporting test labelled tests is labelled [dog, cat]", suite.TestCases).Status).Should(Equal("passed"))
Ω(getTestCase("[It] reporting test panics", suite.TestCases).Status).Should(Equal("panicked"))
Ω(getTestCase("[It] reporting test panics", suite.TestCases).Error.Message).Should(Equal("boom"))
Ω(getTestCase("[It] reporting test panics", suite.TestCases).Error.Type).Should(Equal("panicked"))
Ω(getTestCase("[It] reporting test fails", suite.TestCases).Failure.Message).Should(Equal("fail!"))
Ω(getTestCase("[It] reporting test fails", suite.TestCases).Status).Should(Equal("failed"))
Ω(getTestCase("[It] reporting test fails", suite.TestCases).SystemErr).Should(ContainSubstring("some ginkgo-writer output"))
Ω(getTestCase("[It] reporting test is pending", suite.TestCases).Status).Should(Equal("pending"))
Ω(getTestCase("[It] reporting test is pending", suite.TestCases).Skipped.Message).Should(Equal("pending"))
Ω(getTestCase("[DeferCleanup (Suite)]", suite.TestCases).Status).Should(Equal("passed"))
Ω(getTestCase("[ReportAfterSuite] my report", suite.TestCases).Status).Should(Equal("failed"))
Ω(getTestCase("[It] reporting test is skipped", suite.TestCases).Status).Should(Equal("skipped"))
Ω(getTestCase("[It] reporting test is skipped", suite.TestCases).Skipped.Message).Should(Equal("skipped - skip"))
Ω(getTestCase("[It] reporting test times out and fails during cleanup", suite.TestCases).Status).Should(Equal("timedout"))
Ω(getTestCase("[It] reporting test times out and fails during cleanup", suite.TestCases).Failure.Message).Should(Equal("A node timeout occurred"))
Ω(getTestCase("[It] reporting test times out and fails during cleanup", suite.TestCases).Failure.Description).Should(ContainSubstring("<-ctx.Done()"))
Ω(getTestCase("[It] reporting test times out and fails during cleanup", suite.TestCases).Failure.Description).Should(ContainSubstring("[FAILED] A node timeout occurred and then the following failure was recorded in the timedout node before it exited:\nfailure-after-timeout"))
Ω(getTestCase("[It] reporting test times out and fails during cleanup", suite.TestCases).SystemErr).Should(ContainSubstring("[FAILED] double-whammy"))
buf := gbytes.NewBuffer()
fmt.Fprintf(buf, getTestCase("[It] reporting test has a progress report", suite.TestCases).SystemErr)
Ω(buf).Should(gbytes.Say(`some ginkgo-writer preamble`))
Ω(buf).Should(gbytes.Say(`reporting test has a progress report \(Spec Runtime:`))
Ω(buf).Should(gbytes.Say(`goroutine \d+ \[sleep\]`))
Ω(buf).Should(gbytes.Say(`>\s*time\.Sleep\(`))
Ω(buf).Should(gbytes.Say(`some ginkgo-writer postamble`))
}
checkJUnitSubpackageReport := func(suite reporters.JUnitTestSuite) {
Ω(suite.Name).Should(Equal("Reporting SubPackage Suite"))
Ω(suite.Package).Should(Equal(fm.AbsPathTo("reporting", "reporting_sub_package")))
Ω(suite.Tests).Should(Equal(3))
Ω(suite.Errors).Should(Equal(1))
Ω(suite.Failures).Should(Equal(1))
}
checkJUnitFailedCompilationReport := func(suite reporters.JUnitTestSuite) {
Ω(suite.Name).Should(Equal(""))
Ω(suite.Package).Should(Equal(fm.AbsPathTo("reporting", "malformed_sub_package")))
Ω(suite.Properties.WithName("SpecialSuiteFailureReason")).Should(ContainSubstring("Failed to compile malformed_sub_package:"))
}
checkUnifiedJUnitReport := func(report reporters.JUnitTestSuites) {
Ω(report.TestSuites).Should(HaveLen(3))
Ω(report.Tests).Should(Equal(19))
Ω(report.Disabled).Should(Equal(2))
Ω(report.Errors).Should(Equal(2))
Ω(report.Failures).Should(Equal(4))
checkJUnitReport(report.TestSuites[0])
checkJUnitFailedCompilationReport(report.TestSuites[1])
checkJUnitSubpackageReport(report.TestSuites[2])
}
checkTeamcityReport := func(data string) {
lines := strings.Split(data, "\n")
Ω(lines).Should(ContainElement("##teamcity[testSuiteStarted name='ReportingFixture Suite']"))
Ω(lines).Should(ContainElement("##teamcity[testStarted name='|[BeforeSuite|]']"))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFinished name='|[BeforeSuite|]'")))
Ω(lines).Should(ContainElement("##teamcity[testStarted name='|[It|] reporting test passes']"))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFinished name='|[It|] reporting test passes'")))
Ω(lines).Should(ContainElement("##teamcity[testStarted name='|[It|] reporting test panics']"))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFailed name='|[It|] reporting test panics' message='panicked - boom'")))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFinished name='|[It|] reporting test panics'")))
Ω(lines).Should(ContainElement("##teamcity[testStarted name='|[It|] reporting test fails']"))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFailed name='|[It|] reporting test fails' message='failed - fail!'")))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testStdErr name='|[It|] reporting test fails' out='> Enter")))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFinished name='|[It|] reporting test fails'")))
Ω(lines).Should(ContainElement("##teamcity[testStarted name='|[It|] reporting test is pending']"))
Ω(lines).Should(ContainElement("##teamcity[testIgnored name='|[It|] reporting test is pending' message='pending']"))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFinished name='|[It|] reporting test is pending'")))
Ω(lines).Should(ContainElement("##teamcity[testStarted name='|[It|] reporting test is skipped']"))
Ω(lines).Should(ContainElement("##teamcity[testIgnored name='|[It|] reporting test is skipped' message='skipped - skip']"))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFailed name='|[It|] reporting test times out and fails during cleanup' message='timedout")))
Ω(lines).Should(ContainElement(HavePrefix("##teamcity[testFinished name='|[It|] reporting test is skipped'")))
Ω(lines).Should(ContainElement("##teamcity[testSuiteFinished name='ReportingFixture Suite']"))
}
checkTeamcitySubpackageReport := func(data string) {
lines := strings.Split(data, "\n")
Ω(lines).Should(ContainElement("##teamcity[testSuiteStarted name='Reporting SubPackage Suite']"))
Ω(lines).Should(ContainElement("##teamcity[testSuiteFinished name='Reporting SubPackage Suite']"))
}
checkTeamcityFailedCompilationReport := func(data string) {
lines := strings.Split(data, "\n")
Ω(lines).Should(ContainElement("##teamcity[testSuiteStarted name='']"))
Ω(lines).Should(ContainElement("##teamcity[testSuiteFinished name='']"))
}
Context("the default behavior", func() {
BeforeEach(func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "-r", "--keep-going", "--procs=2", "--json-report=out.json", "--junit-report=out.xml", "--teamcity-report=out.tc", "-seed=17")
Eventually(session).Should(gexec.Exit(1))
Ω(session).ShouldNot(gbytes.Say("Could not open"))
})
It("generates single unified json and junit reports", func() {
reports := fm.LoadJSONReports("reporting", "out.json")
Ω(reports).Should(HaveLen(3))
checkJSONReport(reports[0])
checkJSONFailedCompilationReport(reports[1])
checkJSONSubpackageReport(reports[2])
junitReport := fm.LoadJUnitReport("reporting", "out.xml")
checkUnifiedJUnitReport(junitReport)
checkTeamcityReport(fm.ContentOf("reporting", "out.tc"))
checkTeamcitySubpackageReport(fm.ContentOf("reporting", "out.tc"))
checkTeamcityFailedCompilationReport(fm.ContentOf("reporting", "out.tc"))
})
})
Context("with -output-dir", func() {
BeforeEach(func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "-r", "--keep-going", "--procs=2", "--json-report=out.json", "--junit-report=out.xml", "--teamcity-report=out.tc", "--output-dir=./reports", "-seed=17")
Eventually(session).Should(gexec.Exit(1))
Ω(session).ShouldNot(gbytes.Say("Could not open"))
})
It("places the single unified json and junit reports in output-dir", func() {
reports := fm.LoadJSONReports("reporting", "reports/out.json")
Ω(reports).Should(HaveLen(3))
checkJSONReport(reports[0])
checkJSONFailedCompilationReport(reports[1])
checkJSONSubpackageReport(reports[2])
junitReport := fm.LoadJUnitReport("reporting", "reports/out.xml")
checkUnifiedJUnitReport(junitReport)
checkTeamcityReport(fm.ContentOf("reporting", "reports/out.tc"))
checkTeamcitySubpackageReport(fm.ContentOf("reporting", "reports/out.tc"))
checkTeamcityFailedCompilationReport(fm.ContentOf("reporting", "reports/out.tc"))
})
})
Context("with -keep-separate-reports", func() {
BeforeEach(func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "-r", "--keep-going", "--procs=2", "--json-report=out.json", "--junit-report=out.xml", "--teamcity-report=out.tc", "--keep-separate-reports", "-seed=17")
Eventually(session).Should(gexec.Exit(1))
Ω(session).ShouldNot(gbytes.Say("Could not open"))
})
It("keeps the separate reports in their respective packages", func() {
reports := fm.LoadJSONReports("reporting", "out.json")
Ω(reports).Should(HaveLen(1))
checkJSONReport(reports[0])
checkJUnitReport(fm.LoadJUnitReport("reporting", "out.xml").TestSuites[0])
checkTeamcityReport(fm.ContentOf("reporting", "out.tc"))
reports = fm.LoadJSONReports("reporting", "reporting_sub_package/out.json")
Ω(reports).Should(HaveLen(1))
checkJSONSubpackageReport(reports[0])
checkJUnitSubpackageReport(fm.LoadJUnitReport("reporting", "reporting_sub_package/out.xml").TestSuites[0])
checkTeamcitySubpackageReport(fm.ContentOf("reporting", "reporting_sub_package/out.tc"))
reports = fm.LoadJSONReports("reporting", "malformed_sub_package/out.json")
Ω(reports).Should(HaveLen(1))
checkJSONFailedCompilationReport(reports[0])
checkJUnitFailedCompilationReport(fm.LoadJUnitReport("reporting", "malformed_sub_package/out.xml").TestSuites[0])
checkTeamcityFailedCompilationReport(fm.ContentOf("reporting", "malformed_sub_package/out.tc"))
Ω(fm.PathTo("reporting", "nonginkgo_sub_package/out.json")).ShouldNot(BeAnExistingFile())
Ω(fm.PathTo("reporting", "nonginkgo_sub_package/out.xml")).ShouldNot(BeAnExistingFile())
Ω(fm.PathTo("reporting", "nonginkgo_sub_package/out.tc")).ShouldNot(BeAnExistingFile())
})
})
Context("with -keep-separate-reports and -output-dir", func() {
BeforeEach(func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "-r", "--keep-going", "--procs=2", "--json-report=out.json", "--junit-report=out.xml", "--teamcity-report=out.tc", "--keep-separate-reports", "--output-dir=./reports", "-seed=17")
Eventually(session).Should(gexec.Exit(1))
Ω(session).ShouldNot(gbytes.Say("Could not open"))
})
It("places the separate reports in the -output-dir", func() {
reports := fm.LoadJSONReports("reporting", "reports/reporting_out.json")
Ω(reports).Should(HaveLen(1))
checkJSONReport(reports[0])
checkJUnitReport(fm.LoadJUnitReport("reporting", "reports/reporting_out.xml").TestSuites[0])
checkTeamcityReport(fm.ContentOf("reporting", "reports/reporting_out.tc"))
reports = fm.LoadJSONReports("reporting", "reports/reporting_sub_package_out.json")
Ω(reports).Should(HaveLen(1))
checkJSONSubpackageReport(reports[0])
checkJUnitSubpackageReport(fm.LoadJUnitReport("reporting", "reports/reporting_sub_package_out.xml").TestSuites[0])
checkTeamcitySubpackageReport(fm.ContentOf("reporting", "reports/reporting_sub_package_out.tc"))
reports = fm.LoadJSONReports("reporting", "reports/malformed_sub_package_out.json")
Ω(reports).Should(HaveLen(1))
checkJSONFailedCompilationReport(reports[0])
checkJUnitFailedCompilationReport(fm.LoadJUnitReport("reporting", "reports/malformed_sub_package_out.xml").TestSuites[0])
checkTeamcityFailedCompilationReport(fm.ContentOf("reporting", "reports/malformed_sub_package_out.tc"))
Ω(fm.PathTo("reporting", "reports/nonginkgo_sub_package_out.json")).ShouldNot(BeAnExistingFile())
})
})
Context("when keep-going is not set and a suite fails", func() {
BeforeEach(func() {
session := startGinkgo(fm.PathTo("reporting"), "--no-color", "-r", "--procs=2", "--json-report=out.json", "--junit-report=out.xml", "--teamcity-report=out.tc", "-coverprofile=cover.out", "-cpuprofile=cpu.out", "-seed=17", "--output-dir=./reports")
Eventually(session).Should(gexec.Exit(1))
Ω(session).ShouldNot(gbytes.Say("Could not open"))
})
It("reports about the suites that did not run", func() {
reports := fm.LoadJSONReports("reporting", "reports/out.json")
Ω(reports).Should(HaveLen(3))
checkJSONReport(reports[0])
Ω(reports[1].SpecialSuiteFailureReasons).Should(ContainElement(ContainSubstring("Failed to compile malformed_sub_package")))
Ω(reports[2].SpecialSuiteFailureReasons).Should(ContainElement("Suite did not run because prior suites failed and --keep-going is not set"))
})
})
})
})
|