class ReportPortal::Settings

Public Class Methods

new() click to toggle source
# File lib/report_portal/settings.rb, line 8
def initialize
  filename = ENV.fetch('rp_config') do
    glob = Dir.glob('{,.config/,config/}report{,-,_}portal{.yml,.yaml}')
    p "Multiple configuration files found for ReportPortal. Using the first one: #{glob.first}" if glob.size > 1
    glob.first
  end

  @properties = filename.nil? ? {} : YAML.load_file(filename)
  keys = {
    'uuid' => true,
    'endpoint' => true,
    'project' => true,
    'launch' => true,
    'tags' => false,
    'description' => false,
    'attributes' => false,
    'is_debug' => false,
    'disable_ssl_verification' => false,
    # for parallel execution only
    'use_standard_logger' => false,
    'launch_id' => false,
    'file_with_launch_id' => false
  }

  keys.each do |key, is_required|
    define_singleton_method(key.to_sym) { setting(key) }
    next unless is_required && public_send(key).nil?

    env_variable_name = env_variable_name(key)
    raise "ReportPortal: Define environment variable '#{env_variable_name.upcase}', '#{env_variable_name}' "\
      "or key #{key} in the configuration YAML file"
  end
end

Public Instance Methods

formatter_modes() click to toggle source
# File lib/report_portal/settings.rb, line 46
def formatter_modes
  setting('formatter_modes') || []
end
launch_mode() click to toggle source
# File lib/report_portal/settings.rb, line 42
def launch_mode
  is_debug ? 'DEBUG' : 'DEFAULT'
end

Private Instance Methods

env_variable_name(key) click to toggle source
# File lib/report_portal/settings.rb, line 61
def env_variable_name(key)
  'rp_' + key
end
setting(key) click to toggle source
# File lib/report_portal/settings.rb, line 52
def setting(key)
  env_variable_name = env_variable_name(key)
  return YAML.safe_load(ENV[env_variable_name.upcase]) if ENV.key?(env_variable_name.upcase)

  return YAML.safe_load(ENV[env_variable_name]) if ENV.key?(env_variable_name)

  @properties[key]
end