【问题标题】:How do I get Rails to load my test envionrment variables when I run tests?我如何让 Rails 在运行测试时加载我的测试环境变量?
【发布时间】:2018-03-05 02:48:41
【问题描述】:

我正在使用 Rails 5。我有这个文件,config/environment_variables.yml

development:
  COINBASE_KEY: devkey
  COINBASE_SECRET: devsecret
test:
  COINBASE_KEY: testkey
  COINBASE_SECRET: testsecret
production:
  COINBASE_KEY: prodkey
  COINBASE_SECRET: prodsecret

我用文件 config/initializers/environment_variables.rb 加载它

module EnvironmentVariables
  class Application < Rails::Application
    config.before_configuration do
      env_file = Rails.root.join("config", 'environment_variables.yml').to_s

      if File.exists?(env_file)
        YAML.load_file(env_file)[Rails.env].each do |key, value|
          ENV[key.to_s] = value
        end # end YAML.load_file
      end # end if File.exists?
    end # end config.before_configuration
  end # end class
end # end module

但是当我使用

运行我的测试时
rails test test/services/crypto_currency_service_test.rb

测试变量没有加载——而是来自开发环境的变量正在加载。下面是我的测试文件

require 'coinbase/wallet'
require 'minitest/mock'

class CryptoCurrencyServiceTest <  ActiveSupport::TestCase

  test 'sell' do
    last_transaction = MyTransaction.new({
      :transaction_type => "buy",
      :amount_in_usd => "100",
      :btc_price_in_usd => "3000"
    })

    puts "env: #{ENV['COINBASE_KEY']}"
    @client = Coinbase::Wallet::Client.new(api_key: ENV['COINBASE_KEY'], api_secret: ENV['COINBASE_SECRET'])

我如何在运行测试时默认加载测试变量?

编辑:这是 config/environments/test.rb 文件,我没有(有意识地)改变它......

Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # The test environment is used exclusively to run your application's
  # test suite. You never need to work with it otherwise. Remember that
  # your test database is "scratch space" for the test suite and is wiped
  # and recreated between test runs. Don't rely on the data there!
  config.cache_classes = true

  # Do not eager load code on boot. This avoids loading your whole application
  # just for the purpose of running a single test. If you are using a tool that
  # preloads Rails for running tests, you may have to set it to true.
  config.eager_load = false

  # Configure public file server for tests with Cache-Control for performance.
  config.public_file_server.enabled = true
  config.public_file_server.headers = {
    'Cache-Control' => 'public, max-age=3600'
  }

  # Show full error reports and disable caching.
  config.consider_all_requests_local       = true
  config.action_controller.perform_caching = false

  # Raise exceptions instead of rendering exception templates.
  config.action_dispatch.show_exceptions = false

  # Disable request forgery protection in test environment.
  config.action_controller.allow_forgery_protection = false
  config.action_mailer.perform_caching = false

  # Tell Action Mailer not to deliver emails to the real world.
  # The :test delivery method accumulates sent emails in the
  # ActionMailer::Base.deliveries array.
  config.action_mailer.delivery_method = :test

  # Print deprecation notices to the stderr.
  config.active_support.deprecation = :stderr

  # Raises error for missing translations
  # config.action_view.raise_on_missing_translations = true
end

【问题讨论】:

  • 您好,相信您正在寻找'RAILS_ENV="test" rails test...'
  • 我正在寻找能够自动加载环境变量的东西。我不想每次运行测试时都输入 RAILS_ENV="test" 。这似乎很不符合 Rails。
  • 尝试将别名添加到 ~/.profile 文件(或您的系统使用的文件)。类似于 alias rails="RAILS_ENV='test' rails" 然后运行 ​​source ~/.profile 为当前终端会话激活它。
  • 这对开发环境有用吗?
  • 您可以为任何名称的任何环境设置别名。例如别名 some_name="RAILS_ENV='some_rails_env' rails"。 (是的,开发环境可以工作,如果它不是您的默认设置)

标签: ruby-on-rails testing environment-variables ruby-on-rails-5 minitest


【解决方案1】:

根据您原始帖子中的 cmets,我建议检查 config.before_configuration 块是否有问题。可能是在该块运行之后加载 rails 环境的情况,因此当您在测试中将其打印出来时会得到Rails.env == 'test',但在配置中它从默认(开发)环境中获取密钥。

我可以建议移动这部分吗

env_file = Rails.root.join("config", 'environment_variables.yml').to_s

      if File.exists?(env_file)
        YAML.load_file(env_file)[Rails.env].each do |key, value|
          ENV[key.to_s] = value
        end # end YAML.load_file
      end # end if File.exists?

在初始化程序中输出,然后检查环境变量。可能会解决问题。 (因为初始化程序肯定应该尊重环境)

更新:从documentation 看来,before_configuration 块是第一个要运行的块配置部分,因此 Rails.env 可能还没有设置。

【讨论】:

  • 我不理解你。你想让我把上面的代码块放在什么文件名里?
  • 只需在/config/initializers 中创建一个名为environment_variables.rb 的文件,然后将您当前拥有的代码块粘贴到config.before_configuration 中。然后运行测试。正如我所说,该代码块可能在设置任何环境之前运行,但初始化程序肯定会在之后运行。
【解决方案2】:

我不建议为此编写自定义代码。存在用于设置环境变量的现有解决方案。例如,请参阅dotenv-rails。它允许您将公共变量放入.env 文件中。只需将gem 'dotenv-rails' 添加到您的Gemfile 并将公共变量放入.env 文件中:

# .env
COINBASE_KEY: devkey
COINBASE_SECRET: devsecret

如果您需要特定于环境的变量,它允许您为此拥有单独的文件:.env.development.env.test.env.production

#.env.test

COINBASE_KEY: testkey
COINBASE_SECRET: testsecret


#.env.production

COINBASE_KEY: prodkey
COINBASE_SECRET: prodsecret

【讨论】:

  • 这些“.env”文件在哪里?在我的项目的根?
  • @Dave 是的,在你项目的根目录
猜你喜欢
  • 2023-03-25
  • 2013-09-07
  • 1970-01-01
  • 2015-02-21
  • 2010-11-06
  • 2018-12-11
  • 2021-09-10
  • 2022-11-20
  • 1970-01-01
相关资源
最近更新 更多