Sha256: 4651ca3c5b057e04558f2194cfe9fa6248a7df2c4e3c8cd2e55cafba5d8db33f

Contents?: true

Size: 997 Bytes

Versions: 11

Compression:

Stored size: 997 Bytes

Contents

require 'yaml'
require 'erb'
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 = ERB.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

11 entries across 11 versions & 3 rubygems

Version Path
activerecord-mysql-awesome-0.0.9 test/support/config.rb
activerecord-mysql-awesome-0.0.8 test/support/config.rb
activerecord-mysql-awesome-0.0.7 test/support/config.rb
activerecord-mysql-awesome-0.0.6 test/support/config.rb
activerecord-mysql-awesome-0.0.5 test/support/config.rb
activerecord-postgresql-expression-0.0.2 test/support/config.rb
activerecord-postgresql-expression-0.0.1 test/support/config.rb
activerecord-mysql-comment-0.0.1 test/support/config.rb
activerecord-mysql-awesome-0.0.4 test/support/config.rb
activerecord-mysql-awesome-0.0.3 test/support/config.rb
activerecord-mysql-awesome-0.0.2 test/support/config.rb