Skip to content

Commit 4be79d6

Browse files
committed
Auto merge of #21503 - ahmedcharles:remove-test-features, r=alexcrichton
I think this is all of the remaining code to be removed. Let me know if I've missed anything. Closes #19145
2 parents 86fbdbf + cb020db commit 4be79d6

File tree

2 files changed

+18
-222
lines changed

2 files changed

+18
-222
lines changed

src/libtest/lib.rs

+18-92
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,14 @@ use self::OutputLocation::*;
5454
use stats::Stats;
5555
use getopts::{OptGroup, optflag, optopt};
5656
use regex::Regex;
57-
use serialize::{json, Decodable, Encodable};
57+
use serialize::Encodable;
5858
use term::Terminal;
5959
use term::color::{Color, RED, YELLOW, GREEN, CYAN};
6060

6161
use std::any::Any;
6262
use std::cmp;
6363
use std::collections::BTreeMap;
6464
use std::fmt;
65-
use std::io::fs::PathExtensions;
6665
use std::io::stdio::StdWriter;
6766
use std::io::{File, ChanReader, ChanWriter};
6867
use std::io;
@@ -438,9 +437,6 @@ struct ConsoleTestState<T> {
438437
log_out: Option<File>,
439438
out: OutputLocation<T>,
440439
use_color: bool,
441-
show_boxplot: bool,
442-
boxplot_width: uint,
443-
show_all_stats: bool,
444440
total: uint,
445441
passed: uint,
446442
failed: uint,
@@ -467,9 +463,6 @@ impl<T: Writer> ConsoleTestState<T> {
467463
out: out,
468464
log_out: log_out,
469465
use_color: use_color(opts),
470-
show_boxplot: false,
471-
boxplot_width: 50,
472-
show_all_stats: false,
473466
total: 0u,
474467
passed: 0u,
475468
failed: 0u,
@@ -545,33 +538,13 @@ impl<T: Writer> ConsoleTestState<T> {
545538
TrIgnored => self.write_ignored(),
546539
TrMetrics(ref mm) => {
547540
try!(self.write_metric());
548-
self.write_plain(format!(": {}", fmt_metrics(mm)).as_slice())
541+
self.write_plain(format!(": {}", mm.fmt_metrics()).as_slice())
549542
}
550543
TrBench(ref bs) => {
551544
try!(self.write_bench());
552545

553-
if self.show_boxplot {
554-
let mut wr = Vec::new();
555-
556-
try!(stats::write_boxplot(&mut wr, &bs.ns_iter_summ, self.boxplot_width));
557-
558-
let s = String::from_utf8(wr).unwrap();
559-
560-
try!(self.write_plain(format!(": {}", s).as_slice()));
561-
}
562-
563-
if self.show_all_stats {
564-
let mut wr = Vec::new();
565-
566-
try!(stats::write_5_number_summary(&mut wr, &bs.ns_iter_summ));
567-
568-
let s = String::from_utf8(wr).unwrap();
569-
570-
try!(self.write_plain(format!(": {}", s).as_slice()));
571-
} else {
572-
try!(self.write_plain(format!(": {}",
573-
fmt_bench_samples(bs)).as_slice()));
574-
}
546+
try!(self.write_plain(format!(": {}",
547+
fmt_bench_samples(bs)).as_slice()));
575548

576549
Ok(())
577550
}
@@ -588,7 +561,7 @@ impl<T: Writer> ConsoleTestState<T> {
588561
TrOk => "ok".to_string(),
589562
TrFailed => "failed".to_string(),
590563
TrIgnored => "ignored".to_string(),
591-
TrMetrics(ref mm) => fmt_metrics(mm),
564+
TrMetrics(ref mm) => mm.fmt_metrics(),
592565
TrBench(ref bs) => fmt_bench_samples(bs)
593566
}, test.name.as_slice());
594567
o.write(s.as_bytes())
@@ -624,34 +597,14 @@ impl<T: Writer> ConsoleTestState<T> {
624597
Ok(())
625598
}
626599

627-
pub fn write_run_finish(&mut self,
628-
ratchet_metrics: &Option<Path>,
629-
ratchet_pct: Option<f64>) -> io::IoResult<bool> {
600+
pub fn write_run_finish(&mut self) -> io::IoResult<bool> {
630601
assert!(self.passed + self.failed + self.ignored + self.measured == self.total);
631602

632-
let ratchet_success = match *ratchet_metrics {
633-
None => true,
634-
Some(ref pth) => {
635-
try!(self.write_plain(format!("\nusing metrics ratchet: {:?}\n",
636-
pth.display()).as_slice()));
637-
match ratchet_pct {
638-
None => (),
639-
Some(pct) =>
640-
try!(self.write_plain(format!("with noise-tolerance \
641-
forced to: {}%\n",
642-
pct).as_slice()))
643-
}
644-
true
645-
}
646-
};
647-
648-
let test_success = self.failed == 0u;
649-
if !test_success {
603+
let success = self.failed == 0u;
604+
if !success {
650605
try!(self.write_failures());
651606
}
652607

653-
let success = ratchet_success && test_success;
654-
655608
try!(self.write_plain("\ntest result: "));
656609
if success {
657610
// There's no parallelism at this point so it's safe to use color
@@ -666,15 +619,6 @@ impl<T: Writer> ConsoleTestState<T> {
666619
}
667620
}
668621

669-
pub fn fmt_metrics(mm: &MetricMap) -> String {
670-
let MetricMap(ref mm) = *mm;
671-
let v : Vec<String> = mm.iter()
672-
.map(|(k,v)| format!("{}: {} (+/- {})", *k,
673-
v.value as f64, v.noise as f64))
674-
.collect();
675-
v.connect(", ")
676-
}
677-
678622
pub fn fmt_bench_samples(bs: &BenchSamples) -> String {
679623
if bs.mb_s != 0 {
680624
format!("{:>9} ns/iter (+/- {}) = {} MB/s",
@@ -745,7 +689,7 @@ pub fn run_tests_console(opts: &TestOpts, tests: Vec<TestDescAndFn> ) -> io::IoR
745689
None => {}
746690
}
747691
try!(run_tests(opts, tests, |x| callback(&x, &mut st)));
748-
return st.write_run_finish(&None, None);
692+
return st.write_run_finish();
749693
}
750694

751695
#[test]
@@ -766,9 +710,6 @@ fn should_sort_failures_before_printing_them() {
766710
log_out: None,
767711
out: Raw(Vec::new()),
768712
use_color: false,
769-
show_boxplot: false,
770-
boxplot_width: 0,
771-
show_all_stats: false,
772713
total: 0u,
773714
passed: 0u,
774715
failed: 0u,
@@ -1010,30 +951,6 @@ impl MetricMap {
1010951
MetricMap(BTreeMap::new())
1011952
}
1012953

1013-
/// Load MetricDiff from a file.
1014-
///
1015-
/// # Panics
1016-
///
1017-
/// This function will panic if the path does not exist or the path does not
1018-
/// contain a valid metric map.
1019-
pub fn load(p: &Path) -> MetricMap {
1020-
assert!(p.exists());
1021-
let mut f = File::open(p).unwrap();
1022-
let value = json::from_reader(&mut f as &mut io::Reader).unwrap();
1023-
let mut decoder = json::Decoder::new(value);
1024-
MetricMap(match Decodable::decode(&mut decoder) {
1025-
Ok(t) => t,
1026-
Err(e) => panic!("failure decoding JSON: {:?}", e)
1027-
})
1028-
}
1029-
1030-
/// Write MetricDiff to a file.
1031-
pub fn save(&self, p: &Path) -> io::IoResult<()> {
1032-
let mut file = try!(File::create(p));
1033-
let MetricMap(ref map) = *self;
1034-
write!(&mut file, "{}", json::as_json(map))
1035-
}
1036-
1037954
/// Insert a named `value` (+/- `noise`) metric into the map. The value
1038955
/// must be non-negative. The `noise` indicates the uncertainty of the
1039956
/// metric, which doubles as the "noise range" of acceptable
@@ -1055,6 +972,15 @@ impl MetricMap {
1055972
let MetricMap(ref mut map) = *self;
1056973
map.insert(name.to_string(), m);
1057974
}
975+
976+
pub fn fmt_metrics(&self) -> String {
977+
let MetricMap(ref mm) = *self;
978+
let v : Vec<String> = mm.iter()
979+
.map(|(k,v)| format!("{}: {} (+/- {})", *k,
980+
v.value as f64, v.noise as f64))
981+
.collect();
982+
v.connect(", ")
983+
}
1058984
}
1059985

1060986

src/libtest/stats.rs

-130
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
use std::cmp::Ordering::{self, Less, Greater, Equal};
1414
use std::collections::hash_map::Entry::{Occupied, Vacant};
1515
use std::collections::hash_map::{self, Hasher};
16-
use std::fmt;
1716
use std::hash::Hash;
18-
use std::io;
1917
use std::mem;
2018
use std::num::{Float, FromPrimitive};
2119

@@ -332,111 +330,6 @@ pub fn winsorize<T: Float + FromPrimitive>(samples: &mut [T], pct: T) {
332330
}
333331
}
334332

335-
/// Render writes the min, max and quartiles of the provided `Summary` to the provided `Writer`.
336-
pub fn write_5_number_summary<W: Writer, T: Float + fmt::Display + fmt::Debug>(w: &mut W,
337-
s: &Summary<T>) -> io::IoResult<()> {
338-
let (q1,q2,q3) = s.quartiles;
339-
write!(w, "(min={}, q1={}, med={}, q3={}, max={})",
340-
s.min,
341-
q1,
342-
q2,
343-
q3,
344-
s.max)
345-
}
346-
347-
/// Render a boxplot to the provided writer. The boxplot shows the min, max and quartiles of the
348-
/// provided `Summary` (thus includes the mean) and is scaled to display within the range of the
349-
/// nearest multiple-of-a-power-of-ten above and below the min and max of possible values, and
350-
/// target `width_hint` characters of display (though it will be wider if necessary).
351-
///
352-
/// As an example, the summary with 5-number-summary `(min=15, q1=17, med=20, q3=24, max=31)` might
353-
/// display as:
354-
///
355-
/// ```{.ignore}
356-
/// 10 | [--****#******----------] | 40
357-
/// ```
358-
pub fn write_boxplot<W: Writer, T: Float + fmt::Display + fmt::Debug + FromPrimitive>(
359-
w: &mut W,
360-
s: &Summary<T>,
361-
width_hint: uint)
362-
-> io::IoResult<()> {
363-
364-
let (q1,q2,q3) = s.quartiles;
365-
366-
// the .abs() handles the case where numbers are negative
367-
let ten: T = FromPrimitive::from_uint(10).unwrap();
368-
let lomag = ten.powf(s.min.abs().log10().floor());
369-
let himag = ten.powf(s.max.abs().log10().floor());
370-
371-
// need to consider when the limit is zero
372-
let zero: T = Float::zero();
373-
let lo = if lomag == Float::zero() {
374-
zero
375-
} else {
376-
(s.min / lomag).floor() * lomag
377-
};
378-
379-
let hi = if himag == Float::zero() {
380-
zero
381-
} else {
382-
(s.max / himag).ceil() * himag
383-
};
384-
385-
let range = hi - lo;
386-
387-
let lostr = lo.to_string();
388-
let histr = hi.to_string();
389-
390-
let overhead_width = lostr.len() + histr.len() + 4;
391-
let range_width = width_hint - overhead_width;
392-
let range_float = FromPrimitive::from_uint(range_width).unwrap();
393-
let char_step = range / range_float;
394-
395-
try!(write!(w, "{} |", lostr));
396-
397-
let mut c = 0;
398-
let mut v = lo;
399-
400-
while c < range_width && v < s.min {
401-
try!(write!(w, " "));
402-
v = v + char_step;
403-
c += 1;
404-
}
405-
try!(write!(w, "["));
406-
c += 1;
407-
while c < range_width && v < q1 {
408-
try!(write!(w, "-"));
409-
v = v + char_step;
410-
c += 1;
411-
}
412-
while c < range_width && v < q2 {
413-
try!(write!(w, "*"));
414-
v = v + char_step;
415-
c += 1;
416-
}
417-
try!(write!(w, "#"));
418-
c += 1;
419-
while c < range_width && v < q3 {
420-
try!(write!(w, "*"));
421-
v = v + char_step;
422-
c += 1;
423-
}
424-
while c < range_width && v < s.max {
425-
try!(write!(w, "-"));
426-
v = v + char_step;
427-
c += 1;
428-
}
429-
try!(write!(w, "]"));
430-
while c < range_width {
431-
try!(write!(w, " "));
432-
v = v + char_step;
433-
c += 1;
434-
}
435-
436-
try!(write!(w, "| {}", histr));
437-
Ok(())
438-
}
439-
440333
/// Returns a HashMap with the number of occurrences of every element in the
441334
/// sequence that the iterator exposes.
442335
pub fn freq_count<T, U>(mut iter: T) -> hash_map::HashMap<U, uint>
@@ -458,8 +351,6 @@ pub fn freq_count<T, U>(mut iter: T) -> hash_map::HashMap<U, uint>
458351
mod tests {
459352
use stats::Stats;
460353
use stats::Summary;
461-
use stats::write_5_number_summary;
462-
use stats::write_boxplot;
463354
use std::io;
464355
use std::f64;
465356

@@ -479,10 +370,6 @@ mod tests {
479370
let mut w = io::stdout();
480371
let w = &mut w;
481372
(write!(w, "\n")).unwrap();
482-
write_5_number_summary(w, &summ2).unwrap();
483-
(write!(w, "\n")).unwrap();
484-
write_boxplot(w, &summ2, 50).unwrap();
485-
(write!(w, "\n")).unwrap();
486373

487374
assert_eq!(summ.sum, summ2.sum);
488375
assert_eq!(summ.min, summ2.min);
@@ -1028,23 +915,6 @@ mod tests {
1028915
check(val, summ);
1029916
}
1030917

1031-
#[test]
1032-
fn test_boxplot_nonpositive() {
1033-
fn t(s: &Summary<f64>, expected: String) {
1034-
let mut m = Vec::new();
1035-
write_boxplot(&mut m, s, 30).unwrap();
1036-
let out = String::from_utf8(m).unwrap();
1037-
assert_eq!(out, expected);
1038-
}
1039-
1040-
t(&Summary::new(&[-2.0f64, -1.0f64]),
1041-
"-2 |[------******#*****---]| -1".to_string());
1042-
t(&Summary::new(&[0.0f64, 2.0f64]),
1043-
"0 |[-------*****#*******---]| 2".to_string());
1044-
t(&Summary::new(&[-2.0f64, 0.0f64]),
1045-
"-2 |[------******#******---]| 0".to_string());
1046-
1047-
}
1048918
#[test]
1049919
fn test_sum_f64s() {
1050920
assert_eq!([0.5f64, 3.2321f64, 1.5678f64].sum(), 5.2999);

0 commit comments

Comments
 (0)