aboutsummaryrefslogtreecommitdiff
path: root/crates/test_utils/src
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-10-31 19:34:31 +0000
committerAleksey Kladov <[email protected]>2018-10-31 19:35:01 +0000
commitdfba29e4fb66457d101db295e3c356a932ac005e (patch)
tree57907040a40ce65a6ed2377469204a6c79bb645e /crates/test_utils/src
parent41adf1bc4f8b88139afd550209c0be612c10ffa8 (diff)
Add MockAnalysis to make testing easier
Diffstat (limited to 'crates/test_utils/src')
-rw-r--r--crates/test_utils/src/lib.rs26
1 files changed, 21 insertions, 5 deletions
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs
index 562dbcbb3..8980f077f 100644
--- a/crates/test_utils/src/lib.rs
+++ b/crates/test_utils/src/lib.rs
@@ -8,6 +8,8 @@ use text_unit::{TextRange, TextUnit};
8 8
9pub use self::difference::Changeset as __Changeset; 9pub use self::difference::Changeset as __Changeset;
10 10
11pub const CURSOR_MARKER: &str = "<|>";
12
11#[macro_export] 13#[macro_export]
12macro_rules! assert_eq_text { 14macro_rules! assert_eq_text {
13 ($expected:expr, $actual:expr) => {{ 15 ($expected:expr, $actual:expr) => {{
@@ -45,11 +47,10 @@ pub fn extract_offset(text: &str) -> (TextUnit, String) {
45} 47}
46 48
47pub fn try_extract_offset(text: &str) -> Option<(TextUnit, String)> { 49pub fn try_extract_offset(text: &str) -> Option<(TextUnit, String)> {
48 let cursor = "<|>"; 50 let cursor_pos = text.find(CURSOR_MARKER)?;
49 let cursor_pos = text.find(cursor)?; 51 let mut new_text = String::with_capacity(text.len() - CURSOR_MARKER.len());
50 let mut new_text = String::with_capacity(text.len() - cursor.len());
51 new_text.push_str(&text[..cursor_pos]); 52 new_text.push_str(&text[..cursor_pos]);
52 new_text.push_str(&text[cursor_pos + cursor.len()..]); 53 new_text.push_str(&text[cursor_pos + CURSOR_MARKER.len()..]);
53 let cursor_pos = TextUnit::from(cursor_pos as u32); 54 let cursor_pos = TextUnit::from(cursor_pos as u32);
54 Some((cursor_pos, new_text)) 55 Some((cursor_pos, new_text))
55} 56}
@@ -116,7 +117,22 @@ pub fn parse_fixture(fixture: &str) -> Vec<FixtureEntry> {
116 } 117 }
117 }; 118 };
118 }; 119 };
119 for line in fixture.lines() { 120 let margin = fixture.lines()
121 .filter(|it| it.trim_start().starts_with("//-"))
122 .map(|it| it.len() - it.trim_start().len())
123 .next().expect("empty fixture");
124 let lines = fixture.lines()
125 .filter_map(|line| {
126 if line.len() >= margin {
127 assert!(line[..margin].trim().is_empty());
128 Some(&line[margin..])
129 } else {
130 assert!(line.trim().is_empty());
131 None
132 }
133 });
134
135 for line in lines {
120 if line.starts_with("//-") { 136 if line.starts_with("//-") {
121 flush!(); 137 flush!();
122 buf.clear(); 138 buf.clear();