IntegrationTest вызывает ошибки из конфигурации? - PullRequest
0 голосов
/ 25 апреля 2018

У меня возникли проблемы при тестировании приложения на Rails.

У меня есть простой следующий файл для проверки контроллера (полагаясь на http://guides.rubyonrails.org/testing.html):

require "./test/test_helper"
class GraphControllerTest < ActionDispatch::IntegrationTest

    setup do
        @instance = Instance.where(client_id: 2).first
    end

    test "should_create" do
        assert_difference('Graph.count') do
            post v2_instance_graphs_url(instance_id: @instance.client_id), {'name': "test of test", 'instance_id': @instance.client_id}.to_json, {'Authorization': 'Token token=blabla', 'Content-Type': 'application/json'}
        end
        assert_equal JSON.parse(@response.body)["name"], "test of test"
      end
end

С test_helper.rb, который:

ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'

class ActiveSupport::TestCase
  # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
  #
  # Note: You'll currently still have to declare fixtures explicitly in integration tests
  # -- they do not yet inherit this setting
  fixtures :all

  # Add more helper methods to be used by all tests here...
end

Я запускаю в консоли: bin/rake test test/controllers/knowledge_graph_controller_test.rb который должен вызвать только два утверждения выше. Тем не менее, и я получаю два утверждения выше И 8 ошибок.

ошибки следующие:

  1) Error:
ActiveSupport::TestCase#test_app=:
ArgumentError: wrong number of arguments (given 0, expected 1)


  2) Error:
ActionController::TestCase#test_app=:
ArgumentError: wrong number of arguments (given 0, expected 1)


  3) Error:
Minitest::Test#test_app=:
ArgumentError: wrong number of arguments (given 0, expected 1)


  4) Error:
GraphControllerTest#test_app=:
ArgumentError: wrong number of arguments (given 0, expected 1)


  5) Error:
ActionDispatch::IntegrationTest#test_app=:
ArgumentError: wrong number of arguments (given 0, expected 1)


  6) Error:
Minitest::Unit::TestCase#test_app=:
ArgumentError: wrong number of arguments (given 0, expected 1)


  7) Error:
Rails::Generators::TestCase#test_app:
RuntimeError: You need to configure your Rails::Generators::TestCase destination root.


  8) Error:
Rails::Generators::TestCase#test_app=:
RuntimeError: You need to configure your Rails::Generators::TestCase destination root.

что я не могу объяснить. Я даже не понимаю, из какого они файла.

Я использую Rails 4.2.7.1

Большое спасибо за помощь!

1 Ответ

0 голосов
/ 03 мая 2018

Проблема заключалась в «включении ActionDispatch» в другой файл.

...