summaryrefslogtreecommitdiff
path: root/spec/lib
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-21 22:40:12 -0800
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-21 22:40:12 -0800
commit581b2c5e90f127739dda248b5fb1a60089edb51b (patch)
tree0d1931ce7c83547cd781b3da86886eb5f54f93e6 /spec/lib
parent111d95f7b0a31373f080ceb42bed618d92000d58 (diff)
parent505a492cd87be7683827c5f46a05b6a7dddffc86 (diff)
downloadgitlab-ce-581b2c5e90f127739dda248b5fb1a60089edb51b.tar.gz
Merge branch 'vote-count' of https://github.com/mc1arke/gitlabhq into mc1arke-vote-count
Conflicts: CHANGELOG
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/votes_spec.rb100
1 files changed, 74 insertions, 26 deletions
diff --git a/spec/lib/votes_spec.rb b/spec/lib/votes_spec.rb
index a3c353d5eab..63692814b97 100644
--- a/spec/lib/votes_spec.rb
+++ b/spec/lib/votes_spec.rb
@@ -20,11 +20,17 @@ describe Issue, 'Votes' do
issue.upvotes.should == 1
end
- it "should recognize multiple +1 notes" do
- add_note "+1 This is awesome"
- add_note "+1 I want this"
+ it 'should recognize multiple +1 notes' do
+ add_note '+1 This is awesome', create(:user)
+ add_note '+1 I want this', create(:user)
issue.upvotes.should == 2
end
+
+ it 'should not count 2 +1 votes from the same user' do
+ add_note '+1 This is awesome'
+ add_note '+1 I want this'
+ issue.upvotes.should == 1
+ end
end
describe "#downvotes" do
@@ -45,8 +51,8 @@ describe Issue, 'Votes' do
end
it "should recognize multiple -1 notes" do
- add_note "-1 This is bad"
- add_note "-1 Away with this"
+ add_note('-1 This is bad', create(:user))
+ add_note('-1 Away with this', create(:user))
issue.downvotes.should == 2
end
end
@@ -73,11 +79,17 @@ describe Issue, 'Votes' do
end
it "should recognize multiple notes" do
- add_note "+1 This is awesome"
- add_note "-1 This is bad"
- add_note "+1 I want this"
+ add_note('+1 This is awesome', create(:user))
+ add_note('-1 This is bad', create(:user))
+ add_note('+1 I want this', create(:user))
issue.votes_count.should == 3
end
+
+ it 'should not count 2 -1 votes from the same user' do
+ add_note '-1 This is suspicious'
+ add_note '-1 This is bad'
+ issue.votes_count.should == 1
+ end
end
describe "#upvotes_in_percent" do
@@ -90,17 +102,17 @@ describe Issue, 'Votes' do
issue.upvotes_in_percent.should == 100
end
- it "should count multiple +1 notes as 100%" do
- add_note "+1 This is awesome"
- add_note "+1 I want this"
+ it 'should count multiple +1 notes as 100%' do
+ add_note('+1 This is awesome', create(:user))
+ add_note('+1 I want this', create(:user))
issue.upvotes_in_percent.should == 100
end
- it "should count fractions for multiple +1 and -1 notes correctly" do
- add_note "+1 This is awesome"
- add_note "+1 I want this"
- add_note "-1 This is bad"
- add_note "+1 me too"
+ it 'should count fractions for multiple +1 and -1 notes correctly' do
+ add_note('+1 This is awesome', create(:user))
+ add_note('+1 I want this', create(:user))
+ add_note('-1 This is bad', create(:user))
+ add_note('+1 me too', create(:user))
issue.upvotes_in_percent.should == 75
end
end
@@ -115,22 +127,58 @@ describe Issue, 'Votes' do
issue.downvotes_in_percent.should == 100
end
- it "should count multiple -1 notes as 100%" do
- add_note "-1 This is bad"
- add_note "-1 Away with this"
+ it 'should count multiple -1 notes as 100%' do
+ add_note('-1 This is bad', create(:user))
+ add_note('-1 Away with this', create(:user))
issue.downvotes_in_percent.should == 100
end
- it "should count fractions for multiple +1 and -1 notes correctly" do
- add_note "+1 This is awesome"
- add_note "+1 I want this"
- add_note "-1 This is bad"
- add_note "+1 me too"
+ it 'should count fractions for multiple +1 and -1 notes correctly' do
+ add_note('+1 This is awesome', create(:user))
+ add_note('+1 I want this', create(:user))
+ add_note('-1 This is bad', create(:user))
+ add_note('+1 me too', create(:user))
issue.downvotes_in_percent.should == 25
end
end
- def add_note(text)
- issue.notes << create(:note, note: text, project: issue.project)
+ describe '#filter_superceded_votes' do
+
+ it 'should count a users vote only once amongst multiple votes' do
+ add_note('-1 This needs work before I will accept it')
+ add_note('+1 I want this', create(:user))
+ add_note('+1 This is is awesome', create(:user))
+ add_note('+1 this looks good now')
+ add_note('+1 This is awesome', create(:user))
+ add_note('+1 me too', create(:user))
+ issue.downvotes.should == 0
+ issue.upvotes.should == 5
+ end
+
+ it 'should count each users vote only once' do
+ add_note '-1 This needs work before it will be accepted'
+ add_note '+1 I like this'
+ add_note '+1 I still like this'
+ add_note '+1 I really like this'
+ add_note '+1 Give me this now!!!!'
+ p issue.downvotes.should == 0
+ p issue.upvotes.should == 1
+ end
+
+ it 'should count a users vote only once without caring about comments' do
+ add_note '-1 This needs work before it will be accepted'
+ add_note 'Comment 1'
+ add_note 'Another comment'
+ add_note '+1 vote'
+ add_note 'final comment'
+ p issue.downvotes.should == 0
+ p issue.upvotes.should == 1
+ end
+
+ end
+
+ def add_note(text, author = issue.author)
+ issue.notes << create(:note, note: text, project: issue.project,
+ author_id: author.id)
end
end