9

新的测试,我正在努力让一些控制器测试通过。

以下控制器测试引发错误:

   expecting <"index"> but rendering with <"">

我的控制器规格之一中有以下内容:

  require 'spec_helper'

  describe NasController do

  render_views
  login_user

  describe "GET #nas" do
      it "populates an array of devices" do
        @location = FactoryGirl.create(:location)
        @location.users << @current_user
        @nas = FactoryGirl.create(:nas, location_id: @location.id )      
        get :index
        assigns(:nas).should eq([@nas])
      end

      it "renders the :index view" do
        response.should render_template(:index)
      end
    end

在我的控制器宏中,我有这个:

  def login_user
    before(:each) do
      @request.env["devise.mapping"] = Devise.mappings[:user]
      @current_user = FactoryGirl.create(:user)
      @current_user.roles << Role.first
      sign_in @current_user
      User.current_user = @current_user
      @user = @current_user
      @ability = Ability.new(@current_user)
    end
  end

我正在使用 devise 和 cancan 并遵循他们的指南。测试。我相信我的用户之前已登录并能够查看索引操作。

我该怎么做才能让测试通过?

-- 更新 1 --

控制器代码:

class NasController < ApplicationController
   before_filter :authenticate_user!
   load_and_authorize_resource

   respond_to :js

   def index

     if params[:location_id]
       ...
     else
     @nas = Nas.accessible_by(current_ability).page(params[:page]).order(sort_column + ' ' + sort_direction)

     respond_to do |format|
      format.html # show.html.erb
     end    
    end
  end
4

2 回答 2

14

我想如果你改变

it "renders the :index view" do
  response.should render_template(:index)
end

it "renders the :index view" do
  get :index
  response.should render_template(:index)
end

它应该工作。

更新:试试这个

it "renders the :index view" do
  @location = FactoryGirl.create(:location)
  @location.users << @current_user
  @nas = FactoryGirl.create(:nas, location_id: @location.id ) 
  get :index
  response.should render_template(:index)
end
于 2012-10-25T20:05:36.520 回答
1

我设法最终解决了这个错误,但不知道我们是否有同样的问题。

在我的设置中,我有一个控制器宏,它将遍历每种响应格式(html、js、json 等)并在该格式下测试规范。像个白痴一样,我实际上还没有针对我的某些规范的 json 响应模板,而且我没有意识到如果它实际上找不到模板会引发错误。所以这是我的问题。

尝试在您的规范中指定格式,如下所示,然后在正确的文件夹中编写一些名为 index.html 的模拟模板,看看是否会遇到相同的错误。

get :index, :format => "html"
于 2012-10-29T00:45:43.600 回答