stable

Clone or download

Read-only

feat(jira): Add issuetype field in mono tracker report

This is part of story #32788 Introduce the Jira project import with a solo tracker The imported mono tracker has now the issuetype field in all reports. How to test ----------- * Set the feature flag feature_flag_jira_import_mono_tracker_mode to 1 * Run a Jira project import => The project is created with a mono tracker with used fields and issuetype field in all reports and without any data. * Set the feature flag feature_flag_jira_import_mono_tracker_mode to 0 * Run a Jira project import => The project is created with an multi trackers and with all expected data (as before). Change-Id: I7928c6ef0614dc256eed897ff24a245c41af6de3

Modified Files

Name
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/IExportJiraLikeXmlReport.php +1 −0 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportAllIssuesExporter.php +3 −0 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportCreatedRecentlyExporter.php +3 −0 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportDoneIssuesExporter.php +3 −0 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportExporter.php +11 −5 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportOpenIssuesExporter.php +3 −0 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportUpdatedRecentlyExporter.php +3 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportAllIssuesExporterTest.php +26 −25 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportCreatedRecentlyExporterTest.php +32 −30 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportDoneIssuesExporterTest.php +36 −33 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportOpenIssuesExporterTest.php +33 −31 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportUpdatedRecentlyExporterTest.php +32 −30 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/_fixtures/IE/mono_tracker.xml +20 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/_fixtures/IXMC/mono_tracker.xml +20 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/_fixtures/SBX/mono_tracker.xml +20 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/_fixtures/SBXv9/mono_tracker.xml +20 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/_fixtures/SP/mono_tracker.xml +20 −0 Go to diff View file