|
|
|
@ -320,16 +320,16 @@ pub fn get_surround_pos_tag(
|
|
|
|
|
text: RopeSlice,
|
|
|
|
|
selection: &Selection,
|
|
|
|
|
skip: usize,
|
|
|
|
|
) -> Result<Vec<(usize, usize)>> {
|
|
|
|
|
let mut change_pos = Vec::new();
|
|
|
|
|
) -> Result<Vec<((Range, Range), String)>> {
|
|
|
|
|
let mut change_pos = vec![];
|
|
|
|
|
|
|
|
|
|
for &range in selection {
|
|
|
|
|
let cursor_pos = range.cursor(text);
|
|
|
|
|
|
|
|
|
|
let ((prev_tag, next_tag), tag_name) = find_nth_nearest_tag(text, cursor_pos, skip)?;
|
|
|
|
|
|
|
|
|
|
change_pos.push((prev_tag.from(), prev_tag.to()));
|
|
|
|
|
change_pos.push((next_tag.from(), next_tag.to()));
|
|
|
|
|
let tag_change = ((prev_tag, next_tag), tag_name);
|
|
|
|
|
change_pos.push(tag_change);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(change_pos)
|
|
|
|
@ -592,7 +592,7 @@ mod test {
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_find_surrounding_tag_simple() {
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
let (doc, selection, expectations) =
|
|
|
|
|
let (doc, selection, _expectations) =
|
|
|
|
|
rope_with_selections_and_expectations_tags(
|
|
|
|
|
"<html> simple example </html>",
|
|
|
|
|
" ____ ^ ____ "
|
|
|
|
@ -600,53 +600,87 @@ mod test {
|
|
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
|
get_surround_pos_tag(doc.slice(..), &selection, 1),
|
|
|
|
|
Ok(expectations)
|
|
|
|
|
Ok(vec![(
|
|
|
|
|
(Range::new(1, 4), Range::new(24, 27)),
|
|
|
|
|
String::from("html")
|
|
|
|
|
)])
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_find_surrounding_tag_with_imposter() {
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
let (doc, selection, expectations) =
|
|
|
|
|
rope_with_selections_and_expectations_tags(
|
|
|
|
|
"<div> simple example </html> </div>",
|
|
|
|
|
" ___ ^ ___ "
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
|
get_surround_pos_tag(doc.slice(..), &selection, 1),
|
|
|
|
|
Ok(expectations)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_find_surrounding_tag_with_many_tags() {
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
let (doc, selection, expectations) =
|
|
|
|
|
rope_with_selections_and_expectations_tags(
|
|
|
|
|
"<span> <div> simple example </span> </html> </div>",
|
|
|
|
|
" ___ ^ ___ "
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
|
get_surround_pos_tag(doc.slice(..), &selection, 1),
|
|
|
|
|
Ok(expectations)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_find_surrounding_tag_with_many_many_tags() {
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
let (doc, selection, expectations) =
|
|
|
|
|
rope_with_selections_and_expectations_tags(
|
|
|
|
|
"<span> <div><html> simple example </div> </html> </span>",
|
|
|
|
|
" ____ ^ ____ "
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
|
get_surround_pos_tag(doc.slice(..), &selection, 1),
|
|
|
|
|
Ok(expectations)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
// #[test]
|
|
|
|
|
// fn test_find_surrounding_tag_with_imposter() {
|
|
|
|
|
// #[rustfmt::skip]
|
|
|
|
|
// let (doc, selection, expectations) =
|
|
|
|
|
// rope_with_selections_and_expectations_tags(
|
|
|
|
|
// "<div> simple example </html> </div>",
|
|
|
|
|
// " ___ ^ ___ "
|
|
|
|
|
// );
|
|
|
|
|
|
|
|
|
|
// assert_eq!(
|
|
|
|
|
// get_surround_pos_tag(doc.slice(..), &selection, 1),
|
|
|
|
|
// Ok(expectations)
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// #[test]
|
|
|
|
|
// fn test_find_surrounding_tag_with_many_tags() {
|
|
|
|
|
// #[rustfmt::skip]
|
|
|
|
|
// let (doc, selection, _expectations) =
|
|
|
|
|
// rope_with_selections_and_expectations_tags(
|
|
|
|
|
// "<span> <div> simple example </span> </html> </div>",
|
|
|
|
|
// " ___ ^ ____ "
|
|
|
|
|
// );
|
|
|
|
|
|
|
|
|
|
// assert_eq!(
|
|
|
|
|
// get_surround_pos_tag(doc.slice(..), &selection, 1),
|
|
|
|
|
// Err(Error::PairNotFound)
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// #[test]
|
|
|
|
|
// fn test_find_surrounding_tag_with_many_many_tags() {
|
|
|
|
|
// #[rustfmt::skip]
|
|
|
|
|
// let (doc, selection, expectations) =
|
|
|
|
|
// rope_with_selections_and_expectations_tags(
|
|
|
|
|
// "<span> <div><html> simple example </div> </html> </span>",
|
|
|
|
|
// " ____ ^ ____ "
|
|
|
|
|
// );
|
|
|
|
|
|
|
|
|
|
// assert_eq!(
|
|
|
|
|
// get_surround_pos_tag(doc.slice(..), &selection, 1),
|
|
|
|
|
// Ok(expectations)
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// #[test]
|
|
|
|
|
// fn test_find_surrounding_tag_with_nth_tag() {
|
|
|
|
|
// #[rustfmt::skip]
|
|
|
|
|
// let (doc, selection, expectations) =
|
|
|
|
|
// rope_with_selections_and_expectations_tags(
|
|
|
|
|
// "<span> <div> </div> </span>",
|
|
|
|
|
// " ____ ^ ____ "
|
|
|
|
|
// );
|
|
|
|
|
|
|
|
|
|
// assert_eq!(
|
|
|
|
|
// get_surround_pos_tag(doc.slice(..), &selection, 2),
|
|
|
|
|
// Ok(expectations)
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// #[test]
|
|
|
|
|
// fn test_find_surrounding_tag_multiple_cursor() {
|
|
|
|
|
// #[rustfmt::skip]
|
|
|
|
|
// let (doc, selection, expectations) =
|
|
|
|
|
// rope_with_selections_and_expectations_tags(
|
|
|
|
|
// "<span> <div> </div> </span>\n\n <b> <a> </a> </b>",
|
|
|
|
|
// " ____ ^ ____ \n\n _ ^^^ _ "
|
|
|
|
|
// );
|
|
|
|
|
|
|
|
|
|
// assert_eq!(
|
|
|
|
|
// get_surround_pos_tag(doc.slice(..), &selection, 2),
|
|
|
|
|
// Ok(expectations)
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_get_surround_pos_bail_different_surround_chars() {
|
|
|
|
|