2021-05-30 03:50:19 +10:00
|
|
|
/* OpenTally: Open-source election vote counting
|
|
|
|
* Copyright © 2021 Lee Yingtong Li (RunasSudo)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-09-10 00:02:52 +10:00
|
|
|
use crate::utils;
|
2021-06-01 21:20:38 +10:00
|
|
|
|
|
|
|
use opentally::election::Election;
|
|
|
|
use opentally::numbers::Rational;
|
2021-08-20 02:16:54 +10:00
|
|
|
use opentally::parser::blt;
|
2021-05-30 03:50:19 +10:00
|
|
|
use opentally::stv;
|
|
|
|
|
|
|
|
use csv::StringRecord;
|
|
|
|
use flate2::bufread::GzDecoder;
|
2021-07-29 03:24:51 +10:00
|
|
|
use utf8_chars::BufReadCharsExt;
|
2021-05-30 03:50:19 +10:00
|
|
|
|
|
|
|
use std::fs::File;
|
2021-07-29 03:24:51 +10:00
|
|
|
use std::io::{self, BufReader};
|
2021-05-30 03:50:19 +10:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn aec_tas19_rational() {
|
|
|
|
// Read CSV file
|
|
|
|
let reader = csv::ReaderBuilder::new()
|
|
|
|
.has_headers(false)
|
|
|
|
.from_path("tests/data/aec-senate-formalpreferences-24310-TAS.csv")
|
|
|
|
.expect("IO Error");
|
|
|
|
let records: Vec<StringRecord> = reader.into_records().map(|r| r.expect("Syntax Error")).collect();
|
|
|
|
|
|
|
|
let mut candidates: Vec<&str> = records.iter().skip(2).map(|r| &r[0]).collect();
|
|
|
|
// Remove exhausted/LBF rows
|
|
|
|
candidates.truncate(candidates.len() - 2);
|
|
|
|
|
|
|
|
let stages: Vec<usize> = records.first().unwrap().iter().skip(1).step_by(2).map(|s| s.parse().unwrap()).collect();
|
|
|
|
|
|
|
|
// Decompress BLT
|
|
|
|
let file = File::open("tests/data/aec-senate-formalpreferences-24310-TAS.blt.gz").expect("IO Error");
|
|
|
|
let file_reader = io::BufReader::new(file);
|
2021-07-29 03:24:51 +10:00
|
|
|
let gz_decoder = GzDecoder::new(file_reader);
|
|
|
|
|
|
|
|
let mut reader = BufReader::new(gz_decoder);
|
|
|
|
let chars = reader.chars().map(|r| r.expect("IO Error")).peekable();
|
2021-05-30 03:50:19 +10:00
|
|
|
|
|
|
|
// Read BLT
|
2021-08-20 02:16:54 +10:00
|
|
|
let election: Election<Rational> = blt::parse_iterator(chars).expect("Syntax Error");
|
2021-05-30 03:50:19 +10:00
|
|
|
|
2021-06-27 22:46:37 +10:00
|
|
|
// Validate candidate names
|
|
|
|
for (i, candidate) in candidates.iter().enumerate() {
|
|
|
|
assert_eq!(election.candidates[i].name, *candidate);
|
|
|
|
}
|
|
|
|
|
2021-08-05 01:12:53 +10:00
|
|
|
let stv_opts = stv::STVOptionsBuilder::default()
|
|
|
|
.round_votes(Some(0))
|
|
|
|
.round_quota(Some(0))
|
|
|
|
.quota_criterion(stv::QuotaCriterion::GreaterOrEqual)
|
|
|
|
.surplus(stv::SurplusMethod::UIG)
|
|
|
|
.surplus_order(stv::SurplusOrder::ByOrder)
|
|
|
|
.exclusion(stv::ExclusionMethod::ByValue)
|
|
|
|
.bulk_exclude(true)
|
|
|
|
.build().unwrap();
|
|
|
|
|
2021-09-14 02:23:51 +10:00
|
|
|
assert_eq!(stv_opts.describe::<Rational>(), "--round-votes 0 --round-quota 0 --quota-criterion geq --surplus uig --surplus-order by_order --exclusion by_value --bulk-exclude");
|
|
|
|
|
2021-06-27 17:44:30 +10:00
|
|
|
utils::validate_election::<Rational>(stages, records, election, stv_opts, None, &["exhausted", "lbf"]);
|
2021-05-30 03:50:19 +10:00
|
|
|
}
|