stable

Clone or download

Read-only

feat(ttm): upload comment attachments using [Attach files...] button

part of: story #22576 have multiple files uploaded with comments For the moment, we do not display any error message when the upload fails. UXD needs to be concerted as there is no guidelines in the mockups to display it. How to test: - Toggle the comment mode on a text execution. - Add some files using the [Attach files...] button --> Files now appear in the attachment list - Save your comment or change the step status --> Files are kept Change-Id: I17275a03ef24861f8ee5f00aa7ca2b8d5be3ca2d

Modified Files

Name
M plugins/testmanagement/package-lock.json +283 −0 Go to diff View file
M plugins/testmanagement/package.json +1 −0 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution-collection/execution-rest-service.js +14 −0 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution-collection/execution-rest-service.test.js +36 −0 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution-collection/execution-service.js +19 −4 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution-collection/execution-service.test.js +2 −2 Go to diff View file
A plugins/testmanagement/scripts/testmanagement/src/execution/execution-attachments/execution-attachments-component.js +73 −0 Go to diff View file
A plugins/testmanagement/scripts/testmanagement/src/execution/execution-attachments/execution-attachments-component.test.js +134 −0 Go to diff View file
A plugins/testmanagement/scripts/testmanagement/src/execution/execution-attachments/execution-attachments-uploader.js +32 −0 Go to diff View file
A plugins/testmanagement/scripts/testmanagement/src/execution/execution-attachments/execution-attachments.tpl.html +39 −0 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution/execution-detail-controller.js +11 −2 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution/execution-detail-controller.test.js +36 −13 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution/execution-detail.tpl.html +4 −27 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution/execution.js +2 −0 Go to diff View file