communities_test.rb
13.2 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
require_relative 'test_helper'
class CommunitiesTest < ActiveSupport::TestCase
def setup
Community.delete_all
create_and_activate_user
end
should 'list only communities to logged user' do
login_api
community = fast_create(Community, :environment_id => environment.id)
enterprise = fast_create(Enterprise, :environment_id => environment.id) # should not list this enterprise
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_not_includes json['communities'].map {|c| c['id']}, enterprise.id
assert_includes json['communities'].map {|c| c['id']}, community.id
end
should 'list all communities to logged user' do
login_api
community1 = fast_create(Community, :environment_id => environment.id, :public_profile => true)
community2 = fast_create(Community, :environment_id => environment.id)
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community1.id, community2.id], json['communities'].map {|c| c['id']}
end
should 'not list invisible communities to logged user' do
login_api
community1 = fast_create(Community, :environment_id => environment.id)
fast_create(Community, :environment_id => environment.id, :visible => false)
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equal [community1.id], json['communities'].map {|c| c['id']}
end
should 'list private communities to logged user' do
login_api
community1 = fast_create(Community, :environment_id => environment.id)
community2 = fast_create(Community, :environment_id => environment.id, :public_profile => false)
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community1.id, community2.id], json['communities'].map {|c| c['id']}
end
should 'list private communities to logged members' do
login_api
community1 = fast_create(Community, :environment_id => environment.id)
community2 = fast_create(Community, :environment_id => environment.id, :public_profile => false)
community2.add_member(person)
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community1.id, community2.id], json['communities'].map {|c| c['id']}
end
should 'create a community with logged user' do
login_api
params[:community] = {:name => 'some'}
post "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equal 'some', json['community']['name']
end
should 'return 400 status for invalid community creation to logged user ' do
login_api
post "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equal 400, last_response.status
end
should 'get community to logged user' do
login_api
community = fast_create(Community, :environment_id => environment.id)
get "/api/v1/communities/#{community.id}?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equal community.id, json['community']['id']
end
should 'not list invisible community to logged users' do
login_api
community = fast_create(Community, :environment_id => environment.id, :visible => false)
get "/api/v1/communities/#{community.id}?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_nil json["community"]
end
should 'not get private community content to non member' do
login_api
community = fast_create(Community, :environment_id => environment.id, :public_profile => false)
get "/api/v1/communities/#{community.id}?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equal community.id, json['community']['id']
assert_nil json['community']['members']
end
should 'get private community to logged member' do
login_api
community = fast_create(Community, :environment_id => environment.id, :public_profile => false, :visible => true)
community.add_member(person)
get "/api/v1/communities/#{community.id}?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equal community.id, json['community']['id']
assert_not_nil json['community']['members']
end
should 'list person communities to logged user' do
login_api
community = fast_create(Community, :environment_id => environment.id)
fast_create(Community, :environment_id => environment.id)
community.add_member(person)
get "/api/v1/people/#{person.id}/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community.id], json['communities'].map {|c| c['id']}
end
should 'not list person invisible communities to logged user' do
login_api
community1 = fast_create(Community, :environment_id => environment.id)
community2 = fast_create(Community, :environment_id => environment.id, :visible => false)
community1.add_member(person)
community2.add_member(person)
get "/api/v1/people/#{person.id}/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community1.id], json['communities'].map {|c| c['id']}
end
should 'logged user list communities with pagination' do
login_api
community1 = fast_create(Community, :public_profile => true, :created_at => 1.day.ago)
community2 = fast_create(Community, :created_at => 2.days.ago)
params[:page] = 2
params[:per_page] = 1
get "/api/v1/communities?#{params.to_query}"
json_page_two = JSON.parse(last_response.body)
params[:page] = 1
params[:per_page] = 1
get "/api/v1/communities?#{params.to_query}"
json_page_one = JSON.parse(last_response.body)
assert_includes json_page_one["communities"].map { |a| a["id"] }, community1.id
assert_not_includes json_page_one["communities"].map { |a| a["id"] }, community2.id
assert_includes json_page_two["communities"].map { |a| a["id"] }, community2.id
assert_not_includes json_page_two["communities"].map { |a| a["id"] }, community1.id
end
should 'list communities with timestamp to logged user' do
login_api
community1 = fast_create(Community, :public_profile => true)
community2 = fast_create(Community)
community1.updated_at = Time.now + 3.hours
community1.save!
params[:timestamp] = Time.now + 1.hours
get "/api/v1/communities/?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_includes json["communities"].map { |a| a["id"] }, community1.id
assert_not_includes json["communities"].map { |a| a["id"] }, community2.id
end
should 'anonymous list only communities' do
community = fast_create(Community, :environment_id => environment.id)
enterprise = fast_create(Enterprise, :environment_id => environment.id) # should not list this enterprise
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_not_includes json['communities'].map {|c| c['id']}, enterprise.id
assert_includes json['communities'].map {|c| c['id']}, community.id
end
should 'anonymous list all communities' do
community1 = fast_create(Community, :environment_id => environment.id, :public_profile => true)
community2 = fast_create(Community, :environment_id => environment.id)
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community1.id, community2.id], json['communities'].map {|c| c['id']}
end
should 'not list invisible communities to anonymous' do
community1 = fast_create(Community, :environment_id => environment.id)
fast_create(Community, :environment_id => environment.id, :visible => false)
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equal [community1.id], json['communities'].map {|c| c['id']}
end
should 'list all visible communities except secret ones to anonymous' do
community = fast_create(Community, :environment_id => environment.id)
private_community = fast_create(Community, :environment_id => environment.id, :public_profile => false)
secret_community = fast_create(Community, :environment_id => environment.id, :public_profile => false, :secret => true)
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community.id, private_community.id], json['communities'].map {|c| c['id']}
end
should 'list private communities to anonymous' do
community1 = fast_create(Community, :environment_id => environment.id)
community2 = fast_create(Community, :environment_id => environment.id, :public_profile => false)
get "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community1.id, community2.id], json['communities'].map {|c| c['id']}
end
should 'not create a community as an anonymous user' do
params[:community] = {:name => 'some'}
post "/api/v1/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equal 401, last_response.status
end
should 'get community for anonymous' do
community = fast_create(Community, :environment_id => environment.id)
get "/api/v1/communities/#{community.id}"
json = JSON.parse(last_response.body)
assert_equal community.id, json['community']['id']
end
should 'not get invisible community to anonymous user' do
community = fast_create(Community, :environment_id => environment.id, :visible => false)
get "/api/v1/communities/#{community.id}"
json = JSON.parse(last_response.body)
assert json['community'].blank?
end
should 'get private community to anonymous user' do
community = fast_create(Community, :environment_id => environment.id, :public_profile => false)
get "/api/v1/communities/#{community.id}"
json = JSON.parse(last_response.body)
assert_equal community.id, json['community']['id']
assert_nil json['community']['members']
end
should 'list public person communities to anonymous' do
community = fast_create(Community, :environment_id => environment.id)
fast_create(Community, :environment_id => environment.id)
community.add_member(person)
get "/api/v1/people/#{person.id}/communities?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_equivalent [community.id], json['communities'].map {|c| c['id']}
end
should 'not list private person communities to anonymous' do
community = fast_create(Community, :environment_id => environment.id)
fast_create(Community, :environment_id => environment.id)
person.public_profile = false
person.save
community.add_member(person)
get "/api/v1/people/#{person.id}/communities?#{params.to_query}"
assert_equal 403, last_response.status
end
should 'list communities with pagination to anonymous' do
community1 = fast_create(Community, :public_profile => true, :created_at => 1.day.ago)
community2 = fast_create(Community, :created_at => 2.days.ago)
params[:page] = 2
params[:per_page] = 1
get "/api/v1/communities?#{params.to_query}"
json_page_two = JSON.parse(last_response.body)
params[:page] = 1
params[:per_page] = 1
get "/api/v1/communities?#{params.to_query}"
json_page_one = JSON.parse(last_response.body)
assert_includes json_page_one["communities"].map { |a| a["id"] }, community1.id
assert_not_includes json_page_one["communities"].map { |a| a["id"] }, community2.id
assert_includes json_page_two["communities"].map { |a| a["id"] }, community2.id
assert_not_includes json_page_two["communities"].map { |a| a["id"] }, community1.id
end
should 'list communities with timestamp to anonymous ' do
community1 = fast_create(Community, :public_profile => true)
community2 = fast_create(Community)
community1.updated_at = Time.now + 3.hours
community1.save!
params[:timestamp] = Time.now + 1.hours
get "/api/v1/communities/?#{params.to_query}"
json = JSON.parse(last_response.body)
assert_includes json["communities"].map { |a| a["id"] }, community1.id
assert_not_includes json["communities"].map { |a| a["id"] }, community2.id
end
should 'display public custom fields to anonymous' do
CustomField.create!(:name => "Rating", :format => "string", :customized_type => "Community", :active => true, :environment => Environment.default)
some_community = fast_create(Community)
some_community.custom_values = { "Rating" => { "value" => "Five stars", "public" => "true"} }
some_community.save!
get "/api/v1/communities/#{some_community.id}?#{params.to_query}"
json = JSON.parse(last_response.body)
assert json['community']['additional_data'].has_key?('Rating')
assert_equal "Five stars", json['community']['additional_data']['Rating']
end
should 'not display private custom fields to anonymous' do
CustomField.create!(:name => "Rating", :format => "string", :customized_type => "Community", :active => true, :environment => Environment.default)
some_community = fast_create(Community)
some_community.custom_values = { "Rating" => { "value" => "Five stars", "public" => "false"} }
some_community.save!
get "/api/v1/communities/#{some_community.id}?#{params.to_query}"
json = JSON.parse(last_response.body)
refute json['community']['additional_data'].has_key?('Rating')
end
end