ruby rails测试用例失败,但真正的应用程序工作

时间:2016-08-26 22:09:51

标签: ruby-on-rails-4 url-routing rake-test ruby-test

所以这是一个奇怪的问题:当我启动本地rails应用程序并浏览到http://localhost:3000/static_pages/help时,我可以看到我在那里创建的页面。 但是,我写的测试用例说不然。

static_pages_controller_test.rb

require 'test_helper'

class StaticPagesControllerTest < ActionController::TestCase
  test "should get home" do
    get :home
    assert_response :success
  end

  test "should get help" do
    puts static_pages_help_url
    puts static_pages_help_path
    get static_pages_help_url
    assert_response :success
  end    

end

它失败并出现此错误,输出$ bin / rake test:

 Running:

..http://test.host/static_pages/help
/static_pages/help
E

Finished in 0.466745s, 8.5700 runs/s, 4.2850 assertions/s.

  1) Error.

StaticPagesControllerTest#test_should_get_help:
ActionController::UrlGenerationError: No route matches {:action=>"http://test.host/static_pages/help", :controller=>"static_pages"}
    test/controllers/static_pages_controller_test.rb:12:in `block in <class:StaticPagesControllerTest>'

这是 routes.rb

Rails.application.routes.draw do
  get 'static_pages/home'

  get "static_pages/help"
end

这是 static_pages_controller.rb

class StaticPagesController < ApplicationController
  def home
  end

  def help
  end
end

和这两个文件

app/views/static_pages/home.html.erb
app/views/static_pages/help.html.erb

存在,因为我在浏览器中导航到/ static_pages / help时也可以看到它们。我在网上搜了几个小时,没有任何线索。

$ rails --version
Rails 4.2.7.1
$ ruby --version
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-linux]

我一定错过了什么。请帮忙。

1 个答案:

答案 0 :(得分:2)

由于您正在编写控制器规范,GET的参数应为action(控制器方法)。但是你传递了一个URL。如果您查看错误消息,则可以发现"http://test.host/static_pages/help"已传递到action。因此,将控制器方法的名称作为symbol而不是URL传递。尝试

get :help

请注意help是控制器操作。

但是,如果您对编写integration测试感兴趣,则应该继承ActionDispatch::IntegrationTest而不是ActionController::TestCase。所以,你的规范应该看起来像这样。

class StaticPagesControllerTest < ActionDispatch::IntegrationTest
  test "should get home" do
    get static_pages_home_url
    assert_response :success
  end

  test "should get help" do
    get static_pages_help_url
    assert_response :success
  end        
end

要了解有关集成和控制器测试的更多信息,请参阅http://weblog.jamisbuck.org/2007/1/30/unit-vs-functional-vs-integration.html

希望这有帮助!