From 7e8e2832a8f573c2d0fee4a70050bac982f6f4de Mon Sep 17 00:00:00 2001 From: Leandro Nunes dos Santos Date: Wed, 14 Oct 2015 17:54:45 -0300 Subject: [PATCH] adding article folloer test --- test/unit/article_follower.rb | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+), 0 deletions(-) create mode 100644 test/unit/article_follower.rb diff --git a/test/unit/article_follower.rb b/test/unit/article_follower.rb new file mode 100644 index 0000000..d36eccb --- /dev/null +++ b/test/unit/article_follower.rb @@ -0,0 +1,117 @@ +require_relative "../test_helper" + +class ArticleTest < ActiveSupport::TestCase + + def setup + @person = create_user('testuser').person + @environment = Environment.default + @community = create_merit_categorization + GamificationPlugin.gamification_set_rules(@environment) + end + + attr_accessor :person, :environment, :community + + should 'add merit points to follower when it follows an article' do + article = create(TextArticle, :profile_id => community.id, :author => person) + amount = person.score_points.count + article.person_followers << person +puts person.score_points.first.action.inspect + assert_equal amount + 1, person.score_points.count + assert person.score_points.first.action.present? + end + +# should 'subtract merit points to author when destroy an article' do +# article = create(TextArticle, :profile_id => @community.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 +# 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) } +# 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) } +# 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 +# article = create(TextArticle, :name => 'Test', :profile => @community, :author => person) +# +# c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable_author).where(profile_id: @community.id).first +# assert_difference 'article.author.points(:category => c.id.to_s)', c.weight 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(TextArticle, :name => 'Test', :profile => @community, :author => person) +# article = article.reload +# +# c = GamificationPlugin::PointsCategorization.for_type(:vote_voteable).where(profile_id: @community.id).first +# assert_difference 'article.points(:category => c.id.to_s)', c.weight do +# Vote.create!(:voter => person, :voteable => article, :vote => 1) +# end +# end +# +# should 'add merit points to community when create a new article' do +# assert_difference 'community.score_points.count' do +# create(TextArticle, :profile_id => @community.id, :author => person) +# end +# end +# +# should 'add merit points to voter when he likes an article' do +# article = create(TextArticle, :name => 'Test', :profile => @community, :author => person) +# +# c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).where(profile_id: @community.id).first +# assert_difference 'article.author.points(:category => c.id.to_s)', c.weight do +# Vote.create!(:voter => person, :voteable => article, :vote => 1) +# end +# end +# +# should 'add merit points to voter when he dislikes an article' do +# article = create(TextArticle, :name => 'Test', :profile => @community, :author => person) +# +# c = GamificationPlugin::PointsCategorization.for_type(:vote_voter).where(profile_id: @community.id).first +# assert_difference 'article.author.points(:category => c.id.to_s)', c.weight do +# Vote.create!(:voter => person, :voteable => article, :vote => -1) +# 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) +# assert_equal [], person.badges +# Vote.create!(:voter => fast_create(Person), :voteable => article, :vote => 1) +# 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) +# assert_equal [], person.badges +# Vote.create!(:voter => fast_create(Person), :voteable => article, :vote => -1) +# assert_equal 'negative_votes_received', person.reload.badges.first.name +# end +# +end -- libgit2 0.21.2