2013-05-12 32 views
0

尽管我编写了第一组错误消息,但仍然停留在编辑用户章9.1.1测试中 - 感谢你们的帮助。 在我所在的同一地点出现了一个新的测试失败错误,我被鼓励提出一个新问题。我会把我的更新代码放在这里。Rspec测试失败Hartl教程Chap。 9.1 - 编辑用户标题失败

我正在运行此测试:$ bundle exec rspec spec/requests/user_pages_spec.rb -e“编辑页面” 我只是没有看到错误来自哪里,经过大量搜索。 我更新了2.0.0水豚也

Failures: 

    1) User pages signup edit page 
    Failure/Error: it { should have_selector('title', text: "Edit user") } 
    Capybara::ExpectationNotMet: 
     expected to find css "title" with text "Edit user" but there were no matches. Also found "",   which matched the selector but not all filters. 
    # ./spec/requests/user_pages_spec.rb:60:in `block (5 levels) in <top (required)>' 

Finished in 0.56475 seconds 
3 examples, 1 failure 

这里的用户页面规格:

require 'spec_helper' 

describe "User pages" do 

    subject { page } 

    describe "profile page" do 
    let(:user) { FactoryGirl.create(:user) } 
    before { visit user_path(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 } 

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


    describe "with valid information" do 
     before do 
     fill_in "Name",   with: "Example User" 
     fill_in "Email",  with: "[email protected]" 
     fill_in "Password",  with: "foobar" 
     fill_in "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 } 
     it { should have_link('Sign out') } 
    end 
     end 
    end 

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

     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 
    end 
end 
end 

这里是我修改用户控制器:

class UsersController < ApplicationController 

    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 Your App!" 
     redirect_to @user 
    else 
     render 'new'  
     end 
    end 

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

还附上了edit.html。 erb

<% provide(:title, "Edit user") %> 
<h1>Update your profile</h1> 

<div class="row"> 
    <div class="span6 offset3"> 
    <%= form_for(@user) do |f| %> 
    <%= render 'shared/error_messages' %> 

     <%= f.label :name %> 
     <%= f.text_field :name %> 

     <%= f.label :email %> 
     <%= f.text_field :email %> 

     <%= f.label :password %> 
     <%= f.password_field :password %> 

     <%= f.label :password_confirmation, "Confirmation" %> 
     <%= f.password_field :password_confirmation %> 

     <%= f.submit "Save changes", class: "btn btn-large btn-primary" %> 
    <% end %> 

    <% gravatar_for @user %> 
    <a href="http://gravatar.com/emails">change</a> 
    </div> 

这里是认证规格:

require 'spec_helper' 

describe "Authentication" 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: full_title('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 do 
      fill_in "Email", with: user.email 
      fill_in "Password", with: user.password 
      click_button "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)} 


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

和标题html.erb文件

<header class="navbar navbar-fixed-top navbar-inverse"> 
<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", users_path %></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> 
</header> 
+0

尝试'content_for:标题{ '修改用户'}' – 2013-05-12 03:11:40

+0

<%= content_for(:标题, “编辑用户”)%>此线没不会更改错误 – PatrickLightning 2013-05-12 03:12:31

+0

此外,标题标记未关闭,但可能是一个片段。标题标签在原文中为 – 2013-05-12 03:17:45

回答

0

看起来你可以有你的描述块嵌套错误。

“用户页面立即登记编辑页面”

这表明编辑页面嵌套在“注册”,它应该是在用户的页面。

这可以使历境是错误

require 'spec_helper' 

describe "User pages" do 

    subject { page } 

    describe "profile page" do 
    let(:user) { FactoryGirl.create(:user) } 
    before { visit user_path(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 } 

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


     describe "with valid information" do 
     before do 
      fill_in "Name", with: "Example User" 
      fill_in "Email", with: "[email protected]" 
      fill_in "Password", with: "foobar" 
      fill_in "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 } 
      it { should have_link('Sign out') } 
     end 
     end 
    end 
    end 


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

    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 
    end 
end 
+0

谢谢@muttonlamb我会研究它。你在哪里推荐学习Rails约定中的嵌套? – PatrickLightning 2013-05-12 04:18:56

+0

这与嵌套在rails中没有多大关系,它是关于如何在RSpec中设置测试上下文的。描述块的各个级别设置不同的上下文。我已经更新了答案以帮助 - 基本上我认为你的做,结束坏了 – muttonlamb 2013-05-12 04:34:22

+0

为了在用户页面下嵌套编辑页面,是否需要更改缩进或移动描述部分(最后16行左右)向上?是否需要以不同的顺序放置这些块?我试图在github上学习hartl的代码。 – PatrickLightning 2013-05-12 05:32:03

相关问题