blob: c7d1c013f99c9893fb1e27ed463bdaf823cecec4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
require File.expand_path('../../test_helper', __FILE__)
class AuthSourcesControllerTest < ActionController::TestCase
def setup
@request.session[:user_id] = 1
end
context "get :index" do
setup do
get :index
end
should_assign_to :auth_sources
should_assign_to :auth_source_pages
should_respond_with :success
should_render_template :index
end
context "get :new" do
setup do
get :new
end
should_assign_to :auth_source
should_respond_with :success
should_render_template :new
should "initilize a new AuthSource" do
assert_equal AuthSource, assigns(:auth_source).class
assert assigns(:auth_source).new_record?
end
end
context "post :create" do
setup do
post :create, :auth_source => {:name => 'Test'}
end
should_respond_with :redirect
should_redirect_to("index") {{:action => 'index'}}
should_set_the_flash_to /success/i
end
context "get :edit" do
setup do
@auth_source = AuthSource.generate!(:name => 'TestEdit')
get :edit, :id => @auth_source.id
end
should_assign_to(:auth_source) {@auth_source}
should_respond_with :success
should_render_template :edit
end
context "post :update" do
setup do
@auth_source = AuthSource.generate!(:name => 'TestEdit')
post :update, :id => @auth_source.id, :auth_source => {:name => 'TestUpdate'}
end
should_respond_with :redirect
should_redirect_to("index") {{:action => 'index'}}
should_set_the_flash_to /update/i
end
context "post :destroy" do
setup do
@auth_source = AuthSource.generate!(:name => 'TestEdit')
end
context "without users" do
setup do
post :destroy, :id => @auth_source.id
end
should_respond_with :redirect
should_redirect_to("index") {{:action => 'index'}}
should_set_the_flash_to /deletion/i
end
context "with users" do
setup do
User.generate!(:auth_source => @auth_source)
post :destroy, :id => @auth_source.id
end
should_respond_with :redirect
should "not destroy the AuthSource" do
assert AuthSource.find(@auth_source.id)
end
end
end
end
|