whew!!!, last chapter is a long one!
now, we are going to implement sign out.
1. no wonders, we will start from TDD.
describe "DELETE 'destroy'" do it "should sign a user out" do test_sign_in(Factory(:user)) delete :destroy controller.should_not be_signed_in response.should redirect_to(root_path) end end
now we define the test_sign_in method in the spec_helper.
RSpec.configure do |config| def test_sign_in(user) controller.sign_in(user) end end
2. the destroy function in controller:
def destroy sign_out redirect_to root_path end
3. the sign_out fuction in sessions_helper.rb
def sign_out cookies.delete(:remember_token)
self.current_user = nil end
4. sign in upon sign up.
let's first write a test to test that a signup user is auto signed in.
describe Usercontroller do describe "POST 'create'" do it "should sign the user in" do post :create, :user => @attr controller.should be_signed_in end end end
then we just need to add a line of code to the User models create method:
if @user.save sign_in @user flash[:success] = "Welcom....." redirect_to @user else ..... end
5. next, we will change the layout links, so that after user signed in, the link text change to "sign out"
although what we want to change is views, we can still strat from TDD of integration test.
luckily, we already have Layout links integration test.
describe "Layout links" do describe "when not signed in" do it "should have a sign in link" do visit root_path response.should have_selector("a", :href => signin_path, :content => "Sign in") end end describe "when signed in" do before(:each) do @user = Factory(:user) visit signin_path fill_in :email, :with => @user.email ..... click_button end it "should have a sign out link" do visit root_path reponse.should have_selector("a", :href => signout_path, :content => "Sign out") end it "should have a profile link" do visit root_path response.should have_selector("a", :href => user_path(@user), :content => "Profile") end end
now it is time the change the layout header, to change the link according to signed in or not.
<% if signed_in? %> <li><%= link_to "Sign out", signout_path, :method => :delete %></li> <%else%> <li><%= link_to "Sign in", signin_path%></li> <%end%>
for the view, need to add the profile link:
link_to "Profile", current_user
you can see that rails allow to specify a object to stand for the url
6. now we can add a integration test for both sign in and sign out.
I'll put this test in to users_spec.rb integration test.
describe "sign in/out" do describe "failure" do it "should not sign a user in" do visit signin_path fill_in :email, :with =>"" fill_in :password, :with => "" click_button response.should have_selector("div.flash.error", :content => "Invalid") end end describe "success" do it "should sign user in and out" do user = Factory(:user) visit signin_path fill_in :email, :wtih => user.email fill_in :password, :with => user.password click_button controller.should be_signed_in click_link "Sign out" controller.should_not be_signed_in end end end
please take special attention to the code:
click_link "Sign out"
by this singly line of code, it actuall tested the route, the link text, the url, and the changing of the layout link,
I like this test method very much!!
click_link "Sign out"
发表评论
-
12.3.3 scaling issue of the status feed
2011-10-30 17:54 851the problem of the implementati ... -
12.3 the status feed
2011-10-30 15:34 8821. we need to get all the micro ... -
12.2 a working follow button with Ajax
2011-10-29 18:10 9291. in the last chapter, in the ... -
12.2 a web interface for following and followers.
2011-10-28 22:14 9021.before we do the UI, we need ... -
12. following user, 12.1 relationship model
2011-10-18 14:29 7791. we need to use a relationshi ... -
11.3 manipulating microposts.
2011-10-17 15:31 9201. since all micropost actions ... -
11.2 show microposts.
2011-10-17 12:01 7261. add test to test the new use ... -
11.1 user micropost -- a micropost model.
2011-10-17 10:43 11321. we will first generate a mic ... -
10.4 destroying users.
2011-10-16 15:47 771in this chapter, we will add de ... -
10.3 showing users list
2011-10-15 20:41 791in this chapter, we will do use ... -
10.2 protect pages.
2011-10-15 15:11 688again, we will start from TD ... -
10.1 updating users.
2011-10-14 18:30 7301. git checkout -b updating-use ... -
9.3 sign in success.
2011-10-12 15:39 7771. we will first finish the cre ... -
9.1 about flash.now[:error] vs flash[:error]
2011-10-12 15:37 754There’s a subtle difference ... -
9.2 sign in failure
2011-10-12 12:19 679start from TDD!!! 1. requir ... -
9.1 sessions
2011-10-12 10:00 660a session is a semi-permanent c ... -
what test framework should you use?
2011-10-11 16:56 0for integration test, i have no ... -
what test framework should you use?
2011-10-11 16:56 0<p>for integration test, ... -
8.4 rspec integration tests
2011-10-11 16:53 746in integration test, you can te ... -
8.3 sign up success
2011-10-11 14:39 804Chapter 8.3 this part, we will ...
相关推荐
Addition and subtraction in two's complement involve similar logic as in unsigned arithmetic, but the carry-in and carry-out rules change due to the presence of a sign bit. The addition of two signed ...
9.4 Interrupt Descriptor Table 9.5 IDT Descriptors 9.6 Interrupt Tasks and Interrupt Procedures 9.7 Error Code 9.8 Exception Conditions 9.9 Exception Summary 9.10 Error Code Summary Chapter 10 ...
Logical Operations on Bits 1.6 - Logical Operations on Binary Numbers and Bit Strings 1.7 - Signed and Unsigned Numbers 1.8 - Sign and Zero Extension 1.9 - Shifts and Rotates 1.10 - ...
§9.4 DROP USER 命令 205 §9.5 GRANT 命令与REVOKE 命令 206 §9.5.1 GRANT 命令 206 §9.5.2 REVOKE 命令 206 §9.6 权限和角色 207 §9.6.1 建立角色 207 §9.6.2 给角色授权 208 §9.6.3 授权角色给用户 209 §...
Contents Contents ii List of Tables x List of Figures xiv 1 Scope 1 2 Normative references 2 3 Terms and definitions 3 4 General principles 7 4.1 Implementation compliance . ....4.2 Structure of this ...
Table of Contents Section 1 Introduction to SystemVerilog ...................................................................................................... 1 Section 2 Literal Values................