Sha256: 4f9f97d59a2418ed72fd154732d50c3f19848aa7274e560017c00d51df1f08e2

Contents?: true

Size: 1010 Bytes

Versions: 40

Compression:

Stored size: 1010 Bytes

Contents

require 'yaml'
require 'erubis'
require 'fileutils'
require 'pathname'

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

      erb = Erubis::Eruby.new(config_file.read)
      expand_config(YAML.parse(erb.result(binding)).transform)
    end

    def expand_config(config)
      config['connections'].each do |adapter, connection|
        dbs = [['arunit', 'activerecord_unittest'], ['arunit2', 'activerecord_unittest2']]
        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

40 entries across 40 versions & 5 rubygems

Version Path
ibm_db-5.2.0 test/support/config.rb
ibm_db-5.1.0 test/support/config.rb
ibm_db-5.0.5 test/support/config.rb
ibm_db-5.0.4 test/support/config.rb
ibm_db-5.0.3 test/support/config.rb
ibm_db-5.0.2 test/support/config.rb
ibm_db-4.0.0-x86-mingw32 test/support/config.rb
ibm_db-4.0.0 test/support/config.rb
activerecord-precount-0.7.0 test/support/config.rb
activerecord-precount-0.7.0.beta1 test/support/config.rb
activerecord-precount-0.6.3 test/support/config.rb
activerecord-precount-0.6.2 test/support/config.rb
ibm_db-3.0.4-x86-mingw32 test/support/config.rb
ibm_db-3.0.4 test/support/config.rb
ibm_db-3.0.3-x86-mingw32 test/support/config.rb
ibm_db-3.0.3 test/support/config.rb
activerecord-precount-0.6.1 test/support/config.rb
activerecord-precount-0.6.0 test/support/config.rb
ibm_db-3.0.2-x86-mingw32 test/support/config.rb
ibm_db-3.0.2 test/support/config.rb