Class: Snapshot::Options

Inherits:
Object
  • Object
show all
Defined in:
snapshot/lib/snapshot/options.rb

Class Method Summary collapse

Class Method Details

.available_optionsObject



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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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
146
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
191
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
# File 'snapshot/lib/snapshot/options.rb', line 8

def self.available_options
  output_directory = (File.directory?("fastlane") ? "fastlane/screenshots" : "screenshots")

  @options ||= [
    FastlaneCore::ConfigItem.new(key: :workspace,
                                 short_option: "-w",
                                 env_name: "SNAPSHOT_WORKSPACE",
                                 optional: true,
                                 description: "Path the workspace file",
                                 verify_block: proc do |value|
                                   v = File.expand_path(value.to_s)
                                   UI.user_error!("Workspace file not found at path '#{v}'") unless File.exist?(v)
                                   UI.user_error!("Workspace file invalid") unless File.directory?(v)
                                   UI.user_error!("Workspace file is not a workspace, must end with .xcworkspace") unless v.include?(".xcworkspace")
                                 end),
    FastlaneCore::ConfigItem.new(key: :project,
                                 short_option: "-p",
                                 optional: true,
                                 env_name: "SNAPSHOT_PROJECT",
                                 description: "Path the project file",
                                 verify_block: proc do |value|
                                   v = File.expand_path(value.to_s)
                                   UI.user_error!("Project file not found at path '#{v}'") unless File.exist?(v)
                                   UI.user_error!("Project file invalid") unless File.directory?(v)
                                   UI.user_error!("Project file is not a project file, must end with .xcodeproj") unless v.include?(".xcodeproj")
                                 end),
    FastlaneCore::ConfigItem.new(key: :xcargs,
                                 short_option: "-X",
                                 env_name: "SNAPSHOT_XCARGS",
                                 description: "Pass additional arguments to xcodebuild for the test phase. Be sure to quote the setting names and values e.g. OTHER_LDFLAGS=\"-ObjC -lstdc++\"",
                                 optional: true,
                                 type: :shell_string),
    FastlaneCore::ConfigItem.new(key: :xcconfig,
                                 short_option: "-y",
                                 env_name: "SNAPSHOT_XCCONFIG",
                                 description: "Use an extra XCCONFIG file to build your app",
                                 optional: true,
                                 verify_block: proc do |value|
                                   UI.user_error!("File not found at path '#{File.expand_path(value)}'") unless File.exist?(value)
                                 end),
    FastlaneCore::ConfigItem.new(key: :devices,
                                 description: "A list of devices you want to take the screenshots from",
                                 short_option: "-d",
                                 type: Array,
                                 optional: true,
                                 verify_block: proc do |value|
                                   available = FastlaneCore::DeviceManager.simulators
                                   value.each do |current|
                                     device = current.strip
                                     unless available.any? { |d| d.name.strip == device } || device == "Mac"
                                       UI.user_error!("Device '#{device}' not in list of available simulators '#{available.join(', ')}'")
                                     end
                                   end
                                 end),
    FastlaneCore::ConfigItem.new(key: :languages,
                                 description: "A list of languages which should be used",
                                 short_option: "-g",
                                 type: Array,
                                 default_value: ['en-US']),
    FastlaneCore::ConfigItem.new(key: :launch_arguments,
                                 env_name: 'SNAPSHOT_LAUNCH_ARGUMENTS',
                                 description: "A list of launch arguments which should be used",
                                 short_option: "-m",
                                 type: Array,
                                 default_value: ['']),
    FastlaneCore::ConfigItem.new(key: :output_directory,
                                 short_option: "-o",
                                 env_name: "SNAPSHOT_OUTPUT_DIRECTORY",
                                 description: "The directory where to store the screenshots",
                                 default_value: output_directory,
                                 default_value_dynamic: true),
    FastlaneCore::ConfigItem.new(key: :output_simulator_logs,
                                 env_name: "SNAPSHOT_OUTPUT_SIMULATOR_LOGS",
                                 description: "If the logs generated by the app (e.g. using NSLog, perror, etc.) in the Simulator should be written to the output_directory",
                                 type: Boolean,
                                 default_value: false,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :ios_version,
                                 description: "By default, the latest version should be used automatically. If you want to change it, do it here",
                                 short_option: "-i",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :skip_open_summary,
                                 env_name: 'SNAPSHOT_SKIP_OPEN_SUMMARY',
                                 description: "Don't open the HTML summary after running _snapshot_",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :skip_helper_version_check,
                                 env_name: 'SNAPSHOT_SKIP_SKIP_HELPER_VERSION_CHECK',
                                 description: "Do not check for most recent SnapshotHelper code",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :clear_previous_screenshots,
                                 env_name: 'SNAPSHOT_CLEAR_PREVIOUS_SCREENSHOTS',
                                 description: "Enabling this option will automatically clear previously generated screenshots before running snapshot",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :reinstall_app,
                                 env_name: 'SNAPSHOT_REINSTALL_APP',
                                 description: "Enabling this option will automatically uninstall the application before running it",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :erase_simulator,
                                 env_name: 'SNAPSHOT_ERASE_SIMULATOR',
                                 description: "Enabling this option will automatically erase the simulator before running the application",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :localize_simulator,
                                 env_name: 'SNAPSHOT_LOCALIZE_SIMULATOR',
                                 description: "Enabling this option will configure the Simulator's system language",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :dark_mode,
                                env_name: 'SNAPSHOT_DARK_MODE',
                                description: "Enabling this option will configure the Simulator to be in dark mode (false for light, true for dark)",
                                optional: true,
                                type: Boolean),
    FastlaneCore::ConfigItem.new(key: :app_identifier,
                                 env_name: 'SNAPSHOT_APP_IDENTIFIER',
                                 short_option: "-a",
                                 optional: true,
                                 description: "The bundle identifier of the app to uninstall (only needed when enabling reinstall_app)",
                                 code_gen_sensitive: true,
                                 # This incorrect env name is here for backwards compatibility
                                 default_value: ENV["SNAPSHOT_APP_IDENTITIFER"] || CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier),
                                 default_value_dynamic: true),
    FastlaneCore::ConfigItem.new(key: :add_photos,
                                 env_name: 'SNAPSHOT_PHOTOS',
                                 short_option: "-j",
                                 description: "A list of photos that should be added to the simulator before running the application",
                                 type: Array,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :add_videos,
                                 env_name: 'SNAPSHOT_VIDEOS',
                                 short_option: "-u",
                                 description: "A list of videos that should be added to the simulator before running the application",
                                 type: Array,
                                 optional: true),

    # Everything around building
    FastlaneCore::ConfigItem.new(key: :buildlog_path,
                                 short_option: "-l",
                                 env_name: "SNAPSHOT_BUILDLOG_PATH",
                                 description: "The directory where to store the build log",
                                 default_value: "#{FastlaneCore::Helper.buildlog_path}/snapshot",
                                 default_value_dynamic: true),
    FastlaneCore::ConfigItem.new(key: :clean,
                                 short_option: "-c",
                                 env_name: "SNAPSHOT_CLEAN",
                                 description: "Should the project be cleaned before building it?",
                                 is_string: false,
                                 default_value: false),
    FastlaneCore::ConfigItem.new(key: :test_without_building,
                                 short_option: "-T",
                                 env_name: "SNAPSHOT_TEST_WITHOUT_BUILDING",
                                 description: "Test without building, requires a derived data path",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :configuration,
                                 short_option: "-q",
                                 env_name: "SNAPSHOT_CONFIGURATION",
                                 description: "The configuration to use when building the app. Defaults to 'Release'",
                                 default_value_dynamic: true,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :xcpretty_args,
                                 short_option: "-x",
                                 env_name: "SNAPSHOT_XCPRETTY_ARGS",
                                 description: "Additional xcpretty arguments",
                                 is_string: true,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :sdk,
                                 short_option: "-k",
                                 env_name: "SNAPSHOT_SDK",
                                 description: "The SDK that should be used for building the application",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :scheme,
                                 short_option: "-s",
                                 env_name: 'SNAPSHOT_SCHEME',
                                 description: "The scheme you want to use, this must be the scheme for the UI Tests",
                                 optional: true), # optional true because we offer a picker to the user
    FastlaneCore::ConfigItem.new(key: :number_of_retries,
                                 short_option: "-n",
                                 env_name: 'SNAPSHOT_NUMBER_OF_RETRIES',
                                 description: "The number of times a test can fail before snapshot should stop retrying",
                                 type: Integer,
                                 default_value: 1),
    FastlaneCore::ConfigItem.new(key: :stop_after_first_error,
                                 env_name: 'SNAPSHOT_BREAK_ON_FIRST_ERROR',
                                 description: "Should snapshot stop immediately after the tests completely failed on one device?",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :derived_data_path,
                                 short_option: "-f",
                                 env_name: "SNAPSHOT_DERIVED_DATA_PATH",
                                 description: "The directory where build products and other derived data will go",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :result_bundle,
                                 short_option: "-z",
                                 env_name: "SNAPSHOT_RESULT_BUNDLE",
                                 is_string: false,
                                 description: "Should an Xcode result bundle be generated in the output directory",
                                 default_value: false,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :test_target_name,
                                 env_name: "SNAPSHOT_TEST_TARGET_NAME",
                                 description: "The name of the target you want to test (if you desire to override the Target Application from Xcode)",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :namespace_log_files,
                                 env_name: "SNAPSHOT_NAMESPACE_LOG_FILES",
                                 description: "Separate the log files per device and per language",
                                 optional: true,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :concurrent_simulators,
                                 env_name: "SNAPSHOT_EXECUTE_CONCURRENT_SIMULATORS",
                                 description: "Take snapshots on multiple simulators concurrently. Note: This option is only applicable when running against Xcode 9",
                                 default_value: true,
                                 is_string: false)
  ]
end