X-Git-Url: https://projects.mako.cc/source/rubyvote/blobdiff_plain/1da0a60f448820070d47333a7316364e009f203e..ca21f7527ba633db0457aa6cffc691c1eb4925ca:/test/condorcet_test.rb diff --git a/test/condorcet_test.rb b/test/condorcet_test.rb index 7ae4a70..ea1b19c 100644 --- a/test/condorcet_test.rb +++ b/test/condorcet_test.rb @@ -27,6 +27,8 @@ class TestCondorcetVote < Test::Unit::TestCase 8.times {vote_array << "EBADC".split("")} assert_equal "E", CloneproofSSDVote.new(vote_array).result.winners[0] + assert_equal [['E'], ['A'], ['C'], ['B'], ['D']], + CloneproofSSDVote.new(vote_array).result.get_full_results end def test_ssd2 @@ -42,6 +44,8 @@ class TestCondorcetVote < Test::Unit::TestCase 4.times {vote_array << "DCBA".split("")} assert_equal "D", CloneproofSSDVote.new(vote_array).result.winners[0] + assert_equal [['D'], ['A'], ['C'], ['B']], + CloneproofSSDVote.new(vote_array).result.get_full_results end def test_ssd3 @@ -52,5 +56,34 @@ class TestCondorcetVote < Test::Unit::TestCase 2.times {vote_array << "CBDA".split("")} assert_equal "B", CloneproofSSDVote.new(vote_array).result.winners[0] + assert_equal [['B'], ['C'], ['D'], ['A']], + CloneproofSSDVote.new(vote_array).result.get_full_results end + + def test_ssd_incomplete_votes + vote_array = Array.new + 3.times {vote_array << "ABCD".split("")} + 2.times {vote_array << "DABC".split("")} + 2.times {vote_array << "DBCA".split("")} + 4.times {vote_array << ["C"]} + 2.times {vote_array << "DBC".split("")} + + result = CloneproofSSDVote.new(vote_array).result + assert_equal "B", result.winners[0] + assert_equal [['B'], ['C'], ['D'], ['A']], result.get_full_results + end + + def test_ssd_incomplete_votes_2 + vote_array = Array.new + 4.times {vote_array << ["C"]} + 3.times {vote_array << "ABCD".split("")} + 2.times {vote_array << "DABC".split("")} + 2.times {vote_array << "DBCA".split("")} + 2.times {vote_array << "DBC".split("")} + + result = CloneproofSSDVote.new(vote_array).result + assert_equal "B", result.winners[0] + assert_equal [['B'], ['C'], ['D'], ['A']], result.get_full_results + end + end