Class: TestCenter::Helper::CorrectingScanHelper

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(multi_scan_options) ⇒ CorrectingScanHelper

Returns a new instance of CorrectingScanHelper.

[View source]

9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb', line 9

def initialize(multi_scan_options)
  @batch_count = multi_scan_options[:batch_count] || 1
  @output_directory = multi_scan_options[:output_directory] || 'test_results'
  @try_count = multi_scan_options[:try_count]
  @retry_total_count = 0
  @testrun_completed_block = multi_scan_options[:testrun_completed_block]
  @given_custom_report_file_name = multi_scan_options[:custom_report_file_name]
  @given_output_types = multi_scan_options[:output_types]
  @given_output_files = multi_scan_options[:output_files]
  @scan_options = multi_scan_options.reject do |option, _|
    %i[
      output_directory
      only_testing
      skip_testing
      clean
      try_count
      batch_count
      custom_report_file_name
      fail_build
      testrun_completed_block
    ].include?(option)
  end
  @test_collector = TestCollector.new(multi_scan_options)
end

Instance Attribute Details

#retry_total_countObject (readonly)

Returns the value of attribute retry_total_count.


7
8
9
# File 'lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb', line 7

def retry_total_count
  @retry_total_count
end

Instance Method Details

#collate_reports(output_directory, reportnamer) ⇒ Object

[View source]

81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb', line 81

def collate_reports(output_directory, reportnamer)
  report_files = Dir.glob("#{output_directory}/*#{reportnamer.junit_filextension}").map do |relative_filepath|
    File.absolute_path(relative_filepath)
  end
  if report_files.size > 1
    config = FastlaneCore::Configuration.create(
      Fastlane::Actions::CollateJunitReportsAction.available_options,
      {
        reports: report_files.sort { |f1, f2| File.mtime(f1) <=> File.mtime(f2) },
        collated_report: File.absolute_path(File.join(output_directory, reportnamer.junit_reportname))
      }
    )
    Fastlane::Actions::CollateJunitReportsAction.run(config)
  end
  retried_junit_reportfiles = Dir.glob("#{output_directory}/**/*-[1-9]*#{reportnamer.junit_filextension}")
  FileUtils.rm_f(retried_junit_reportfiles)
end

#correcting_scan(scan_run_options, batch, reportnamer) ⇒ Object

[View source]

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
# File 'lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb', line 99

def correcting_scan(scan_run_options, batch, reportnamer)
  scan_options = @scan_options.merge(scan_run_options)
  try_count = 0
  tests_passed = true
  begin
    try_count += 1
    config = FastlaneCore::Configuration.create(
      Fastlane::Actions::ScanAction.available_options,
      scan_options.merge(reportnamer.scan_options)
    )
    quit_simulators
    Fastlane::Actions::ScanAction.run(config)
    @testrun_completed_block && @testrun_completed_block.call(
      testrun_info(batch, try_count, reportnamer, scan_options[:output_directory])
    )
    tests_passed = true
  rescue FastlaneCore::Interface::FastlaneTestFailure => e
    FastlaneCore::UI.verbose("Scan failed with #{e}")
    if try_count < @try_count
      @retry_total_count += 1

      info = testrun_info(batch, try_count, reportnamer, scan_options[:output_directory])
      @testrun_completed_block && @testrun_completed_block.call(
        info
      )
      scan_options[:only_testing] = info[:failed].map(&:shellescape)
      FastlaneCore::UI.message('Re-running scan on only failed tests')
      reportnamer.increment
      retry
    end
    tests_passed = false
  end
  tests_passed
end

#quit_simulatorsObject

[View source]

153
154
155
156
157
158
159
160
161
# File 'lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb', line 153

def quit_simulators
  Fastlane::Actions.sh("killall -9 'iPhone Simulator' 'Simulator' 'SimulatorBridge' &> /dev/null || true", log: false)
  launchctl_list_count = 0
  while Fastlane::Actions.sh('launchctl list | grep com.apple.CoreSimulator.CoreSimulatorService || true', log: false) != ''
    break if (launchctl_list_count += 1) > 10
    Fastlane::Actions.sh('launchctl remove com.apple.CoreSimulator.CoreSimulatorService &> /dev/null || true', log: false)
    sleep(1)
  end
end

#scanObject

[View source]

34
35
36
37
38
39
40
41
# File 'lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb', line 34

def scan
  tests_passed = true
  @testables_count = @test_collector.testables.size
  @test_collector.testables.each do |testable|
    tests_passed = scan_testable(testable) && tests_passed
  end
  tests_passed
end

#scan_testable(testable) ⇒ Object

[View source]

43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb', line 43

def scan_testable(testable)
  tests_passed = true
  reportnamer = ReportNameHelper.new(
    @given_output_types,
    @given_output_files,
    @given_custom_report_file_name
  )
  output_directory = @output_directory
  testable_tests = @test_collector.testables_tests[testable]
  if @batch_count > 1 || @testables_count > 1
    current_batch = 1
    testable_tests.each_slice((testable_tests.length / @batch_count.to_f).round).to_a.each do |tests_batch|
      if @testables_count > 1
        output_directory = File.join(@output_directory, "results-#{testable}")
      end
      FastlaneCore::UI.header("Starting test run on testable '#{testable}'")
      tests_passed = correcting_scan(
        {
          only_testing: tests_batch,
          output_directory: output_directory
        },
        current_batch,
        reportnamer
      ) && tests_passed
      current_batch += 1
      reportnamer.increment
    end
  else
    options = {
      output_directory: output_directory,
      only_testing: testable_tests
    }
    tests_passed = correcting_scan(options, 1, reportnamer) && tests_passed
  end
  collate_reports(output_directory, reportnamer)
  tests_passed
end

#testrun_info(batch, try_count, reportnamer, output_directory) ⇒ Object

[View source]

134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/fastlane/plugin/retry_tests/helper/correcting_scan_helper.rb', line 134

def testrun_info(batch, try_count, reportnamer, output_directory)
  report_filepath = File.join(output_directory, reportnamer.junit_last_reportname)
  config = FastlaneCore::Configuration.create(
    Fastlane::Actions::TestsFromJunitAction.available_options,
    {
      junit: File.absolute_path(report_filepath)
    }
  )
  junit_results = Fastlane::Actions::TestsFromJunitAction.run(config)

  {
    failed: junit_results[:failed],
    passing: junit_results[:passing],
    batch: batch,
    try_count: try_count,
    report_filepath: report_filepath
  }
end