Method: Snapshot::Runner#work

Defined in:
snapshot/lib/snapshot/runner.rb

#workObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'snapshot/lib/snapshot/runner.rb', line 18

def work
  if File.exist?("./fastlane/snapshot.js") || File.exist?("./snapshot.js")
    UI.error("Found old snapshot configuration file 'snapshot.js'")
    UI.error("You updated to snapshot 1.0 which now uses UI Automation")
    UI.error("Please follow the migration guide: https://github.com/fastlane/fastlane/blob/master/snapshot/MigrationGuide.md")
    UI.error("And read the updated documentation: https://docs.fastlane.tools/actions/snapshot/")
    sleep(3) # to be sure the user sees this, as compiling clears the screen
  end

  Snapshot.config[:output_directory] = File.expand_path(Snapshot.config[:output_directory])

  verify_helper_is_current

  # Also print out the path to the used Xcode installation
  # We go 2 folders up, to not show "Contents/Developer/"
  values = Snapshot.config.values(ask: false)
  values[:xcode_path] = File.expand_path("../..", FastlaneCore::Helper.xcode_path)
  FastlaneCore::PrintTable.print_values(config: values, hide_keys: [], title: "Summary for snapshot #{Fastlane::VERSION}")

  clear_previous_screenshots if Snapshot.config[:clear_previous_screenshots]

  UI.success("Building and running project - this might take some time...")

  launcher_config = SimulatorLauncherConfiguration.new(snapshot_config: Snapshot.config)

  if Helper.xcode_at_least?(9)
    launcher = SimulatorLauncher.new(launcher_configuration: launcher_config)
    results = launcher.take_screenshots_simultaneously
  else
    launcher = SimulatorLauncherXcode8.new(launcher_configuration: launcher_config)
    results = launcher.take_screenshots_one_simulator_at_a_time
  end

  print_results(results)

  UI.test_failure!(launcher.collected_errors.uniq.join('; ')) if launcher.collected_errors.count > 0

  # Generate HTML report
  ReportsGenerator.new.generate

  # Clear the Derived Data
  unless Snapshot.config[:derived_data_path]
    # this should actually be launcher.derived_data_path
    FileUtils.rm_rf(TestCommandGeneratorBase.derived_data_path)
  end
end