Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Done
-
None
-
None
Description
Currently, the Log information/detail from a Jenkins build, regarding each of the Xray Pre-Build/Post-Build steps, is as follows:
- The XRAY: Cucumber Features Export Task step:
Starting export task... ########################################################## #### Xray is exporting the feature files #### ########################################################## Issues: PB-19 Will save the feature files in: \src\test\resources\skeleton ###################### Unzipping file #################### ###################### Unzipped file ##################### Sucessfully exported the Cucumber features
As can be seen, it contains the detail of the defined Exported Cucumber Test, however the log should maybe start with Starting XRAY: Cucumber Features Export Task instead of Starting export task... in order to properly identify the action;
- The XRAY: Cucumber Features Import Task step:
File: D:\Jenkins\workspace\fewerstyle\src\test\resources\skeleton [{"id":"248900","key":"BUS-22","self":"http://mssqlv7/rest/api/2/issue/248900"}] [{"id":"248901","key":"BUS-23","self":"http://mssqlv7/rest/api/2/issue/248901"}]
As can be seen, it currently doesn't have much information. For consistency, and better identification, It should be more like this instead:
Starting XRAY: Cucumber Features Import Task... ########################################################## #### Xray is importing the feature files #### ########################################################## File: D:\Jenkins\workspace\fewerstyle\src\test\resources\skeleton [{"id":"248900","key":"BUS-22","self":"http://mssqlv7/rest/api/2/issue/248900"}] [{"id":"248901","key":"BUS-23","self":"http://mssqlv7/rest/api/2/issue/248901"}] Sucessfully imported the Cucumber features
- The Xray: Results Import Task step:
Starting import task... Import Cucumber features Task started... ########################################################## #### Importing the execution results to Xray #### ########################################################## File: D:\Jenkins\workspace\fewerstyle\data.json Starting to import results from data.json response: {"testExecIssue":{"id":"248902","key":"PB-30","self":"http://mssqlv7/rest/api/2/issue/248902"}} Sucessfully imported Cucumber JSON results from data.json
As can be seen, it currently has a wrong label, where Import Cucumber features Task started... should actually be Starting Xray: Results Import Task....