0

キュウリを通じて BDD に取り組み始めました。(Rails-3、gem 'cucumber-rails'
を使用) ログインに成功したときにユーザー プロファイル ページ (/users/id) にリダイレクトしたい。
コントローラーで (redirect_to user_path(@user)) として定義し、キュウリで (page.current_path.should == user_path(@user)) として定義したのと同じものを定義しました

私のstep_definitionで

Given /^a user visits the signin page$/ do
  visit signin_path
end

When /^he log in as "(.*)\/(.*)"$/ do |email, password|
  @email = email
  fill_in "email", with: email
  fill_in "password", with: password
  click_button "Login"
end

Then /^he should see a signin link$/ do
  page.should have_link('Sign in', href: signin_path)
end

Then /^he should see his profile page$/ do
  @user = User.where("email = ?", @email)
  page.current_path.should == user_path(@user)
end

私のコントローラーで

class SessionsController < ApplicationController

 def create
  @user = User.find_by_email(params[:session][:email].downcase)
  if @user && @user.authenticate(params[:session][:password])
   sign_in @user      
   redirect_to user_path(@user)               
  else
   flash.now[:error] = 'Invalid email/password combination'
   render 'new'
  end
 end
end

キュウリを実行すると、次のエラーが発生します。

expected: "/users/%23%3CActiveRecord::Relation:0x000000062fbec0%3E"
       got: "/users/4" (using ==) (RSpec::Expectations::ExpectationNotMetError)

私の機能/サポート/env.rb:

require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
require 'cucumber/rails'
require 'rspec/expectations'

私が間違っているところに答えてください。

4

1 に答える 1

0

ステップ定義のこのコードが問題です:

Then /^he should see his profile page$/ do
  @user = User.where("email = ?", @email)
  page.current_path.should == user_path(@user)
end

User.where結果が1つのユーザーレコードのみであっても、常にリレーションを返すため、ActiveRecord::Relationエラーメッセージの一部です。

返される User が 1 つだけであることが確実な場合は、それをUser.find_by_email(@email)またはのようなものに交換してUser.where(:email => @email).first、単一の User インスタンスを取得できます。

于 2013-02-28T08:45:45.307 に答える