@@ -50,4 +50,34 @@ def test_summary_report_builder_with_filter
50
50
assert_file_equals ( 'test/resources/summary_report_builder/expected_filtered_index.html' ,
51
51
'target/reports/diff/index.html' )
52
52
end
53
+
54
+ # See https://github.com/pmd/pmd-regression-tester/issues/121
55
+ def test_summary_report_builder_issue121
56
+ test_resources_path = 'test/resources/summary_report_builder_issue121'
57
+ projects = PmdTester ::ProjectsParser . new . parse ( "#{ test_resources_path } /project-list.xml" )
58
+
59
+ base_path = 'target/reports/base_branch'
60
+ FileUtils . mkdir_p ( base_path )
61
+ FileUtils . cp ( "#{ test_resources_path } /base_branch_info.json" , "#{ base_path } /branch_info.json" )
62
+ FileUtils . cp ( "#{ test_resources_path } /empty_config.xml" , "#{ base_path } /config.xml" )
63
+ FileUtils . mkdir_p ( "#{ base_path } /sample_project" )
64
+ FileUtils . cp ( "#{ test_resources_path } /base-report.xml" , "#{ base_path } /sample_project/pmd_report.xml" )
65
+
66
+ patch_path = 'target/reports/patch_branch'
67
+ FileUtils . mkdir_p ( patch_path )
68
+ FileUtils . cp ( "#{ test_resources_path } /patch_branch_info.json" , "#{ patch_path } /branch_info.json" )
69
+ FileUtils . cp ( "#{ test_resources_path } /empty_config.xml" , "#{ patch_path } /config.xml" )
70
+ FileUtils . mkdir_p ( "#{ patch_path } /sample_project" )
71
+ FileUtils . cp ( "#{ test_resources_path } /patch-report.xml" , "#{ patch_path } /sample_project/pmd_report.xml" )
72
+
73
+ build_html_reports ( projects , PmdTester ::PmdBranchDetail . load ( 'base_branch' , nil ) ,
74
+ PmdTester ::PmdBranchDetail . load ( 'patch_branch' , nil ) )
75
+
76
+ assert_file_equals ( "#{ test_resources_path } /expected_base_data.js" ,
77
+ 'target/reports/diff/sample_project/base_data.js' )
78
+ assert_file_equals ( "#{ test_resources_path } /expected_patch_data.js" ,
79
+ 'target/reports/diff/sample_project/patch_data.js' )
80
+ assert_file_equals ( "#{ test_resources_path } /expected_project_data.js" ,
81
+ 'target/reports/diff/sample_project/project_data.js' )
82
+ end
53
83
end
0 commit comments