aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_text_edit/src
diff options
context:
space:
mode:
authorBernardo <[email protected]>2018-12-12 18:25:50 +0000
committerBernardo <[email protected]>2018-12-25 18:45:21 +0000
commitdee426e1b120cd12fc608df77f977d4800b6655d (patch)
treec236e76683d22ec0ffc514db6755419edd37b9a8 /crates/ra_text_edit/src
parent3d98744c2a929c35852d20b5724ef5b6be1e3312 (diff)
simplify and reduce number of values explored
Diffstat (limited to 'crates/ra_text_edit/src')
-rw-r--r--crates/ra_text_edit/src/test_utils.rs52
1 files changed, 23 insertions, 29 deletions
diff --git a/crates/ra_text_edit/src/test_utils.rs b/crates/ra_text_edit/src/test_utils.rs
index 92b79ab59..29301bff3 100644
--- a/crates/ra_text_edit/src/test_utils.rs
+++ b/crates/ra_text_edit/src/test_utils.rs
@@ -24,41 +24,35 @@ pub fn arb_offset(text: &str) -> BoxedStrategy<TextUnit> {
24} 24}
25 25
26pub fn arb_edits(text: &str) -> BoxedStrategy<Vec<AtomTextEdit>> { 26pub fn arb_edits(text: &str) -> BoxedStrategy<Vec<AtomTextEdit>> {
27 let offsets = text_offsets(text); 27 if text.is_empty() {
28 let offsets_len = offsets.len(); 28 // only valid edits
29 29 return Just(vec![])
30 if offsets_len == 0 { 30 .boxed()
31 return proptest::bool::ANY 31 .prop_union(
32 .prop_flat_map(|b| { 32 arb_text()
33 // only valid edits 33 .prop_map(|text| vec![AtomTextEdit::insert(TextUnit::from(0), text)])
34 if b { 34 .boxed(),
35 arb_text() 35 )
36 .prop_map(|text| vec![AtomTextEdit::insert(TextUnit::from(0), text)])
37 .boxed()
38 } else {
39 Just(vec![]).boxed()
40 }
41 })
42 .boxed(); 36 .boxed();
43 } 37 }
44 38
45 proptest::sample::subsequence(offsets, 0..offsets_len) 39 let offsets = text_offsets(text);
46 .prop_flat_map(|xs| { 40 let max_cuts = offsets.len().min(7);
47 let strategies: Vec<_> = xs 41
42 proptest::sample::subsequence(offsets, 0..max_cuts)
43 .prop_flat_map(|cuts| {
44 let strategies: Vec<_> = cuts
48 .chunks(2) 45 .chunks(2)
49 .map(|chunk| match chunk { 46 .map(|chunk| match chunk {
50 &[from, to] => { 47 &[from, to] => {
51 let range = TextRange::from_to(from, to); 48 let range = TextRange::from_to(from, to);
52 (proptest::bool::ANY) 49 Just(AtomTextEdit::delete(range))
53 .prop_flat_map(move |b| { 50 .boxed()
54 if b { 51 .prop_union(
55 Just(AtomTextEdit::delete(range)).boxed() 52 arb_text()
56 } else { 53 .prop_map(move |text| AtomTextEdit::replace(range, text))
57 arb_text() 54 .boxed(),
58 .prop_map(move |text| AtomTextEdit::replace(range, text)) 55 )
59 .boxed()
60 }
61 })
62 .boxed() 56 .boxed()
63 } 57 }
64 &[x] => arb_text() 58 &[x] => arb_text()
@@ -92,7 +86,7 @@ fn intersect(r1: TextRange, r2: TextRange) -> Option<TextRange> {
92} 86}
93 87
94proptest! { 88proptest! {
95#[test] 89 #[test]
96 fn atom_text_edits_are_valid((text, edits) in arb_text_with_edits()) { 90 fn atom_text_edits_are_valid((text, edits) in arb_text_with_edits()) {
97 proptest_atom_text_edits_are_valid(text, edits) 91 proptest_atom_text_edits_are_valid(text, edits)
98 } 92 }