X-Git-Url: https://projects.mako.cc/source/rubyvote/blobdiff_plain/1da0a60f448820070d47333a7316364e009f203e..c9649b477b0e94c4f7f36e6d42225e0d6a113f57:/test/condorcet_test.rb diff --git a/test/condorcet_test.rb b/test/condorcet_test.rb index 7ae4a70..0e45d4a 100644 --- a/test/condorcet_test.rb +++ b/test/condorcet_test.rb @@ -1,10 +1,13 @@ -#!/usr/bin/ruby -Ilib - require 'test/unit' require 'rubyvote/election' require 'rubyvote/condorcet' class TestCondorcetVote < Test::Unit::TestCase + def test_condorcet_empty + vote_array = [[]] + assert_nil PureCondorcetVote.new(vote_array).result.winners[0] + assert_equal(false, PureCondorcetVote.new(vote_array).result.winner?) + end def test_condorcet vote_array = Array.new @@ -12,9 +15,27 @@ class TestCondorcetVote < Test::Unit::TestCase 3.times {vote_array << "CBA".split("")} 2.times {vote_array << "BAC".split("")} - assert_equal ["B"], PureCondorcetVote.new(vote_array).result.winners[0] + assert_equal "B", PureCondorcetVote.new(vote_array).result.winners[0] + assert_equal [['B'], ['A'], ['C']], PureCondorcetVote.new(vote_array).result.ranked_candidates end + def test_condorcet_2 + vote_array = Array.new + 3.times {vote_array << "678".split("")} + 3.times {vote_array << "768".split("")} + 2.times {vote_array << "8".split("")} + + v = PureCondorcetVote.new(vote_array) + assert_equal ["6", "7"], v.result.winners + assert_equal [['6', '7'], ['8']], v.result.ranked_candidates + end + + def test_ssd_empty + vote_array = [[]] + assert_nil CloneproofSSDVote.new(vote_array).result.winners[0] + assert_equal(false, CloneproofSSDVote.new(vote_array).result.winner?) + end + def test_ssd vote_array = Array.new 5.times {vote_array << "ACBED".split("")} @@ -27,6 +48,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.ranked_candidates end def test_ssd2 @@ -42,6 +65,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.ranked_candidates end def test_ssd3 @@ -52,5 +77,82 @@ 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.ranked_candidates + 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("")} + + vote = CloneproofSSDVote.new(vote_array) + assert_equal "B", vote.result.winners[0] + assert_equal [['B'], ['C'], ['D'], ['A']], vote.result.ranked_candidates + 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("")} + + vote = CloneproofSSDVote.new(vote_array) + assert_equal "B", vote.result.winners[0] + assert_equal [['B'], ['C'], ['D'], ['A']], vote.result.ranked_candidates + end + + # + # At one point, we happened to be getting correct results due to the + # happy accident that, for example, 'B'.each returns 'B'. The + # following election with a single integer vote catches that + # condition. + # + def test_ssd_single_vote + vote = CloneproofSSDVote.new([[78]]) + assert_equal 78, vote.result.winners[0] + assert_equal [[78]], vote.result.ranked_candidates + end + + def test_ssd_sparse + vote_array = Array.new + vote_array << ['B', 'D'] + vote_array << ['A', 'C'] + vote_array << ['E', 'C'] + ranked_candidates = CloneproofSSDVote.new(vote_array).result.ranked_candidates + assert_equal 5, ranked_candidates.flatten.size + end + + def test_ssd_sparse_2 + vote_array = Array.new + vote_array << [65, 63, 64] + vote_array << [64, 65, 66, 63] + vote = CloneproofSSDVote.new(vote_array) + assert_equal 65, vote.result.winners[0] + assert_equal [[65, 64], [63, 66]], vote.result.ranked_candidates + end + + def test_ssd_multiple_equivalent + vote_array = Array.new + vote_array << ['B', ['A', 'C'], 'D'] + vote_array << ['A', 'C'] + vote_array << [['E', 'D'], 'C'] + ranked_candidates = CloneproofSSDVote.new(vote_array).result.ranked_candidates + assert_equal 5, ranked_candidates.flatten.size + assert_equal [['A', 'C'], ['B', 'D'], ['E']], ranked_candidates + end + + def test_ssd_multiple_equivalent_2 + vote_array = Array.new + vote_array << ['B', ['A'], 'C'] + vote_array << ['B', ['C'], 'A'] + ranked_candidates = CloneproofSSDVote.new(vote_array).result.ranked_candidates + assert_equal 3, ranked_candidates.flatten.size + assert_equal [['B'], ['A', 'C']], ranked_candidates end end