class Fastlane::Actions::TestsFromJunitAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/test_center/actions/tests_from_junit.rb, line 75
def self.authors
  ["lyndsey-ferguson/lyndseydf"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/test_center/actions/tests_from_junit.rb, line 40
def self.available_options
  [
    FastlaneCore::ConfigItem.new(
      key: :junit,
      env_name: "FL_SUPPRESS_TESTS_FROM_JUNIT_JUNIT_REPORT", # The name of the environment variable
      description: "The junit xml report file from which to collect the tests to suppress",
      verify_block: proc do |path|
        UI.user_error!("Error: cannot find the junit xml report file '#{path}'") unless File.exist?(path)
      end
    )
  ]
end
category() click to toggle source
# File lib/fastlane/plugin/test_center/actions/tests_from_junit.rb, line 79
def self.category
  :testing
end
description() click to toggle source

:nocov:

# File lib/fastlane/plugin/test_center/actions/tests_from_junit.rb, line 36
def self.description
  "☑️ Retrieves the failing and passing tests as reported in a junit xml file"
end
example_code() click to toggle source
# File lib/fastlane/plugin/test_center/actions/tests_from_junit.rb, line 61
def self.example_code
  [
    "
    UI.important(
      'example: ' \\
      'get the failed and passing tests from the junit test report file'
    )
    result = tests_from_junit(junit: './spec/fixtures/junit.xml')
    UI.message(\"Passing tests: \#{result[:passing]}\")
    UI.message(\"Failed tests: \#{result[:failed]}\")
    "
  ]
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/test_center/actions/tests_from_junit.rb, line 83
def self.is_supported?(platform)
  %i[ios mac].include?(platform)
end
return_value() click to toggle source
# File lib/fastlane/plugin/test_center/actions/tests_from_junit.rb, line 53
def self.return_value
  "A Hash with information about the test results:\r\n" \
  "failed: an Array of the failed test identifiers\r\n" \
  "passing: an Array of the passing test identifiers\r\n" \
  "failure_details: a Hash with failed test identifiers as the key, and " \
  "a Hash with :message and :location details for the failed test"
end
run(params) click to toggle source
# File lib/fastlane/plugin/test_center/actions/tests_from_junit.rb, line 4
def self.run(params)
  report = ::TestCenter::Helper::XcodeJunit::Report.new(params[:junit])
  passing = []
  failed = []
  failure_details = {}
  report.testables.each do |testable|
    testable.testsuites.each do |testsuite|
      testsuite.testcases.each do |testcase|
        if testcase.passed?
          passing << testcase.identifier
        else
          failed << testcase.identifier
          failure_details[testcase.identifier] = {
            message: testcase.message,
            location: testcase.location
          }
        end
      end
    end
  end
  {
    failed: failed,
    passing: passing,
    failure_details: failure_details
  }
end