我在rspec测试中使用了设计。这是我的考试
describe BooksController do
before(:all) do
@user = FactoryGirl.create(:user)
end
describe "GET index" do
it "shows list of current user books" do
sign_in @user
book = @user.books.create!(:title => "user")
get :index, {}
assigns(:books).should eq(@user.books)
end
end
describe "GET show" do
it "assigns the requested book as @book" do
sign_in @user
book = @user.books.create!(:title => "user")
visit_count = book.visits.to_i
get :show, {:id => book.to_param}
assigns(:book).should eq(book)
book = Book.find(book.id)
visit_count.should_not eq(book.visits)
end
end
describe "GET new" do
it "assigns a new book as @book" do
sign_in @user
get :new, {}
assigns(:book).should be_a_new(Book)
end
end
end
工厂
FactoryGirl.define do
factory :user do
sequence(:email) { |n| "foo#{n}@example.com" }
password '12345678'
password_confirmation '12345678'
confirmed_at Time.now
end
end
书籍管理员
class BooksController < ApplicationController
before_action :authenticate_user!, only: [:index, :edit, :update, :destroy, :new, :my_books, :add_wish_list]
# GET /books
# GET /books.json
def index
@books = current_user.books
end
# GET /books/1
# GET /books/1.json
def show
@book = Book.find(params[:id])
@book.book_visit_count
if(session["warden.user.user.key"].present?)
@book.book_visit_user(session["warden.user.user.key"][0][0])
end
end
# GET /books/new
def new
@book = Book.new
end
end
错误
Failure/Error: assigns(:book).should be_a_new(Book)
expected nil to be a new Book(id: integer, title: string, author: string, isbn_10: string, isbn_13: string, edition: integer, print: integer, publication_year: integer, publication_month: string, condition: string, value: integer, status: boolean, stage: integer, description: text, visits: integer, user_id: integer, prefered_place: string, prefered_time: string, created_at: datetime, updated_at: datetime, rating: integer, image: string, publisher: string, goodreads_id: string)
# ./spec/controllers/books_controller_spec.rb:66:in `block (3 levels) in <top (required)>'
问题是第三次测试“get new”在我作为一个整体运行测试时失败但在我单独运行它时通过。如果我删除before_authenticate!在控制器然后所有测试通过。 如果我在前两个描述块中注释掉“assigns”,那么所有测试再次通过。 我正在使用rails 4.0.2和rspec 2.14.7,设计3.2.2
答案 0 :(得分:1)
我唯一能想到的是,对于之前已经过身份验证的用户,您的authenticate_user
方法失败了。它不会影响show
,因为您的:show
中没有列出before_action
。您可以通过要求show
的身份验证来测试此理论,并查看您的第二个示例是否也开始before(:all)
失败。