cirandas.net

ref: master

test/api/communities_test.rb


  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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
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.map {|c| c['id']}, enterprise.id
    assert_includes json.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.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.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.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.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['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 422, 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['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}"
    assert_equal Api::Status::NOT_FOUND, last_response.status
  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['id']
    assert_nil json['admins']
  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)

    params[:optional_fields] = ['members']
    get "/api/v1/communities/#{community.id}?#{params.to_query}"
    json = JSON.parse(last_response.body)
    assert_equal community.id, json['id']
    assert_not_nil json['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.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.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.map { |a| a["id"] }, community1.id
    assert_not_includes json_page_one.map { |a| a["id"] }, community2.id

    assert_includes json_page_two.map { |a| a["id"] }, community2.id
    assert_not_includes json_page_two.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.in_time_zone + 3.hours
    community1.save!

    params[:timestamp] = Time.now.in_time_zone + 1.hours
    get "/api/v1/communities/?#{params.to_query}"
    json = JSON.parse(last_response.body)

    assert_includes json.map { |a| a["id"] }, community1.id
    assert_not_includes json.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.map {|c| c['id']}, enterprise.id
    assert_includes json.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.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.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.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.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['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}"
    assert_equal Api::Status::NOT_FOUND, last_response.status
  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['id']
    assert_nil json['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.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.map { |a| a["id"] }, community1.id
    assert_not_includes json_page_one.map { |a| a["id"] }, community2.id

    assert_includes json_page_two.map { |a| a["id"] }, community2.id
    assert_not_includes json_page_two.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.in_time_zone + 3.hours
    community1.save!

    params[:timestamp] = Time.now.in_time_zone + 1.hours
    get "/api/v1/communities/?#{params.to_query}"
    json = JSON.parse(last_response.body)

    assert_includes json.map { |a| a["id"] }, community1.id
    assert_not_includes json.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['additional_data'].has_key?('Rating')
    assert_equal "Five stars", json['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['additional_data'].has_key?('Rating')
  end

  should 'not display members value by default' 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['id']
    assert_nil json['members']
  end

  should 'display members values if optional field parameter is passed' do
    community = fast_create(Community, :environment_id => environment.id)

    get "/api/v1/communities/#{community.id}?#{params.merge({:optional_fields => [:members]}).to_query}"
    json = JSON.parse(last_response.body)
    assert_equal community.id, json['id']
    assert_not_nil json['members']
  end

  should 'display members values if optional_fields has members value as string in array' do
    community = fast_create(Community, :environment_id => environment.id)

    get "/api/v1/communities/#{community.id}?#{params.merge({:optional_fields => ['members']}).to_query}"
    json = JSON.parse(last_response.body)
    assert_equal community.id, json['id']
    assert_not_nil json['members']
  end

  should 'display members values if optional_fields has members value in array' do
    community = fast_create(Community, :environment_id => environment.id)

    get "/api/v1/communities/#{community.id}?#{params.merge({:optional_fields => ['members', 'another']}).to_query}"
    json = JSON.parse(last_response.body)
    assert_equal community.id, json['id']
    assert_not_nil json['members']
  end

  should 'display members values if optional_fields has members value as string' do
    community = fast_create(Community, :environment_id => environment.id)

    get "/api/v1/communities/#{community.id}?#{params.merge({:optional_fields => 'members'}).to_query}"
    json = JSON.parse(last_response.body)
    assert_equal community.id, json['id']
    assert_not_nil json['members']
  end

  should 'search for communities' do
    community1 = fast_create(Community)
    community2 = fast_create(Community, name: 'Rails Community')
    params[:search] = 'rails'
    get "/api/v1/communities?#{params.to_query}"
    json = JSON.parse(last_response.body)
    assert_equal [community2.id], json.map {|c| c['id']}
  end

  should 'send inviation for comunity' do
    login_api
    community = fast_create(Community)
    community.add_admin(person)
    post "/api/v1/communities/#{community.id}/invite?#{params.to_query}"
    json = JSON.parse(last_response.body)
    assert_equal Api::Status::CREATED, last_response.status
  end

  should 'not send inviation for unexisting community ' do
    login_api
    community = fast_create(Community)
    post "/api/v1/communities/100/invite?#{params.to_query}"
    json = JSON.parse(last_response.body)
    assert_equal Api::Status::NOT_FOUND, last_response.status
  end

  should 'not send inviation for comunity if user has no permission' do
    login_api
    community = fast_create(Community)
    post "/api/v1/communities/#{community.id}/invite?#{params.to_query}"
    json = JSON.parse(last_response.body)
    assert_equal Api::Status::FORBIDDEN, last_response.status
  end

  should 'not send invitation unlogged' do
    community = fast_create(Community)
    post "/api/v1/communities/#{community.id}/invite?#{params.to_query}"
    assert_equal Api::Status::UNAUTHORIZED, last_response.status
  end

  should 'the invitation response return success true if the inivitation was sent' do
    login_api
    community = fast_create(Community)
    community.add_admin(person)
    post "/api/v1/communities/#{community.id}/invite?#{params.to_query}"
    json = JSON.parse(last_response.body)
    assert json['success']
  end

  should "the inviation response return the code #{Api::Status::INVITATION_SENT_TO_BE_PROCESSED}" do
    login_api
    community = fast_create(Community)
    community.add_admin(person)
    post "/api/v1/communities/#{community.id}/invite?#{params.to_query}"
    json = JSON.parse(last_response.body)
    assert_equal json['code'], Api::Status::INVITATION_SENT_TO_BE_PROCESSED
  end

  should "the inviation response have some message" do
    login_api
    community = fast_create(Community)
    community.add_admin(person)
    post "/api/v1/communities/#{community.id}/invite?#{params.to_query}"
    json = JSON.parse(last_response.body)
    assert_not_nil json['message']
  end

end