Skip to content

Latest commit

 

History

History

test

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

PrefVote test suite

PrefVote is designed for multiple programming language implementations using a common test suite. The test suite consists of "black box" test specs used across all languages, plus "white box" unit tests within each language's source code directory. The test harness collects Test Anything Protocol (TAP) data from each language's unit tests to report the results.

Scripts in the test directory

  • acr-compare: comparison of voting methods with and without average-choice-rank (ACR) tie-breaking
  • blackbox-recalibrate: resets blackbox test data after changes are made to the runtime environment
  • run-tests: perform whitebox tests (unit tests) and blackbox test suites
  • test-overview: generate a Markdown formatted overview of black-box test data in each test file including results of runs in each of the voting methods

Progress on the test suite

Numbers in each cell are test cases planned/passed/failed.

language/set Core STV Schulze RankedPairs total
Perl whitebox 354/354/0 193/193/0 183/183/0 139/139/0 869/869/0
Rust whitebox 𝟬 𝟬 𝟬 𝟬 0/0/0
Perl blackbox 7794/7794/0 8958/8958/0 10315/10315/0 8295/8295/0 35362/35362/0
Rust blackbox 𝟬 𝟬 𝟬 𝟬 0/0/0
total 8148/8148/0 9151/9151/0 10498/10498/0 8434/8434/0 36231/36231/0

Black-box test data files

Randomly-generated black-box test data files and their run results for each voting method can be found in these overview files (generated by the test-overview script, which also calls acr-compare and vote-count).

Column headings in result overviews:

  • choice: name of voting choice (fictitious candidates used in black-box data)
  • avg choice rank: floating point numbers for average ballot position ranking of each choice, followed in parentheses with the integer totals for the total places and total occurrences which were divided to compute it
  • Core: PrefVote::Core ranking - these are always in order of i-n since the ACR comparison is ordered relative to Core
  • STV: PrefVote::STV result place 1-n with/without (slash between them) using ACR/Core for tie-breaking
  • Schulze: PrefVote::Schulze result place 1-n with/without (slash between them) using ACR/Core for tie-breaking
  • RankedPairs: PrefVote::RankedPairs result place 1-n with/without (slash between them) using ACR/Core for tie-breaking
  • Condorcet: Condorcet method doesn't actually have a score, but says any candidate who wins against all others in pairwise comparisons is the winner. For the table, this is shown using the Copeland score, nth place result followed by the actual Copeland score in parentheses. Copeland score is simply the total pairwise races against other candidates won by a candidate. This is just a numeric score, and does not corespond to any PrefVote module. The implemented algorithms all have tie-breaking optimizations which are not part of Condorcet or Copeland, but necessary to disambiguate results.