article_test.rb
10.6 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
require_relative "../test_helper"
class ArticleTest < ActiveSupport::TestCase
def setup
@person = create_user('testuser').person
@environment = Environment.default
end
attr_accessor :person, :environment
should 'add merit points to author when create a new article' do
create_point_rule_definition('article_author')
create(TextArticle, :profile_id => person.id, :author => person)
process_delayed_job_queue
assert_equal 1, person.score_points.count
assert person.score_points.first.action.present?
end
should 'subtract merit points to author when destroy an article' do
create_point_rule_definition('article_author')
article = create(TextArticle, :profile_id => person.id, :author => person)
process_delayed_job_queue
assert_equal 1, person.score_points.count
article.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 articles' do
GamificationPlugin::Badge.create!(:owner => environment, :name => 'article_author', :level => 1)
GamificationPlugin.gamification_set_rules(environment)
5.times { create(TextArticle, :profile_id => person.id, :author => person) }
process_delayed_job_queue
assert_equal 'article_author', person.badges.first.name
assert_equal 1, person.badges.first.level
end
should 'add merit badge level 2 to author when create 10 new articles' do
GamificationPlugin::Badge.create!(:owner => environment, :name => 'article_author', :level => 1)
GamificationPlugin::Badge.create!(:owner => environment, :name => 'article_author', :level => 2, :custom_fields => {:threshold => 10})
GamificationPlugin.gamification_set_rules(environment)
10.times { create(TextArticle, :profile_id => person.id, :author => person) }
process_delayed_job_queue
sleep 4
assert_equal ['article_author'], person.badges.map(&:name).uniq
assert_equal [1, 2], person.badges.map(&:level)
end
should 'add merit points to community article owner when an user like it' do
create_point_rule_definition('vote_voteable_author')
community = fast_create(Community)
article = create(TextArticle, :name => 'Test', :profile => community, :author => person)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).first
points = article.author.points(:category => c.id.to_s)
Vote.create!(:voter => person, :voteable => article, :vote => 1)
process_delayed_job_queue
assert_equal article.author.points(:category => c.id.to_s), points + c.weight
end
should 'add merit points to article when an user like it' do
create_point_rule_definition('vote_voteable')
article = create(TextArticle, :name => 'Test', :profile => person, :author => person)
process_delayed_job_queue
article = article.reload
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable).first
assert_difference 'article.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => article, :vote => 1)
process_delayed_job_queue
end
end
should 'add merit points to community when create a new article' do
create_point_rule_definition('article_community')
community = fast_create(Community)
process_delayed_job_queue
assert_difference 'community.score_points.count' do
create(TextArticle, :profile_id => community.id, :author => person)
process_delayed_job_queue
end
end
should 'add merit points to voter when he likes an article' do
create_point_rule_definition('vote_voter')
article = create(TextArticle, :name => 'Test', :profile => person, :author => person)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).first
assert_difference 'article.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => article, :vote => 1)
process_delayed_job_queue
end
end
should 'add merit points to voter when he dislikes an article' do
create_point_rule_definition('vote_voter')
article = create(TextArticle, :name => 'Test', :profile => person, :author => person)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).first
assert_difference 'article.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => article, :vote => -1)
process_delayed_job_queue
end
end
should 'add badge to author when users like his article' do
GamificationPlugin::Badge.create!(:owner => environment, :name => 'positive_votes_received')
GamificationPlugin.gamification_set_rules(environment)
article = create(TextArticle, :name => 'Test', :profile => person, :author => person)
4.times { Vote.create!(:voter => fast_create(Person), :voteable => article, :vote => 1) }
Vote.create!(:voter => fast_create(Person), :voteable => article, :vote => -1)
process_delayed_job_queue
assert_equal [], person.badges
Vote.create!(:voter => fast_create(Person), :voteable => article, :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 article' do
GamificationPlugin::Badge.create!(:owner => environment, :name => 'negative_votes_received')
GamificationPlugin.gamification_set_rules(environment)
article = create(TextArticle, :name => 'Test', :profile => person, :author => person)
4.times { Vote.create!(:voter => fast_create(Person), :voteable => article, :vote => -1) }
Vote.create!(:voter => fast_create(Person), :voteable => article, :vote => 1)
process_delayed_job_queue
assert_equal [], person.badges
Vote.create!(:voter => fast_create(Person), :voteable => article, :vote => -1)
process_delayed_job_queue
assert_equal 'negative_votes_received', person.reload.badges.first.name
end
# community related tests
should 'add merit community points to author when create a new article on community' do
community = fast_create(Community)
rule = create_point_rule_definition('article_author', community)
create(TextArticle, profile_id: community.id, author_id: person.id)
process_delayed_job_queue
assert_equal rule.weight, person.points_by_profile(community.identifier)
assert person.score_points.first.action.present?
end
should 'subtract merit points to author when destroy an article on community' do
community = fast_create(Community)
rule = create_point_rule_definition('article_author', community)
article = create(TextArticle, profile_id: community.id, author_id: person.id)
process_delayed_job_queue
assert_equal rule.weight, person.points_by_profile(community.identifier)
article.destroy
process_delayed_job_queue
assert_equal 0, person.points
end
should 'add merit points to community article owner when an user like it on community' do
community = fast_create(Community)
create_point_rule_definition('vote_voteable_author', community)
article = create(TextArticle, :name => 'Test', :profile => community, :author => person)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).first
assert_difference 'article.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => article, :vote => 1)
process_delayed_job_queue
end
end
should 'add merit points to article when an user like it on community' do
community = fast_create(Community)
create_point_rule_definition('vote_voteable', community)
article = create(TextArticle, :name => 'Test', :profile => community, :author => person)
process_delayed_job_queue
article = article.reload
c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable).first
assert_difference 'article.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => article, :vote => 1)
process_delayed_job_queue
end
end
should 'add merit points to community when create a new article on community' do
community = fast_create(Community)
create_point_rule_definition('article_community')
process_delayed_job_queue
assert_difference 'community.score_points.count' do
create(TextArticle, :profile_id => community.id, :author => person)
process_delayed_job_queue
end
end
should 'add merit points to voter when he likes an article on community' do
community = fast_create(Community)
create_point_rule_definition('vote_voter', community)
article = create(TextArticle, :name => 'Test', :profile => community, :author => person)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).first
assert_difference 'article.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => article, :vote => 1)
process_delayed_job_queue
end
end
should 'add merit points to voter when he dislikes an article on community' do
community = fast_create(Community)
create_point_rule_definition('vote_voter', community)
article = create(TextArticle, :name => 'Test', :profile => community, :author => person)
process_delayed_job_queue
c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).first
assert_difference 'article.author.points(:category => c.id.to_s)', c.weight do
Vote.create!(:voter => person, :voteable => article, :vote => -1)
process_delayed_job_queue
end
end
should "add organization's merit badge to author when create 5 new articles" do
organization = fast_create(Organization)
GamificationPlugin::Badge.create!(:owner => organization, :name => 'article_author', :level => 1)
GamificationPlugin.gamification_set_rules(environment)
5.times { create(TextArticle, :profile_id => organization.id, :author => person) }
process_delayed_job_queue
assert_equal 'article_author', person.badges.first.name
assert_equal 1, person.badges.first.level
end
should "do not earn organization's badge when the article is not posted in the organization itself" do
organization = fast_create(Organization)
other_organization = fast_create(Organization)
GamificationPlugin::Badge.create!(:owner => organization, :name => 'article_author', :level => 1)
GamificationPlugin.gamification_set_rules(environment)
5.times { create(TextArticle, :profile_id => other_organization.id, :author => person) }
process_delayed_job_queue
assert_equal [], person.badges
end
end