article_test.rb
1.82 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
require_relative "../test_helper"
class ArticleTest < ActiveSupport::TestCase
def setup
@person = create_user('testuser').person
end
attr_accessor :person
should 'add merit points to author when create a new article' do
create(Article, :profile_id => person.id, :author => person)
assert_equal 1, person.score_points.count
end
should 'subtract merit points to author when destroy an article' do
article = create(Article, :profile_id => person.id, :author => person)
assert_equal 1, person.score_points.count
article.destroy
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
5.times { create(Article, :profile_id => person.id, :author => person) }
assert_equal 'article-creator', 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
10.times { create(Article, :profile_id => person.id, :author => person) }
assert_equal ['article-creator'], person.badges.map(&:name).uniq
assert_equal [1, 2], person.badges.map(&:level)
end
should 'add merit points to article owner when an user like it' do
article = create(Article, :name => 'Test', :profile => person, :author => person)
assert_difference 'article.author.points(:category => :vote_voteable_author)', 5 do
Vote.create!(:voter => person, :voteable => article, :vote => 1)
end
end
should 'add merit points to article when an user like it' do
article = create(Article, :name => 'Test', :profile => person, :author => person)
article = article.reload
assert_difference 'article.points(:category => :vote_voteable)', 5 do
Vote.create!(:voter => person, :voteable => article, :vote => 1)
end
end
end