Class: Fastlane::Actions::ScanAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/scan.rb

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, lane_context, method_missing, other_action, output, return_value, sh, step_text

Class Method Details

.authorObject



48
49
50
# File 'lib/fastlane/actions/scan.rb', line 48

def self.author
  "KrauseFx"
end

.available_optionsObject



52
53
54
55
56
57
58
59
60
61
# File 'lib/fastlane/actions/scan.rb', line 52

def self.available_options
  require 'scan'

  FastlaneCore::CommanderGenerator.new.generate(Scan::Options.available_options) + [
    FastlaneCore::ConfigItem.new(key: :fail_build,
                                 env_name: "SCAN_FAIL_BUILD",
                                 description: "Should this step stop the build if the tests fail? Set this to false if you're using trainer",
                                 default_value: true)
  ]
end

.descriptionObject



40
41
42
# File 'lib/fastlane/actions/scan.rb', line 40

def self.description
  "Easily run tests of your iOS app using `scan`"
end

.detailsObject



44
45
46
# File 'lib/fastlane/actions/scan.rb', line 44

def self.details
  "More information: https://github.com/fastlane/fastlane/tree/master/scan"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


63
64
65
# File 'lib/fastlane/actions/scan.rb', line 63

def self.is_supported?(platform)
  [:ios, :mac].include? platform
end

.run(values) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/fastlane/actions/scan.rb', line 9

def self.run(values)
  require 'scan'

  begin
    destination = values[:destination] # save destination value which can be later overridden
    Scan.config = values # we set this here to auto-detect missing values, which we need later on
    unless values[:derived_data_path].to_s.empty?
      plist_files_before = Dir["#{values[:derived_data_path]}/**/Logs/Test/*TestSummaries.plist"]
    end

    FastlaneCore::UpdateChecker.start_looking_for_update('scan') unless Helper.is_test?

    values[:destination] = destination # restore destination value
    Scan::Manager.new.work(values)

    return true
  rescue => ex
    if values[:fail_build]
      raise ex
    end
  ensure
    unless values[:derived_data_path].to_s.empty?
      Actions.lane_context[SharedValues::SCAN_DERIVED_DATA_PATH] = values[:derived_data_path]
      plist_files_after = Dir["#{values[:derived_data_path]}/**/Logs/Test/*TestSummaries.plist"]
      Actions.lane_context[SharedValues::SCAN_GENERATED_PLIST_FILE] = (plist_files_after - plist_files_before).last
    end

    FastlaneCore::UpdateChecker.show_update_status('scan', Scan::VERSION)
  end
end