1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
extern crate difference;
extern crate quickcheck;
use difference::{Changeset, Difference};
use quickcheck::{TestResult, quickcheck, QuickCheck};
use std::fmt;
const DEBUG: bool = false;
struct Check<'a> {
old: &'a str,
new: &'a str,
changeset: Changeset,
}
impl<'a> fmt::Display for Check<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"Changeset::new({:?}, {:?}, {:?}) -> [",
self.old,
self.new,
self.changeset.split
)?;
let mut iter = self.changeset.diffs.iter();
if let Some(d) = iter.next() {
write!(f, "{:?}", d)?;
}
for d in iter {
write!(f, " {:?}", d)?;
}
write!(f, "]")
}
}
fn check_changeset(old: &str, new: &str, split: &str) -> TestResult {
Check::new(old, new, split).check()
}
impl<'a> Check<'a> {
fn new(old: &'a str, new: &'a str, split: &'a str) -> Check<'a> {
Check {
old: old,
new: new,
changeset: Changeset::new(old, new, split),
}
}
fn check(&self) -> TestResult {
let split = &self.changeset.split;
let mut old: Vec<&str> = Vec::new();
let mut new: Vec<&str> = Vec::new();
for d in &self.changeset.diffs {
if DEBUG {
println!("assert `{:?}` (old: {:?}, new: {:?})", d, old, new);
}
match *d {
Difference::Same(ref x) => {
old.push(x);
new.push(x);
}
Difference::Add(ref x) => {
new.push(x);
}
Difference::Rem(ref x) => {
old.push(x);
}
}
}
let got_old = old.join(split);
let got_new = new.join(split);
if got_old != self.old {
return TestResult::error(format!("Diff output implies old=`{:?}`, not `{:?}` in {}",
got_old, self.old, self,
));
}
if got_new != self.new {
return TestResult::error(format!("Diff output implies new=`{:?}`, not `{:?}` in {}",
got_new, self.new, self,
));
}
TestResult::passed()
}
}
#[test]
fn simple() {
quickcheck(check_changeset("a", "a a", " "));
}
#[test]
fn issue_19() {
// https://github.com/johannhof/difference.rs/issues/19
quickcheck(check_changeset("a b : g", "b a : b b : g g", " "));
}
#[test]
#[allow(needless_pass_by_value)]
fn fuzzy() {
fn prop(old: Vec<usize>, new: Vec<usize>, words: Vec<char>) -> TestResult {
if words.is_empty() {
return TestResult::discard();
}
fn map_to_words(input: &[usize], words: &[char]) -> String {
input.iter().enumerate().fold(
String::new(),
|mut acc, (i, x)| {
if i > 0 {
acc.push(' ');
}
acc.push(words[x % words.len()]);
acc
},
)
}
let old = map_to_words(&old, &words);
let new = map_to_words(&new, &words);
check_changeset(&old, &new, " ")
}
QuickCheck::new()
.tests(100) // max successful tests
.max_tests(10_000) // max attempts
.quickcheck(prop as fn(Vec<usize>, Vec<usize>, Vec<char>) -> TestResult);
}
|