Class: Fastlane::Actions::SlatherAction

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

Constant Summary collapse

ARGS_MAP =
{
    travis: '--travis',
    travis_pro: '--travispro',
    circleci: '--circleci',
    jenkins: '--jenkins',
    buildkite: '--buildkite',
    teamcity: '--teamcity',

    coveralls: '--coveralls',
    simple_output: '--simple-output',
    gutter_json: '--gutter-json',
    cobertura_xml: '--cobertura-xml',
    sonarqube_xml: '--sonarqube-xml',
    llvm_cov: '--llvm-cov',
    json: '--json',
    html: '--html',
    show: '--show',

    build_directory: '--build-directory',
    source_directory: '--source-directory',
    output_directory: '--output-directory',
    ignore: '--ignore',
    verbose: '--verbose',

    input_format: '--input-format',
    scheme: '--scheme',
    configuration: '--configuration',
    workspace: '--workspace',
    binary_file: '--binary-file',
    binary_basename: '--binary-basename',
    arch: '--arch',
    source_files: '--source-files',
    decimals: '--decimals'
}.freeze

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorsObject



305
306
307
# File 'fastlane/lib/fastlane/actions/slather.rb', line 305

def self.authors
  ["mattdelves"]
end

.available_optionsObject



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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# File 'fastlane/lib/fastlane/actions/slather.rb', line 129

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :build_directory,
                                 env_name: "FL_SLATHER_BUILD_DIRECTORY", # The name of the environment variable
                                 description: "The location of the build output", # a short description of this parameter
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :proj,
                                 env_name: "FL_SLATHER_PROJ", # The name of the environment variable
                                 description: "The project file that slather looks at", # a short description of this parameter
                                 verify_block: proc do |value|
                                   UI.user_error!("No project file specified, pass using `proj: 'Project.xcodeproj'`") unless value && !value.empty?
                                 end,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :workspace,
                                 env_name: "FL_SLATHER_WORKSPACE",
                                 description: "The workspace that slather looks at",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :scheme,
                                 env_name: "FL_SLATHER_SCHEME", # The name of the environment variable
                                 description: "Scheme to use when calling slather",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :configuration,
                                 env_name: "FL_SLATHER_CONFIGURATION", # The name of the environment variable
                                 description: "Configuration to use when calling slather (since slather-2.4.1)",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :input_format,
                                 env_name: "FL_SLATHER_INPUT_FORMAT", # The name of the environment variable
                                 description: "The input format that slather should look for",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :buildkite,
                                 env_name: "FL_SLATHER_BUILDKITE_ENABLED", # The name of the environment variable
                                 description: "Tell slather that it is running on Buildkite",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :teamcity,
                                 env_name: "FL_SLATHER_TEAMCITY_ENABLED", # The name of the environment variable
                                 description: "Tell slather that it is running on TeamCity",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :jenkins,
                                 env_name: "FL_SLATHER_JENKINS_ENABLED", # The name of the environment variable
                                 description: "Tell slather that it is running on Jenkins",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :travis,
                                 env_name: "FL_SLATHER_TRAVIS_ENABLED", # The name of the environment variable
                                 description: "Tell slather that it is running on TravisCI",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :travis_pro,
                                 env_name: "FL_SLATHER_TRAVIS_PRO_ENABLED", # The name of the environment variable
                                 description: "Tell slather that it is running on TravisCI Pro",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :circleci,
                                 env_name: "FL_SLATHER_CIRCLECI_ENABLED",
                                 description: "Tell slather that it is running on CircleCI",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :coveralls,
                                 env_name: "FL_SLATHER_COVERALLS_ENABLED",
                                 description: "Tell slather that it should post data to Coveralls",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :simple_output,
                                 env_name: "FL_SLATHER_SIMPLE_OUTPUT_ENABLED",
                                 description: "Tell slather that it should output results to the terminal",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :gutter_json,
                                 env_name: "FL_SLATHER_GUTTER_JSON_ENABLED",
                                 description: "Tell slather that it should output results as Gutter JSON format",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :cobertura_xml,
                                 env_name: "FL_SLATHER_COBERTURA_XML_ENABLED",
                                 description: "Tell slather that it should output results as Cobertura XML format",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :sonarqube_xml,
                                 env_name: "FL_SLATHER_SONARQUBE_XML_ENABLED",
                                 description: "Tell slather that it should output results as SonarQube Generic XML format",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :llvm_cov,
                                 env_name: "FL_SLATHER_LLVM_COV_ENABLED",
                                 description: "Tell slather that it should output results as llvm-cov show format",
                                 is_string: false,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :json,
                                 env_name: "FL_SLATHER_JSON_ENABLED",
                                 description: "Tell slather that it should output results as static JSON report",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :html,
                                 env_name: "FL_SLATHER_HTML_ENABLED",
                                 description: "Tell slather that it should output results as static HTML pages",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :show,
                                 env_name: "FL_SLATHER_SHOW_ENABLED",
                                 description: "Tell slather that it should open static html pages automatically",
                                 is_string: false,
                                 type: Boolean,
                                 default_value: false),
    FastlaneCore::ConfigItem.new(key: :source_directory,
                                 env_name: "FL_SLATHER_SOURCE_DIRECTORY",
                                 description: "Tell slather the location of your source files",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :output_directory,
                                 env_name: "FL_SLATHER_OUTPUT_DIRECTORY",
                                 description: "Tell slather the location of for your output files",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :ignore,
                                 env_name: "FL_SLATHER_IGNORE",
                                 description: "Tell slather to ignore files matching a path or any path from an array of paths",
                                 type: Array,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :verbose,
                                 env_name: "FL_SLATHER_VERBOSE",
                                 description: "Tell slather to enable verbose mode",
                                 is_string: false,
                                 type: Boolean,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :use_bundle_exec,
                                env_name: "FL_SLATHER_USE_BUNDLE_EXEC",
                                description: "Use bundle exec to execute slather. Make sure it is in the Gemfile",
                                is_string: false,
                                type: Boolean,
                                default_value: false),
    FastlaneCore::ConfigItem.new(key: :binary_basename,
                                 env_name: "FL_SLATHER_BINARY_BASENAME",
                                 description: "Basename of the binary file, this should match the name of your bundle excluding its extension (i.e. YourApp [for YourApp.app bundle])",
                                 type: Array,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :binary_file,
                                 env_name: "FL_SLATHER_BINARY_FILE",
                                 description: "Binary file name to be used for code coverage",
                                 type: Array,
                                 skip_type_validation: true, # skipping validation for backwards compatibility with Boolean type
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :arch,
                                 env_name: "FL_SLATHER_ARCH",
                                 description: "Specify which architecture the binary file is in. Needed for universal binaries",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :source_files,
                                 env_name: "FL_SLATHER_SOURCE_FILES",
                                 description: "A Dir.glob compatible pattern used to limit the lookup to specific source files. Ignored in gcov mode",
                                 is_string: false,
                                 default_value: false,
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :decimals,
                                env_name: "FL_SLATHER_DECIMALS",
                                description: "The amount of decimals to use for % coverage reporting",
                                is_string: false,
                                default_value: false,
                                optional: true)
  ]
end

.build_command(params) ⇒ Object



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'fastlane/lib/fastlane/actions/slather.rb', line 89

def self.build_command(params)
  command = []
  command.push("bundle exec") if params[:use_bundle_exec] && shell_out_should_use_bundle_exec?
  command << "slather coverage"

  ARGS_MAP.each do |key, cli_param|
    cli_value = params[key]
    if cli_value
      if cli_value.kind_of?(TrueClass)
        command << cli_param
      elsif cli_value.kind_of?(String)
        command << cli_param
        command << cli_value.shellescape
      elsif cli_value.kind_of?(Array)
        command << cli_value.map { |path| "#{cli_param} #{path.shellescape}" }
      end
    else
      next
    end
  end

  command << params[:proj].shellescape if params[:proj]
  command.join(" ")
end

.categoryObject



324
325
326
# File 'fastlane/lib/fastlane/actions/slather.rb', line 324

def self.category
  :testing
end

.configuration_available?Boolean

Returns:



62
63
64
# File 'fastlane/lib/fastlane/actions/slather.rb', line 62

def self.configuration_available?
  Gem::Version.new('2.4.1') <= Gem::Version.new(slather_version)
end

.descriptionObject



118
119
120
# File 'fastlane/lib/fastlane/actions/slather.rb', line 118

def self.description
  "Use slather to generate a code coverage report"
end

.detailsObject



122
123
124
125
126
127
# File 'fastlane/lib/fastlane/actions/slather.rb', line 122

def self.details
  [
    "Slather works with multiple code coverage formats, including Xcode 7 code coverage.",
    "Slather is available at [https://github.com/SlatherOrg/slather](https://github.com/SlatherOrg/slather)."
  ].join("\n")
end

.example_codeObject



313
314
315
316
317
318
319
320
321
322
# File 'fastlane/lib/fastlane/actions/slather.rb', line 313

def self.example_code
  [
    'slather(
      build_directory: "foo",
      input_format: "bah",
      scheme: "MyScheme",
      proj: "MyProject.xcodeproj"
    )'
  ]
end

.has_config_fileObject



53
54
55
# File 'fastlane/lib/fastlane/actions/slather.rb', line 53

def self.has_config_file
  File.file?('.slather.yml')
end

.is_supported?(platform) ⇒ Boolean

Returns:



309
310
311
# File 'fastlane/lib/fastlane/actions/slather.rb', line 309

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

.outputObject



302
303
# File 'fastlane/lib/fastlane/actions/slather.rb', line 302

def self.output
end

.run(params) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
51
# File 'fastlane/lib/fastlane/actions/slather.rb', line 40

def self.run(params)
  # This will fail if using Bundler. Skip the check rather than needing to
  # require bundler
  unless params[:use_bundle_exec]
    Actions.verify_gem!('slather')
  end

  validate_params!(params)

  command = build_command(params)
  sh(command)
end

.slather_versionObject



57
58
59
60
# File 'fastlane/lib/fastlane/actions/slather.rb', line 57

def self.slather_version
  require 'slather'
  Slather::VERSION
end

.validate_params!(params) ⇒ Object



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'fastlane/lib/fastlane/actions/slather.rb', line 66

def self.validate_params!(params)
  if params[:configuration]
    UI.user_error!('configuration option is available since version 2.4.1') unless configuration_available?
  end

  if params[:proj] || has_config_file
    true
  else
    UI.user_error!("You have to provide a project with `:proj` or use a .slather.yml")
  end

  # for backwards compatibility when :binary_file type was Boolean
  if params[:binary_file] == true || params[:binary_file] == false
    params[:binary_file] = nil
  end

  # :binary_file validation was skipped for backwards compatibility with Boolean. If a
  # Boolean was passed in, it has now been removed. Revalidate :binary_file
  binary_file_options = available_options.find { |a| a.key == :binary_file }
  binary_file_options.skip_type_validation = false
  binary_file_options.verify!(params[:binary_file])
end