Class: PDK::Test::Unit
- Inherits:
-
Object
- Object
- PDK::Test::Unit
- Defined in:
- lib/pdk/tests/unit.rb
Class Method Summary collapse
- .cmd(tests, opts = {}) ⇒ Object
- .cmd_with_args(task) ⇒ Object
- .interactive_rake(task, environment) ⇒ Object
- .invoke(report, options = {}) ⇒ Object
-
.list(options = {}) ⇒ Object
Array of { :id, :full_description }.
- .merge_json_results(json_data) ⇒ Object
- .parallel_with_no_tests?(ran_in_parallel, json_result, result) ⇒ Boolean
- .parse_output(report, json_data, duration) ⇒ Object
- .print_failure(result, exception) ⇒ Object
- .rake(task, spinner_text, environment = {}) ⇒ Object
- .rake_bin ⇒ Object
- .setup ⇒ Object
- .tear_down ⇒ Object
Class Method Details
.cmd(tests, opts = {}) ⇒ Object
6 7 8 9 10 |
# File 'lib/pdk/tests/unit.rb', line 6 def self.cmd(tests, opts = {}) rake_args = opts[:parallel] ? 'parallel_spec_standalone' : 'spec_standalone' rake_args += "[#{tests}]" unless tests.nil? || tests.empty? rake_args end |
.cmd_with_args(task) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/pdk/tests/unit.rb', line 18 def self.cmd_with_args(task) require 'pdk/util/ruby_version' argv = [rake_bin, task] argv.unshift(File.join(PDK::Util::RubyVersion.bin_path, 'ruby.exe')) if Gem.win_platform? argv end |
.interactive_rake(task, environment) ⇒ Object
38 39 40 41 42 43 44 45 46 47 |
# File 'lib/pdk/tests/unit.rb', line 38 def self.interactive_rake(task, environment) require 'pdk/cli/exec/interactive_command' command = PDK::CLI::Exec::InteractiveCommand.new(*cmd_with_args(task)).tap do |c| c.context = :module c.environment = environment end command.execute! end |
.invoke(report, options = {}) ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/pdk/tests/unit.rb', line 83 def self.invoke(report, = {}) require 'pdk/util' require 'pdk/util/bundler' PDK::Util::Bundler.ensure_binstubs!('rake', 'rspec-core') setup tests = [:tests] # Due to how rake handles paths in the command line options, any backslashed path (Windows platforms) needs to be converted # to forward slash. We can't use File.expand_path as the files aren't guaranteed to be on-disk # # Ref - https://github.com/puppetlabs/pdk/issues/828 tests = tests.tr('\\', '/') unless tests.nil? environment = {} environment['PUPPET_GEM_VERSION'] = [:puppet] if [:puppet] spinner_msg = [:parallel] ? 'Running unit tests in parallel.' : 'Running unit tests.' if [:interactive] environment['CI_SPEC_OPTIONS'] = if [:verbose] '--format documentation' else '--format progress' end result = interactive_rake(cmd(tests, ), environment) return result[:exit_code] end # Run interactive_rake for documentation output when utilising verbose option. if ([:verbose]) && ([:format]) environment['CI_SPEC_OPTIONS'] = '--format documentation' result = interactive_rake(cmd(tests, ), environment) # Caveat: Report will not be written to format option(s) file(s) when there are event failures. return result[:exit_code] unless (result[:exit_code]).zero? spinner_msg = "Exporting unit tests -> #{[:format]}" end environment['CI_SPEC_OPTIONS'] = '--format j' result = rake(cmd(tests, ), spinner_msg, environment) json_result = if [:parallel] PDK::Util.find_all_json_in(result[:stdout]) else PDK::Util.find_first_json_in(result[:stdout]) end if parallel_with_no_tests?([:parallel], json_result, result) json_result = [{ 'messages' => ['No examples found.'] }] result[:exit_code] = 0 end raise PDK::CLI::FatalError, format('Unit test output did not contain a valid JSON result: %{output}', output: result[:stdout]) if json_result.nil? || json_result.empty? json_result = merge_json_results(json_result) if [:parallel] parse_output(report, json_result, result[:duration]) result[:exit_code] ensure tear_down if [:'clean-fixtures'] end |
.list(options = {}) ⇒ Object
Returns array of { :id, :full_description }.
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/pdk/tests/unit.rb', line 234 def self.list( = {}) require 'pdk/util' require 'pdk/util/bundler' PDK::Util::Bundler.ensure_binstubs!('rake') environment = {} environment['PUPPET_GEM_VERSION'] = [:puppet] if [:puppet] output = rake('spec_list_json', 'Finding unit tests.', environment) rspec_json = PDK::Util.find_first_json_in(output[:stdout]) raise PDK::CLI::FatalError, format('Failed to find valid JSON in output from rspec: %{output}', output: output[:stdout]) unless rspec_json if rspec_json['examples'].empty? return [] if rspec_json['messages'][0] == 'No examples found.' return [] if rspec_json['messages'].include?("\nAll examples were filtered out") raise PDK::CLI::FatalError, format('Unable to enumerate examples. rspec reported: %{message}', message: rspec_json['messages']) else examples = [] rspec_json['examples'].each do |example| examples << { file_path: example['file_path'], id: example['id'], full_description: example['full_description'] } end examples end end |
.merge_json_results(json_data) ⇒ Object
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'lib/pdk/tests/unit.rb', line 192 def self.merge_json_results(json_data) require 'set' merged_json_result = {} # Merge messages = Set.new json_data.each do |json| next unless json['messages'] |= json['messages'] end merged_json_result['messages'] = .to_a # Merge examples all_examples = [] json_data.each do |json| next unless json['examples'] all_examples.concat json['examples'] end merged_json_result['examples'] = all_examples # Merge summaries summary_hash = { 'example_count' => 0, 'failure_count' => 0, 'pending_count' => 0 } json_data.each do |json| next unless json['summary'] summary_hash['example_count'] += json['summary']['example_count'] summary_hash['failure_count'] += json['summary']['failure_count'] summary_hash['pending_count'] += json['summary']['pending_count'] end merged_json_result['summary'] = summary_hash merged_json_result end |
.parallel_with_no_tests?(ran_in_parallel, json_result, result) ⇒ Boolean
49 50 51 52 53 |
# File 'lib/pdk/tests/unit.rb', line 49 def self.parallel_with_no_tests?(ran_in_parallel, json_result, result) ran_in_parallel && json_result.empty? && ((!result[:exit_code].zero? && result[:stderr].strip =~ /Pass files or folders to run$/) || result[:stderr].strip =~ /No files for parallel_spec to run against$/) end |
.parse_output(report, json_data, duration) ⇒ Object
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/pdk/tests/unit.rb', line 147 def self.parse_output(report, json_data, duration) # Output messages to stderr. json_data['messages']&.each { |msg| $stderr.puts msg } example_results = { # Only possibilities are passed, failed, pending: # https://github.com/rspec/rspec-core/blob/main/lib/rspec/core/example.rb#L548 'passed' => [], 'failed' => [], 'pending' => [] } json_data['examples']&.each do |ex| example_results[ex['status']] << ex if example_results.key?(ex['status']) end example_results.each do |result, examples| # Translate rspec example results to JUnit XML testcase results state_map = { 'passed' => :passed, 'failed' => :failure, 'pending' => :skipped } examples.each do |ex| report.add_event( source: 'rspec', state: state_map[result], file: ex['file_path'], line: ex['line_number'], test: ex['full_description'], severity: ex['status'], message: ex['pending_message'] || (ex['exception'] && ex['exception']['message']) || nil, trace: (ex['exception'] && ex['exception']['backtrace']) || nil ) end end return unless json_data['summary'] # TODO: standardize summary output $stderr.puts ' ' << (format('Evaluated %{total} tests in %{duration} seconds: %{failures} failures, %{pending} pending.', total: json_data['summary']['example_count'], duration: duration, failures: json_data['summary']['failure_count'], pending: json_data['summary']['pending_count'])) # rubocop:disable Layout/LineLength end |
.print_failure(result, exception) ⇒ Object
55 56 57 58 59 60 61 |
# File 'lib/pdk/tests/unit.rb', line 55 def self.print_failure(result, exception) $stderr.puts '' result[:stdout]&.each_line { |line| $stderr.puts line.rstrip } result[:stderr]&.each_line { |line| $stderr.puts line.rstrip } $stderr.puts '' raise PDK::CLI::FatalError, exception end |
.rake(task, spinner_text, environment = {}) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/pdk/tests/unit.rb', line 26 def self.rake(task, spinner_text, environment = {}) require 'pdk/cli/exec/command' command = PDK::CLI::Exec::Command.new(*cmd_with_args(task)).tap do |c| c.context = :module c.add_spinner(spinner_text) if spinner_text c.environment = environment end command.execute! end |
.rake_bin ⇒ Object
12 13 14 15 16 |
# File 'lib/pdk/tests/unit.rb', line 12 def self.rake_bin require 'pdk/util' @rake ||= File.join(PDK::Util.module_root, 'bin', 'rake') end |
.setup ⇒ Object
72 73 74 75 76 77 78 79 80 81 |
# File 'lib/pdk/tests/unit.rb', line 72 def self.setup result = rake('spec_prep', 'Preparing to run the unit tests.') return if result[:exit_code].zero? tear_down PDK.logger.error('The spec_prep rake task failed with the following error(s):') print_failure(result, 'Failed to prepare to run the unit tests.') end |
.tear_down ⇒ Object
63 64 65 66 67 68 69 70 |
# File 'lib/pdk/tests/unit.rb', line 63 def self.tear_down result = rake('spec_clean', 'Cleaning up after running unit tests.') return if result[:exit_code].zero? PDK.logger.error('The spec_clean rake task failed with the following error(s):') print_failure(result, 'Failed to clean up after running unit tests') end |