14

我正在尝试在应用程序控制器上测试将用作前置过滤器的方法。为此,我在测试中设置了一个匿名控制器,并应用了 before 过滤器以确保其正常运行。

目前的测试如下所示:

describe ApplicationController do
  controller do
    before_filter :authenticated

    def index      
    end
  end

  describe "user authenticated" do
    let(:session_id){"session_id"}
    let(:user){OpenStruct.new(:email => "pythonandchips@gmail.com", :name => "Colin Gemmell")}

    before do
      request.cookies[:session_id] = session_id
      UserSession.stub!(:find).with(session_id).and_return(user)
      get :index
    end

    it { should assign_to(:user){user} }

  end
end

应用程序控制器是这样的:

class ApplicationController < ActionController::Base
  protect_from_forgery

  def authenticated
    @user = nil
  end
end

我的问题是当我运行测试时出现以下错误

1) ApplicationController user authenticated 
   Failure/Error: get :index
   ActionView::MissingTemplate:
     Missing template stub_resources/index with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml, :haml], :formats=>[:html], :locale=>[:en, :en]} in view paths "#<RSpec::Rails::ViewRendering::PathSetDelegatorResolver:0x984f310>"

根据文档,在运行控制器测试时不会呈现视图,但这表明该操作不存在存根(这是可以理解的,因为视图不存在)

任何人都知道如何解决这个问题或排除视图。

干杯科林 G

4

3 回答 3

19

你不能通过以下方式解决这个问题:

render :nothing => true

里面的#index动作?

于 2011-02-28T23:19:13.850 回答
3

除非这篇博文有所改变,否则RSpec 2 需要一个视图模板文件才能使控制器规范工作。文件本身不会被渲染(除非你添加render_views),所以内容并不重要——事实上你可以简单地添加一个空文件touch index.html.erb

于 2011-02-28T23:52:53.453 回答
3

一个更好的方法是创建一个虚拟视图目录。我不会使用规范/视图,因为这实际上是用于有效的视图测试。相反,创建这个目录结构:

spec/test_views/anonymous
     index.html.erb
     ... and any other anonymous controller templates you happen to need ...

如前所述,index.html.erb 可以为空,因为 rspec2 仅检查是否存在,而不检查内容。

然后在您的 application.rb 初始化程序中,放置以下行:

# add a view directory for the anonymous controller tests
config.paths['app/views'] << "spec/test_views" if Rails.env.test?

注意:我尝试将该行放在 test.rb 中,由于某种原因似乎在那里不起作用。

于 2012-12-10T16:22:39.690 回答