0

私はMichaelHartlRails 3.2に取り組んでおり、これらの問題に数時間悩まされています。正確であることを確認するために7、8、9のすべてのコードを調べたので、何が欠けているのか理解できません。ユーザーコントロールのプライベートセクションに追加するまで、更新/編集ページは機能していました。

それらを追加したので、手動でページをテストして設定を押すと、サインインページに直接移動します。signed_inでない限り、それはうまくいかないようですか?そして、ユーザーコントローラーページから署名ページにリダイレクトします。編集ページがサインインするために表示されないために私のテストが失敗する理由は理にかなっています。アイデアや提案をいただければ幸いです。他のページを見る必要がある場合は、私に知らせてください。

エラーメッセージ-以下のような9つのエラーが表示されます

Failures:

1) UserPages edit page 
 Failure/Error: it { should have_selector('h1', text: "Update your profile") }
   expected css "h1" with text "Update your profile" to return something
 # ./spec/requests/user_pages_spec.rb:73:in `block (4 levels) in <top (required)>'

2) UserPages edit page 
 Failure/Error: it { should have_link('change', href: 'http://gravatar.com/emails')}
   expected link "change" to return something
 # ./spec/requests/user_pages_spec.rb:75:in `block (4 levels) in <top (required)>'

3) UserPages edit page 
 Failure/Error: it { should have_selector('title', text: "Edit user") }
   expected css "title" with text "Edit user" to return something
 # ./spec/requests/user_pages_spec.rb:74:in `block (4 levels) in <top (required)>'

4) UserPages edit with valid information 
 Failure/Error: fill_in "Name", with: new_name
 Capybara::ElementNotFound:
   cannot fill in, no text field, text area or password field with id, name, or label 'Name' found
 # (eval):2:in `fill_in'
 # ./spec/requests/user_pages_spec.rb:88:in `block (4 levels) in <top (required)>'

5) UserPages edit with valid information 
 Failure/Error: fill_in "Name", with: new_name
 Capybara::ElementNotFound:
   cannot fill in, no text field, text area or password field with id, name, or label 'Name' found
 # (eval):2:in `fill_in'
 # ./spec/requests/user_pages_spec.rb:88:in `block (4 levels) in <top (required)>'

6) UserPages edit with valid information 
 Failure/Error: fill_in "Name", with: new_name
 Capybara::ElementNotFound:
   cannot fill in, no text field, text area or password field with id, name, or label 'Name' found
 # (eval):2:in `fill_in'
 # ./spec/requests/user_pages_spec.rb:88:in `block (4 levels) in <top (required)>'

7) UserPages edit with valid information 
 Failure/Error: fill_in "Name", with: new_name
 Capybara::ElementNotFound:
   cannot fill in, no text field, text area or password field with id, name, or label 'Name' found
 # (eval):2:in `fill_in'
 # ./spec/requests/user_pages_spec.rb:88:in `block (4 levels) in <top (required)>'

8) UserPages edit with valid information 
 Failure/Error: fill_in "Name", with: new_name
 Capybara::ElementNotFound:
   cannot fill in, no text field, text area or password field with id, name, or label 'Name' found
 # (eval):2:in `fill_in'
 # ./spec/requests/user_pages_spec.rb:88:in `block (4 levels) in <top (required)>'

9) UserPages edit with invalid information 
 Failure/Error: before { click_button "Save changes" }
 Capybara::ElementNotFound:
   no button with value or id or text 'Save changes' found
 # (eval):2:in `click_button'
 # ./spec/requests/user_pages_spec.rb:79:in `block (4 levels) in <top (required)>'

これが認証仕様ページです

require 'spec_helper'

describe "AuthenticationPages" do

subject { page }

describe "signin page" do
    before { visit signin_path }

    it { should have_selector('h1', text: 'Sign in') }
    it { should have_selector('title', text: 'Sign in') } 
end

describe "signin" do
before { visit signin_path}

    describe "with invalid information" do
        before { click_button "Sign in" }

        it { should have_selector('title', text: 'Sign in') }
        it { should have_selector('div.alert.alert-error', text: 'Invalid') }

        describe "after visiting another page" do
            before { click_link "Home" }
            it { should_not have_selector('div.alert.alert-error') }
        end
    end


    describe "with valid information" do
        let(:user) { FactoryGirl.create(:user) }
        before { sign_in user }


        describe "followed by signout" do
            before { click_link "Sign out" }
            it { should have_link('Sign in')}
        end

        it { should have_selector('title', text: user.name) }
        it { should have_link('Profile', href: user_path(user)) }
        it { should have_link('Settings', href: edit_user_path(user)) }
        it { should have_link('Sign out', href: signout_path) }
        it { should_not have_link('Sign in', href: signin_path) }

    end
end

describe "authorization" do

    describe "for non-signed-in users" do
        let(:user) { FactoryGirl.create(:user) }

        describe "in the Users controller" do

            describe "visiting the edit page" do
                before { visit edit_user_path(user) }
                it { should have_selector('title', text: 'Sign in' ) }
            end

            describe "submitting to the update action" do
                before { put user_path(user) }
                specify { response.should redirect_to(signin_path) }
            end
        end
    end
end
end

そしてユーザーページの仕様

require 'spec_helper'

describe "UserPages" do

subject { page }

describe "profile page" do
    before { visit user_path(user) }
    let(:user) {FactoryGirl.create(:user) }


    it { should have_selector('h1', text: user.name)}
    it { should have_selector('title', text: user.name) }
end

describe "signup page" do
    before {visit signup_path}
    it { should have_selector('h1', text: 'Sign up') }
    it { should have_selector('title', text: full_title('Sign up'))}
end

describe "signup" do
    before { visit signup_path}
    let(:submit) { "Create my account"}

    describe "with invalid information" do
        it "should not create a user" do
            expect { click_button submit }.not_to change(User, :count)
        end

    describe "after submission" do
      before { click_button submit }

      it { should have_selector('title', text: 'Sign up') }
      it { should have_content('error') }
    end
end

describe "with valid information" do
        before do
            fill_in "Name", with: "Exmaple User"
            fill_in "Email", with: "user@example.com"
            fill_in "Password", with: "foobar"
            fill_in "Password confirmation", with: "foobar"
    end

    it "should create a user" do
        expect { click_button submit }.to change(User, :count).by(1)
    end

    describe "after saving the user" do
      before { click_button submit }
      let(:user) { User.find_by_email('user@example.com') }

      it { should have_selector('title', text: user.name) }
      it { should have_selector('div.alert.alert-success', text: 'Welcome') }
      it { should have_link('Sign out') }
    end
    end
end


describe "edit" do
let(:user) { FactoryGirl.create(:user) }
before do
  visit signin_path
  sign_in user
  visit edit_user_path(user)
end


describe "page" do
  it { should have_selector('h1', text: "Update your profile") }
  it { should have_selector('title', text: "Edit user") }
  it { should have_link('change', href: 'http://gravatar.com/emails')}
end

describe "with invalid information" do
  before { click_button "Save changes" }

  it { should have_content('error') }
end

describe "with valid information" do
    let(:new_name) { "New Name"}
    let(:new_email) {"new@example.com"}
    before do
      fill_in "Name", with: new_name
      fill_in "Email", with: new_email
      fill_in "Password", with: user.password
      fill_in "Confirm Password", with: user.password
      click_button "Save changes"
    end

it { should have_selector('title', text: new_name) }
it { should have_selector('div.alert.alert-success') }
it { should have_link('Sign out', href: signout_path) }
specify { user.reload.name.should == new_name }
specify { user.reload.email.should == new_email }
end
end
end

ユーティリティからのsign_in(user)

def sign_in(user)
fill_in "Email", with: user.email
fill_in "Password", with: user.password
click_button "Sign in"
# Sign in when not using Capybara as well.
cookies[:remember_token] = user.remember_token

終わり

セッションヘルパー

module SessionsHelper

def sign_in(user)
    cookies.permanent[:remember_token] = user.remember_token
    self.current_user = user
end

def signed_in?
    !current_user.nil?
end

def current_user=(user)
    @current_user = user
end

def current_user
    @current_user ||= User.find_by_remember_token(cookies[:remember_token])
end

def current_user?(user)
    user == current_user
end

def sign_out
    self.current_user = nil
    cookies.delete(:remember_token)
end

def redirect_back_or(default)
    redirect_to(session[:return_to] || default)
    session.delete(:return_to)
end

def store_location
    session[:return_to] = request.fullpath
end
end     

ユーザーコントローラー

    class UsersController < ApplicationController
    before_filter :signed_in_user, only: [:edit, :update]
    before_filter :correct_user, only: [:edit, :update]

    def show
@user = User.find(params[:id])
    end

    def new
@user = User.new
    end

    def create
@user = User.new(params[:user])
if @user.save
    sign_in @user
    flash[:success] = "Welcome to the Sample App!"
    redirect_to @user
else
    render 'new'
end
   end

def edit
   @user = User.find(params[:id])
   end

def update
     @user = User.find(params[:id])
   if @user.update_attributes(params[:user])
     sign_in @user
     flash[:success] = "Profile updated"
     redirect_to @user
   else
     render 'edit'
   end
  end

private
 def signed_in_user
    unless signed_in?
    store_location
    redirect_to signin_path, notice: "Please sign in." 
  end
end

def correct_user
  @user=User.find(params[:id])
  redirect_to(root_path) unless current_user?(@user)
end

end

views / layouts / _header.html.erb

<header class="navbar navbar-fixed-top">
    <div class="navbar-inner">
        <div class="container">
            <%= link_to "sample app", root_path, id: "logo" %>
            <nav>
                <ul class="nav pull-right">
                    <li><%= link_to "Home",  root_path %></li>
                    <li><%= link_to "Help",  help_path %></li>
                    <% if signed_in? %>
                        <li><%= link_to "Users", "#" %></li>
                        <li id="fat-menu" class="dropdown">
                            <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                                Account <b class="caret"></b>
                            </a>
                            <ul class="dropdown-menu">
                                <li><%= link_to "Profile", current_user %></li>
                                <li><%= link_to "Settings", edit_user_path(current_user) %></li>    
                                <li class="divider"></li>
                                <li>
                                    <%= link_to "Sign out", signout_path, method: "delete" %>
                                </li>
                            </ul>
                        </li>
                    <% else %>
                        <li><%= link_to "Sign in", signin_path %></li>
                    <% end %>
                </ul>
            </nav>
        </div>
    </div>

この問題が発生した場合は、application_controllerにこれがないことを確認してください。これは私にあらゆる種類の悲しみを引き起こした非常に小さなエラーでした。繰り返しますが、このコードは使用しないでください…。

class ApplicationController < ActionController::Base
 protect_from_forgery
 include SessionsHelper

 private
def current_user
    @current_user ||= User.find(session[:user_id]) if session[:user_id]
end

終わり

4

1 に答える 1

1

カピバラはメールフィールドを見つけられません。

サインインフォームに記入する前に、それを実行する必要があります。このように機能を変更します:

def sign_in(user)
  visit signin_path
  fill_in "Email", with: user.email
  fill_in "Password", with: user.password
  click_button "Sign in"
  # Sign in when not using Capybara as well.
  cookies[:remember_token] = user.remember_token
end

私はあなたのフォームが正しく形成されていると思います。visit signin_pathの後に、puts page.htmlhtmlを表示し、save_and_open_pagelaunchyがインストールされているかどうかを追加できます。

于 2012-08-08T17:31:54.893 に答える