comment_test.rb
15 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
require_relative "../test_helper"
class CommentTest < ActiveSupport::TestCase
def setup
@person = create_user('testuser').person
@author = create_user('testauthoruser').person
@article = create(TextileArticle, :profile_id => @person.id, :author_id => @author.id)
@environment = Environment.default
end
attr_accessor :person, :article, :environment, :author
should 'add merit points to author when create a new comment' do
create_point_rule_definition('comment_author')
create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
assert_equal 1, person.score_points.count
end
should 'subtract merit points from author when destroy a comment' do
create_point_rule_definition('comment_author')
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
assert_equal 1, person.score_points.count
comment.destroy
process_delayed_job_queue
assert_equal 2, person.score_points.count
assert_equal 0, person.points
end
should 'add merit badge to author when create 5 new comments' do
GamificationPlugin::Badge.create!(:owner => environment, :name => 'comment_author')
GamificationPlugin.gamification_set_rules(environment)
5.times { create(Comment, :source => article, :author_id => person.id) }
process_delayed_job_queue
assert_equal 'comment_author', person.badges.first.name
end
should 'add merit badge to source author when create 5 new comments' do
GamificationPlugin::Badge.create!(:owner => environment, :name => 'comment_received')
GamificationPlugin.gamification_set_rules(environment)
5.times { create(Comment, :source => article, :author_id => person.id) }
process_delayed_job_queue
assert_equal 'comment_received', author.badges.first.name
end
should 'add badge to author when users like his comment' do
GamificationPlugin::Badge.create!(:owner => environment, :name => 'positive_votes_received')
GamificationPlugin.gamification_set_rules(environment)
comment = create(Comment, :source => article, :author_id => person.id)
4.times { Vote.create!(:voter => fast_create(Person), :voteable => comment, :vote => 1) }
Vote.create!(:voter => fast_create(Person), :voteable => comment, :vote => -1)
process_delayed_job_queue
assert_equal [], person.badges
Vote.create!(:voter => fast_create(Person), :voteable => comment, :vote => 1)
process_delayed_job_queue
assert_equal 'positive_votes_received', person.reload.badges.first.name
end
should 'add badge to author when users dislike his comment' do
GamificationPlugin::Badge.create!(:owner => environment, :name => 'negative_votes_received')
GamificationPlugin.gamification_set_rules(environment)
comment = create(Comment, :source => article, :author_id => person.id)
4.times { Vote.create!(:voter => fast_create(Person), :voteable => comment, :vote => -1) }
Vote.create!(:voter => fast_create(Person), :voteable => comment, :vote => 1)
process_delayed_job_queue
assert_equal [], person.badges
Vote.create!(:voter => fast_create(Person), :voteable => comment, :vote => -1)
process_delayed_job_queue
assert_equal 'negative_votes_received', person.reload.badges.first.name
end
should 'add merit points to comment owner when an user like his comment' do
create_point_rule_definition('vote_voteable_author')
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).first
assert_difference 'comment.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => comment, :vote => 1)
process_delayed_job_queue
end
end
should 'subtract merit points to comment owner when an user unlike his comment' do
create_point_rule_definition('vote_voteable_author')
comment = create(Comment, :source => article, :author_id => author.id)
Vote.create!(:voter => person, :voteable => comment, :vote => 1)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).first
assert_difference 'comment.author.points', -1*c.weight do
Vote.where(:voteable_id => comment.id).destroy_all
process_delayed_job_queue
end
end
should 'subtract merit points from comment owner when an user dislike his comment' do
create_point_rule_definition('vote_voteable_author')
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).first
assert_difference 'comment.author.points(:category => c.id.to_s)', -1*c.weight do
Vote.create!(:voter => person, :voteable => comment, :vote => -1)
process_delayed_job_queue
end
end
should 'add merit points from comment owner when an user remove a dislike in his comment' do
create_point_rule_definition('vote_voteable_author')
comment = create(Comment, :source => article, :author_id => author.id)
Vote.create!(:voter => person, :voteable => comment, :vote => -1)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).first
assert_difference 'comment.author.points', c.weight do
Vote.where(:voteable_id => comment.id).destroy_all
process_delayed_job_queue
end
end
should 'add merit points to article author when create a new comment' do
create_point_rule_definition('comment_article_author')
scores = author.score_points.count
create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
assert_not_equal author.reload.score_points.count, scores
end
should 'add merit points to voter when he likes a comment' do
create_point_rule_definition('vote_voter')
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).first
assert_difference 'comment.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => comment, :vote => 1)
process_delayed_job_queue
end
end
should 'add merit points to voter when he dislikes a comment' do
create_point_rule_definition('vote_voter')
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).first
assert_difference 'comment.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => comment, :vote => -1)
process_delayed_job_queue
end
end
should 'add merit points to source article when create a comment' do
create_point_rule_definition('comment_article')
c = GamificationPlugin::PointsCategorization.for_type(:comment_article).first
assert_difference 'article.points(:category => c.id.to_s)', c.weight do
create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
end
end
should 'add merit points to source community when create a comment' do
create_point_rule_definition('comment_community')
community = fast_create(Community)
article = create(TextileArticle, :profile_id => community.id, :author_id => author.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:comment_community).first
assert_difference 'community.points(:category => c.id.to_s)', c.weight do
create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
end
end
## Community related tests
should 'add merit community points to author when create a new comment in a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
process_delayed_job_queue
rule = create_point_rule_definition('comment_author', article.profile)
create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
assert_equal rule.weight, person.points_by_profile(article.profile.identifier)
end
should 'subtract merit community points from author when destroy a community comment' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: fast_create(Person).id)
rule = create_point_rule_definition('comment_author', article.profile)
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
assert_equal rule.weight, person.points_by_profile(article.profile.identifier)
comment.destroy
assert_equal 0, person.points_by_profile(article.profile.identifier)
end
should 'add merit communty points to comment owner when an user like his comment inside a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
create_point_rule_definition('vote_voteable_author', community)
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).where(profile_id: article.profile.id).first
assert_difference 'comment.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => comment, :vote => 1)
process_delayed_job_queue
end
end
should 'subtract merit community points to comment owner when an user unlike his comment inside a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
create_point_rule_definition('vote_voteable_author', community)
comment = create(Comment, :source => article, :author_id => author.id)
Vote.create!(:voter => person, :voteable => comment, :vote => 1)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).first
assert_difference 'comment.author.points_by_profile(community.identifier)', -1*c.weight do
Vote.where(:voteable_id => comment.id).destroy_all
end
end
should 'subtract merit community points from comment owner when an user dislike his comment inside a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
create_point_rule_definition('vote_voteable_author', community)
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).where(profile_id: article.profile.id).first
assert_difference 'comment.author.points(:category => c.id.to_s)', -1*c.weight do
Vote.create!(:voter => person, :voteable => comment, :vote => -1)
process_delayed_job_queue
end
end
should 'add merit community points from comment owner when an user remove a dislike in his comment inside a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
create_point_rule_definition('vote_voteable_author', community)
comment = create(Comment, :source => article, :author_id => author.id)
Vote.create!(:voter => person, :voteable => comment, :vote => -1)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).first
assert_difference 'comment.author.points_by_profile(community.identifier)', c.weight do
Vote.where(:voteable_id => comment.id).destroy_all
end
end
should 'add merit community points to article author when create a new comment inside a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: author.id)
process_delayed_job_queue
rule = create_point_rule_definition('comment_article_author', community)
assert_difference 'author.points_by_profile(community.identifier)', rule.weight do
create(Comment, :source => article, :author_id => author.id)
process_delayed_job_queue
end
end
should 'add merit community points to voter when he likes a comment inside a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
create_point_rule_definition('vote_voter')
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).first
assert_difference 'comment.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => comment, :vote => 1)
process_delayed_job_queue
end
end
should 'add merit community points to voter when he dislikes a comment inside a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
create_point_rule_definition('vote_voter')
comment = create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).first
assert_difference 'comment.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => comment, :vote => -1)
process_delayed_job_queue
end
end
should 'add merit community points to source article when create a comment inside a community' do
community = fast_create(Community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
process_delayed_job_queue
create_point_rule_definition('comment_article')
c = GamificationPlugin::PointsCategorization.for_type(:comment_article).first
assert_difference 'article.points(:category => c.id.to_s)', c.weight do
create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
end
end
should 'add merit community points to source community when create a comment' do
create_point_rule_definition('comment_community')
community = fast_create(Community)
article = create(TextileArticle, :profile_id => community.id, :author_id => author.id)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:comment_community).first
assert_difference 'community.points(:category => c.id.to_s)', c.weight do
create(Comment, :source => article, :author_id => person.id)
process_delayed_job_queue
end
end
should "add organization's merit badge to author when create 5 new comments" do
organization = fast_create(Organization)
GamificationPlugin::Badge.create!(:owner => organization, :name => 'comment_author')
GamificationPlugin.gamification_set_rules(environment)
article.profile = organization
5.times { create(Comment, :source => article, :author_id => person.id) }
process_delayed_job_queue
assert_equal 'comment_author', person.badges.first.name
end
end