memberships_controller_test.rb
5.09 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
require File.dirname(__FILE__) + '/../test_helper'
require 'memberships_controller'
# Re-raise errors caught by the controller.
class MembershipsController; def rescue_action(e) raise e end; end
class MembershipsControllerTest < Test::Unit::TestCase
include ApplicationHelper
def setup
@controller = MembershipsController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@profile = create_user('testuser').person
login_as('testuser')
end
attr_reader :profile
def test_local_files_reference
assert_local_files_reference :get, :index, :profile => profile.identifier
end
def test_valid_xhtml
assert_valid_xhtml
end
should 'list current memberships' do
get :index, :profile => profile.identifier
assert_kind_of Array, assigns(:memberships)
end
should 'present confirmation before joining a profile' do
community = Community.create!(:name => 'my test community')
get :join, :profile => profile.identifier, :id => community.id
assert_response :success
assert_template 'join'
end
should 'actually join profile' do
community = Community.create!(:name => 'my test community')
post :join, :profile => profile.identifier, :id => community.id, :confirmation => '1'
assert_response :redirect
assert_redirected_to community.url
profile.reload
assert profile.memberships.include?(community), 'profile should be actually added to the community'
end
should 'present new community form' do
get :new_community, :profile => profile.identifier
assert_response :success
assert_template 'new_community'
end
should 'be able to create a new community' do
assert_difference Community, :count do
post :new_community, :profile => profile.identifier, :community => { :name => 'My shiny new community', :description => 'This is a community devoted to anything interesting we find in the internet '}
assert_response :redirect
assert_redirected_to :action => 'index'
assert Community.find_by_identifier('my-shiny-new-community').members.include?(profile), "Creator user should be added as member of the community just created"
end
end
should 'link to new community creation in index' do
get :index, :profile => profile.identifier
assert_tag :tag => 'a', :attributes => { :href => "/myprofile/#{profile.identifier}/memberships/new_community" }
end
should 'filter html from name' do
login_as(profile.identifier)
post :new_community, :profile => profile.identifier, :community => { :name => '<b>new</b> community' }
assert_sanitized assigns(:community).name
end
should 'filter html from description' do
login_as(profile.identifier)
post :new_community, :profile => profile.identifier, :community => { :name => 'new community', :description => '<b>new</b> community' }
assert_sanitized assigns(:community).description
end
should 'show number of members on list' do
community = Community.create!(:name => 'my test community')
community.add_member(profile)
get :index, :profile => profile.identifier
assert_tag :tag => 'td', :content => /Members: 1/
end
should 'show created at on list' do
community = Community.create!(:name => 'my test community')
community.add_member(profile)
get :index, :profile => profile.identifier
assert_tag :tag => 'td', :content => /Created at: #{show_date(community.created_at)}/
end
should 'show description on list' do
community = Community.create!(:name => 'my test community', :description => 'description test')
community.add_member(profile)
get :index, :profile => profile.identifier
assert_tag :tag => 'td', :content => /Description: description test/
end
should 'not show description to enterprises on list' do
enterprise = Enterprise.create!(:identifier => 'enterprise-test', :name => 'my test enterprise')
enterprise.add_member(profile)
get :index, :profile => profile.identifier
assert_no_tag :tag => 'td', :content => /Description:/
end
should 'show link to leave from community' do
community = Community.create!(:name => 'my test community', :description => 'description test')
community.add_member(profile)
get :index, :profile => profile.identifier
assert_tag :tag => 'a', :attributes => { :href => "/myprofile/#{profile.identifier}/memberships/leave/#{community.id}" }, :content => 'Leave'
end
should 'present confirmation before leaving a profile' do
community = Community.create!(:name => 'my test community')
community.add_member(profile)
get :leave, :profile => profile.identifier, :id => community.id
assert_response :success
assert_template 'leave'
end
should 'actually leave profile' do
community = Community.create!(:name => 'my test community')
community.add_member(profile)
assert_includes profile.memberships, community
post :leave, :profile => profile.identifier, :id => community.id, :confirmation => '1'
assert_response :redirect
assert_redirected_to :action => 'index'
profile.reload
assert_not_includes profile.memberships, community
end
end