Sha256: 8a9a1300545c0cb051af0cf69fcb1cb78cf40863a9ab60f96865043e286171c4

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

require "fileutils"
require "pathname"
require "active_support/configuration_file"

module ARTest
  class << self
    def config
      @config ||= read_config
    end

    private
      def config_file
        Pathname.new(ENV["ARCONFIG"] || TEST_ROOT + "/config.yml")
      end

      def read_config
        unless config_file.exist?
          FileUtils.cp TEST_ROOT + "/config.example.yml", config_file
        end

        expand_config ActiveSupport::ConfigurationFile.parse(config_file)
      end

      def expand_config(config)
        config["connections"].each do |adapter, connection|
          dbs = [["arunit", "activerecord_unittest"], ["arunit2", "activerecord_unittest2"],
                 ["arunit_without_prepared_statements", "activerecord_unittest"]]
          dbs.each do |name, dbname|
            unless connection[name].is_a?(Hash)
              connection[name] = { "database" => connection[name] }
            end

            connection[name]["database"] ||= dbname
            connection[name]["adapter"]  ||= adapter
          end
        end

        config
      end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ibm_db-5.5.0-x86-mingw32 test/support/config.rb
ibm_db-5.4.1-x86-mingw32 test/support/config.rb
ibm_db-5.4.0-x86-mingw32 test/support/config.rb
ibm_db-5.3.2-x86-mingw32 test/support/config.rb