comment_test.rb
2.27 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
require_relative "../test_helper"
class CommentTest < ActiveSupport::TestCase
def setup
@person = create_user('testuser').person
@article = create(TextileArticle, :profile_id => person.id)
end
attr_accessor :person, :article
should 'add merit points to author when create a new comment' do
create(Comment, :source => article, :author_id => person.id)
assert_equal 1, person.score_points.count
end
should 'subtract merit points from author when destroy a comment' do
comment = create(Comment, :source => article, :author_id => person.id)
assert_equal 1, person.score_points.count
comment.destroy
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
5.times { create(Comment, :source => article, :author_id => person.id) }
assert_equal 'commenter', person.badges.first.name
end
should 'add merit points to comment owner when an user like his comment' do
comment = create(Comment, :source => article, :author_id => person.id)
assert_difference 'comment.author.points(:category => :vote_voteable_author)', 5 do
Vote.create!(:voter => person, :voteable => comment, :vote => 1)
end
end
should 'subtract merit points to comment owner when an user unlike his comment' do
comment = create(Comment, :source => article, :author_id => person.id)
Vote.create!(:voter => person, :voteable => comment, :vote => 1)
assert_difference 'comment.author.points', -5 do
Vote.where(:voteable_id => comment.id).destroy_all
end
end
should 'subtract merit points from comment owner when an user dislike his comment' do
comment = create(Comment, :source => article, :author_id => person.id)
assert_difference 'comment.author.points(:category => :vote_voteable_author)', -5 do
Vote.create!(:voter => person, :voteable => comment, :vote => -1)
end
end
should 'add merit points from comment owner when an user remove a dislike in his comment' do
comment = create(Comment, :source => article, :author_id => person.id)
Vote.create!(:voter => person, :voteable => comment, :vote => -1)
assert_difference 'comment.author.points', 5 do
Vote.where(:voteable_id => comment.id).destroy_all
end
end
end