stable

Clone or download

Read-only

Add sprints' Start Date

Add in the structure, search criteria and columns. Fill with the values provided by the REST API. I only care about startDate here to put in place the test mechanism (xpath) and the new classes. The integration tests are update to xpath to locate the elements to remove a bit of coupling between the tests and the implementation. For instance we only really care in the tests if start_date formElement is present, it's actual placement (in which container) is not really important here. Part of story #19242 create Jira project with Agile configuration Change-Id: I23cc4304daa201f2965bc74588b56bc370b9a237

Modified Files

Name
M plugins/jira_import/include/JiraAgile/JiraAgileImporter.php +10 −4 Go to diff View file
M plugins/jira_import/include/JiraAgile/ScrumTrackerBuilder.php +24 −13 Go to diff View file
M plugins/jira_import/tests/unit/JiraAgile/JiraAgileImporterTest.php +76 −12 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportTableExporter.php +2 −2 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Container/Column/XML/XMLColumn.php +5 −1 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/Date/XML/XMLDateField.php +64 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/Date/XML/XMLDateValue.php +56 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/XML/XMLFormElement.php +5 −1 Go to diff View file
R plugins/tracker/include/Tracker/Report/Renderer/Table/Column/XML/XMLColumn.php Go to diff View file
M plugins/tracker/include/Tracker/Report/Renderer/Table/XML/XMLTable.php +5 −5 Go to diff View file
M plugins/tracker/include/Tracker/Report/XML/XMLReport.php +3 −3 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Container/Fieldset/XML/XMLFieldsetTest.php +1 −1 Go to diff View file
A plugins/tracker/tests/unit/Tracker/FormElement/Field/Date/XML/XMLDateFieldTest.php +48 −0 Go to diff View file
A plugins/tracker/tests/unit/Tracker/FormElement/Field/Date/XML/XMLDateValueTest.php +49 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/XML/XMLTrackerTest.php +16 −4 Go to diff View file