profile_suggestion_test.rb
11.4 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
# encoding: UTF-8
require File.dirname(__FILE__) + '/../test_helper'
class ProfileSuggestionTest < ActiveSupport::TestCase
def setup
@person = create_user('test_user').person
@community = fast_create(Community)
end
attr_reader :person, :community
should 'save the profile class' do
suggestion = ProfileSuggestion.create(:person => person, :suggestion => community)
assert_equal 'Community', suggestion.suggestion_type
end
should 'only accept pre-defined categories' do
suggestion = ProfileSuggestion.new(:person => person, :suggestion => community)
suggestion.categories = {:unexistent => 1}
suggestion.valid?
assert suggestion.errors[:categories.to_s].present?
end
should 'disable a suggestion' do
suggestion = ProfileSuggestion.create(:person => person, :suggestion => community)
suggestion.disable
assert_equal false, ProfileSuggestion.find(suggestion.id).enabled?
end
should 'not suggest the same community twice' do
ProfileSuggestion.create(:person => person, :suggestion => community)
repeated_suggestion = ProfileSuggestion.new(:person => person, :suggestion => community)
repeated_suggestion.valid?
assert_equal true, repeated_suggestion.errors[:suggestion_id.to_s].present?
end
should 'calculate people with common friends' do
p1 = create_user('testuser1').person
p2 = create_user('testuser2').person
p3 = create_user('testuser3').person
p4 = create_user('testuser4').person
p5 = create_user('testuser4').person
p6 = create_user('testuser4').person
p7 = create_user('testuser4').person
p1.add_friend(p2) ; p2.add_friend(p1)
p1.add_friend(p3) ; p3.add_friend(p1)
p1.add_friend(p4) ; p2.add_friend(p3)
p3.add_friend(p2) ; p4.add_friend(p1)
p2.add_friend(p5) ; p5.add_friend(p2)
p2.add_friend(p6) ; p6.add_friend(p2)
p3.add_friend(p5) ; p5.add_friend(p3)
p4.add_friend(p6) ; p6.add_friend(p4)
p2.add_friend(p7) ; p7.add_friend(p2)
suggestions = ProfileSuggestion.calculate_suggestions(p1)
assert_includes suggestions, p5
assert_includes suggestions, p6
end
should 'calculate people with common_communities' do
c1 = fast_create(Community)
c2 = fast_create(Community)
c3 = fast_create(Community)
c4 = fast_create(Community)
p1 = create_user('testuser1').person
p2 = create_user('testuser2').person
p3 = create_user('testuser3').person
p4 = create_user('testuser4').person
p5 = create_user('testuser4').person
c1.add_member(p1)
c1.add_member(p2)
c1.add_member(p3)
c2.add_member(p1)
c2.add_member(p2)
c2.add_member(p4)
c3.add_member(p1)
c3.add_member(p4)
c4.add_member(p5)
suggestions = ProfileSuggestion.calculate_suggestions(p1)
assert_includes suggestions, p2
assert_includes suggestions, p4
end
should 'calculate people with common_tags' do
p1 = create_user('testuser1').person
a11 = fast_create(Article, :profile_id => p1.id)
a11.tag_list = ['free software', 'veganism']
a11.save!
a12 = fast_create(Article, :profile_id => p1.id)
a12.tag_list = ['anarchism']
a12.save!
p2 = create_user('testuser2').person
a21 = fast_create(Article, :profile_id => p2.id)
a21.tag_list = ['free software']
a21.save!
a22 = fast_create(Article, :profile_id => p2.id)
a22.tag_list = ['veganism']
a22.save!
p3 = create_user('testuser3').person
a31 = fast_create(Article, :profile_id => p3.id)
a31.tag_list = ['anarchism']
a31.save!
a32 = fast_create(Article, :profile_id => p3.id)
a32.tag_list = ['veganism']
a32.save!
p4 = create_user('testuser4').person
a41 = fast_create(Article, :profile_id => p4.id)
a41.tag_list = ['free software', 'marxism']
a41.save!
a42 = fast_create(Article, :profile_id => p4.id)
a42.tag_list = ['free software', 'vegetarianism',]
a42.save!
p5 = create_user('testuser4').person
a51 = fast_create(Article, :profile_id => p5.id)
a51.tag_list = ['proprietary software']
a51.save!
a52 = fast_create(Article, :profile_id => p5.id)
a52.tag_list = ['onivorism', 'facism']
a52.save!
suggestions = ProfileSuggestion.calculate_suggestions(p1)
assert_includes suggestions, p2
assert_includes suggestions, p3
end
should 'calculate communities with common_friends' do
c1 = fast_create(Community)
c2 = fast_create(Community)
c3 = fast_create(Community)
c4 = fast_create(Community)
p1 = create_user('testuser1').person
p2 = create_user('testuser2').person
p3 = create_user('testuser3').person
p4 = create_user('testuser4').person
p5 = create_user('testuser4').person
p1.add_friend(p2)
p1.add_friend(p3)
p1.add_friend(p4)
c1.add_member(p2)
c1.add_member(p3)
c2.add_member(p2)
c2.add_member(p4)
c3.add_member(p2)
c4.add_member(p3)
suggestions = ProfileSuggestion.calculate_suggestions(p1)
assert_includes suggestions, c1
assert_includes suggestions, c2
end
should 'calculate communities with common_tags' do
p1 = create_user('testuser1').person
a11 = fast_create(Article, :profile_id => p1.id)
a11.tag_list = ['free software', 'veganism']
a11.save!
a12 = fast_create(Article, :profile_id => p1.id)
a12.tag_list = ['anarchism']
a12.save!
p2 = fast_create(Community)
a21 = fast_create(Article, :profile_id => p2.id)
a21.tag_list = ['free software']
a21.save!
a22 = fast_create(Article, :profile_id => p2.id)
a22.tag_list = ['veganism']
a22.save!
p3 = fast_create(Community)
a31 = fast_create(Article, :profile_id => p3.id)
a31.tag_list = ['anarchism']
a31.save!
a32 = fast_create(Article, :profile_id => p3.id)
a32.tag_list = ['veganism']
a32.save!
p4 = fast_create(Community)
a41 = fast_create(Article, :profile_id => p4.id)
a41.tag_list = ['free software', 'marxism']
a41.save!
a42 = fast_create(Article, :profile_id => p4.id)
a42.tag_list = ['free software', 'vegetarianism',]
a42.save!
p5 = fast_create(Community)
a51 = fast_create(Article, :profile_id => p5.id)
a51.tag_list = ['proprietary software']
a51.save!
a52 = fast_create(Article, :profile_id => p5.id)
a52.tag_list = ['onivorism', 'facism']
a52.save!
suggestions = ProfileSuggestion.calculate_suggestions(p1)
assert_includes suggestions, p2
assert_includes suggestions, p3
end
#FIXME This might not be necessary anymore...
# should 'update existing person suggestion when the number of common friends increase' do
# suggested_person = create_user('test_user').person
# suggestion = ProfileSuggestion.create(:person => person, :suggestion => suggested_person, :common_friends => 2)
#
# friend = create_user('friend').person
# friend2 = create_user('friend2').person
# friend3 = create_user('friend2').person
# person.add_friend friend
# person.add_friend friend2
# person.add_friend friend3
#
# friend.add_friend suggested_person
#
# suggested_person.add_friend friend
# suggested_person.add_friend friend2
# suggested_person.add_friend friend3
#
# assert_difference 'ProfileSuggestion.find(suggestion.id).common_friends', 1 do
# ProfileSuggestion.register_suggestions(person, ProfileSuggestion.people_with_common_friends(person), 'people_with_common_friends')
# end
# end
#
# should 'update existing person suggestion when the number of common communities increase' do
# suggested_person = create_user('test_user').person
# suggestion = ProfileSuggestion.create(:person => person, :suggestion => suggested_person, :common_communities => 1)
#
# community.add_member person
# community.add_member suggested_person
#
# community2 = fast_create(Community)
# community2.add_member person
# community2.add_member suggested_person
#
# assert_difference 'ProfileSuggestion.find(suggestion.id).common_communities', 1 do
# ProfileSuggestion.register_suggestions(person, ProfileSuggestion.people_with_common_communities(person), 'people_with_common_communities')
# end
# end
#
# should 'update existing person suggestion when the number of common tags increase' do
# suggested_person = create_user('test_user').person
# suggestion = ProfileSuggestion.create(:person => person, :suggestion => suggested_person, :common_tags => 1)
#
# create(Article, :created_by => person, :profile => person, :tag_list => 'first-tag, second-tag, third-tag, fourth-tag')
# create(Article, :created_by => suggested_person, :profile => suggested_person, :tag_list => 'first-tag, second-tag, third-tag')
#
# assert_difference 'ProfileSuggestion.find(suggestion.id).common_tags', 2 do
# ProfileSuggestion.register_suggestions(person, ProfileSuggestion.people_with_common_tags(person), 'people_with_common_tags')
# end
# end
#
# should 'update existing community suggestion when the number of common friends increase' do
# suggestion = ProfileSuggestion.create(:person => person, :suggestion => community, :common_friends => 1)
#
# member1 = create_user('member1').person
# member2 = create_user('member2').person
#
# person.add_friend member1
# person.add_friend member2
#
# community.add_member member1
# community.add_member member2
#
# assert_difference 'ProfileSuggestion.find(suggestion.id).common_friends', 1 do
# ProfileSuggestion.register_suggestions(person, ProfileSuggestion.communities_with_common_friends(person), 'communities_with_common_friends')
# end
#
# end
#
# should 'update existing community suggestion when the number of common tags increase' do
# other_person = create_user('test_user').person
#
# suggestion = ProfileSuggestion.create(:person => person, :suggestion => community, :common_tags => 1)
#
# create(Article, :created_by => person, :profile => person, :tag_list => 'first-tag, second-tag, third-tag, fourth-tag')
# create(Article, :created_by => other_person, :profile => community, :tag_list => 'first-tag, second-tag, third-tag')
#
# assert_difference 'ProfileSuggestion.find(suggestion.id).common_tags', 2 do
# ProfileSuggestion.register_suggestions(person, ProfileSuggestion.communities_with_common_tags(person), 'communities_with_common_tags')
# end
# end
should 'calculate new suggestions when number of available suggestions reaches the min_limit' do
person = create_user('person').person
(ProfileSuggestion::MIN_LIMIT + 1).times do
ProfileSuggestion.create!(:person => person, :suggestion => fast_create(Profile))
end
ProfileSuggestion.expects(:calculate_suggestions)
person.profile_suggestions.enabled.last.disable
person.profile_suggestions.enabled.last.destroy
process_delayed_job_queue
end
should 'not create job to calculate new suggestions if there is already enough suggestions enabled' do
person = create_user('person').person
(ProfileSuggestion::MIN_LIMIT + 1).times do
ProfileSuggestion.create!(:person => person, :suggestion => fast_create(Profile))
end
ProfileSuggestion.expects(:calculate_suggestions).never
ProfileSuggestion.generate_profile_suggestions(person)
process_delayed_job_queue
end
should 'be able to force suggestions calculation' do
person = create_user('person').person
(ProfileSuggestion::MIN_LIMIT + 1).times do
ProfileSuggestion.create!(:person => person, :suggestion => fast_create(Profile))
end
ProfileSuggestion.expects(:calculate_suggestions)
ProfileSuggestion.generate_profile_suggestions(person, true)
process_delayed_job_queue
end
end