Class: Fastlane::Actions::SnapshotAction

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

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, details, output, sh

Class Method Details

.authorObject



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

def self.author
  "KrauseFx"
end

.available_optionsObject



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/fastlane/actions/snapshot.rb', line 41

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :noclean,
                                 env_name: "FL_SNAPSHOT_NO_CLEAN",
                                 description: "Skips the clean process when building the app",
                                 is_string: false,
                                 default_value: false),
    FastlaneCore::ConfigItem.new(key: :verbose,
                                 env_name: "FL_SNAPSHOT_VERBOSE",
                                 description: "Print out the UI Automation output",
                                 is_string: false,
                                 default_value: false),
    FastlaneCore::ConfigItem.new(key: :snapshot_file_path,
                                 env_name: "FL_SNAPSHOT_CONFIG_PATH",
                                 description: "Specify a path to the directory containing the Snapfile",
                                 default_value: FastlaneFolder.path || Dir.pwd, # defaults to fastlane folder
                                 verify_block: Proc.new do |value|
                                  raise "Couldn't find folder '#{value}'. Make sure to pass the path to the directory not the file!".red unless File.directory?(value)
                                 end)
  ]
end

.descriptionObject



37
38
39
# File 'lib/fastlane/actions/snapshot.rb', line 37

def self.description
  "Generate new localised screenshots on multiple devices"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/fastlane/actions/snapshot.rb', line 67

def self.is_supported?(platform)
  platform == :ios
end

.run(params) ⇒ Object



8
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
# File 'lib/fastlane/actions/snapshot.rb', line 8

def self.run(params)
  $verbose = true if params[:verbose]
  clean = !params[:noclean]

  if Helper.test?
    Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] = Dir.pwd
    return clean
  end

  require 'snapshot'

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

  ENV['SNAPSHOT_SKIP_OPEN_SUMMARY'] = "1" # it doesn't make sense to show the HTML page here

  begin
    Dir.chdir(params[:snapshot_file_path] || FastlaneFolder.path) do
      Snapshot::SnapshotConfig.shared_instance
      Snapshot::Runner.new.work(clean: clean)

      results_path = Snapshot::SnapshotConfig.shared_instance.screenshots_path

      Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] = File.expand_path(results_path) # absolute URL
    end
  ensure
    FastlaneCore::UpdateChecker.show_update_status('snapshot', Snapshot::VERSION)
  end
end