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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe AdminUserController, "when administering users" do
render_views
it "shows the index page" do
get :index
end
it "searches for 'bob'" do
get :index, :query => "bob"
assigns[:admin_users].should == [ users(:bob_smith_user) ]
end
it "shows a user" do
get :show, :id => users(:bob_smith_user)
end
it "logs in as another user" do
get :login_as, :id => users(:bob_smith_user).id
post_redirect = PostRedirect.get_last_post_redirect
response.should redirect_to(:controller => 'user', :action => 'confirm', :email_token => post_redirect.email_token)
end
# See also "allows an admin to log in as another user" in spec/integration/admin_spec.rb
end
describe AdminUserController, "when updating a user" do
it "saves a change to 'can_make_batch_requests'" do
user = FactoryGirl.create(:user)
user.can_make_batch_requests?.should be_false
post :update, {:id => user.id, :admin_user => {:can_make_batch_requests => '1',
:name => user.name,
:email => user.email,
:admin_level => user.admin_level,
:ban_text => user.ban_text,
:about_me => user.about_me,
:no_limit => user.no_limit}}
flash[:notice].should == 'User successfully updated.'
response.should be_redirect
user = User.find(user.id)
user.can_make_batch_requests?.should be_true
end
end
describe AdminUserController do
describe :modify_comment_visibility do
before(:each) do
@user = FactoryGirl.create(:user)
request.env["HTTP_REFERER"] = admin_user_path(@user)
end
it 'redirects to the page the admin was previously on' do
comment = FactoryGirl.create(:visible_comment, :user => @user)
post :modify_comment_visibility, { :id => @user.id,
:comment_ids => comment.id,
:hide_selected => 'hidden' }
response.should redirect_to(admin_user_path(@user))
end
it 'sets the given comments visibility to hidden' do
comments = FactoryGirl.create_list(:visible_comment, 3, :user => @user)
comment_ids = comments.map(&:id)
post :modify_comment_visibility, { :id => @user.id,
:comment_ids => comment_ids,
:hide_selected => 'hidden' }
Comment.find(comment_ids).each { |comment| comment.should_not be_visible }
end
it 'sets the given comments visibility to visible' do
comments = FactoryGirl.create_list(:hidden_comment, 3, :user => @user)
comment_ids = comments.map(&:id)
post :modify_comment_visibility, { :id => @user.id,
:comment_ids => comment_ids,
:unhide_selected => 'visible' }
Comment.find(comment_ids).each { |comment| comment.should be_visible }
end
it 'only modifes the given list of comments' do
unaffected_comment = FactoryGirl.create(:hidden_comment, :user => @user)
affected_comment = FactoryGirl.create(:hidden_comment, :user => @user)
post :modify_comment_visibility, { :id => @user.id,
:comment_ids => affected_comment.id,
:unhide_selected => 'visible' }
Comment.find(unaffected_comment).should_not be_visible
Comment.find(affected_comment).should be_visible
end
it 'preserves the visibility if a comment is already of the requested visibility' do
hidden_comment = FactoryGirl.create(:hidden_comment, :user => @user)
visible_comment = FactoryGirl.create(:visible_comment, :user => @user)
comment_ids = [hidden_comment.id, visible_comment.id]
post :modify_comment_visibility, { :id => @user.id,
:comment_ids => comment_ids,
:unhide_selected => 'visible' }
Comment.find(comment_ids).each { |c| c.should be_visible }
end
end
end
|