class Fastlane::Actions::LcovAction

Public Class Methods

author() click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 40
def self.author
  "thiagolioy"
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 19
def self.available_options
  [

    FastlaneCore::ConfigItem.new(key: :project_name,
                                 env_name: "FL_LCOV_PROJECT_NAME",
                                 description: "Name of the project"),
    FastlaneCore::ConfigItem.new(key: :scheme,
                                 env_name: "FL_LCOV_SCHEME",
                                 description: "Scheme of the project"),
    FastlaneCore::ConfigItem.new(key: :arch,
                                 env_name: "FL_LCOV_ARCH",
                                 description: "The build arch where will search .gcda files",
                                 default_value: "i386"),
    FastlaneCore::ConfigItem.new(key: :output_dir,
                                 env_name: "FL_LCOV_OUTPUT_DIR",
                                 description: "The output directory that coverage data will be stored. If not passed will use coverage_reports as default value",
                                 optional: true,
                                 default_value: "coverage_reports")
  ]
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 93
def self.category
  :testing
end
derived_data_dir(options) click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 62
def self.derived_data_dir(options)
  pn = options[:project_name]
  sc = options[:scheme]
  arch = options[:arch]

  initial_path = "#{Dir.home}/Library/Developer/Xcode/DerivedData/"
  end_path = "/Build/Intermediates/#{pn}.build/Debug-iphonesimulator/#{sc}.build/Objects-normal/#{arch}/"

  match = find_project_dir(pn, initial_path)

  "#{initial_path}#{match}#{end_path}"
end
description() click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 15
def self.description
  "Generates coverage data using lcov"
end
example_code() click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 83
def self.example_code
  [
    'lcov(
      project_name: "ProjectName",
      scheme: "yourScheme",
      output_dir: "cov_reports" # This value is optional. Default is coverage_reports
    )'
  ]
end
exclude_dirs() click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 79
def self.exclude_dirs
  ["/Applications/*", "/Frameworks/*"]
end
find_project_dir(project_name, path) click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 75
def self.find_project_dir(project_name, path)
  `ls -t #{path}| grep #{project_name} | head -1`.to_s.delete("\n")
end
gen_cov(options) click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 44
def self.gen_cov(options)
  tmp_cov_file = "/tmp/coverage.info"
  output_dir = options[:output_dir]
  derived_data_path = derived_data_dir(options)

  system("lcov --capture --directory \"#{derived_data_path}\" --output-file #{tmp_cov_file}")
  system(gen_lcov_cmd(tmp_cov_file))
  system("genhtml #{tmp_cov_file} --output-directory #{output_dir}")
end
gen_lcov_cmd(cov_file) click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 54
def self.gen_lcov_cmd(cov_file)
  cmd = "lcov "
  exclude_dirs.each do |e|
    cmd << "--remove #{cov_file} \"#{e}\" "
  end
  cmd << "--output #{cov_file} "
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 4
def self.is_supported?(platform)
  [:ios, :mac].include?(platform)
end
run(options) click to toggle source
# File fastlane/lib/fastlane/actions/lcov.rb, line 8
def self.run(options)
  unless Helper.test?
    UI.user_error!("lcov not installed, please install using `brew install lcov`") if `which lcov`.length == 0
  end
  gen_cov(options)
end