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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
pub use select::document::Document;
pub use select::selection::*;
use speculate::speculate;
speculate! {
describe "selection" {
test "Iter" {
let document = Document::from("<html><head></head><body>\
<article id='post-0' class='post category-foo tag-bar'></article>\
</body></html>");
let selection = Selection::new(&document,
[0, 2, 3].iter().cloned().collect());
let mut iter = selection.iter();
let html = iter.next().unwrap();
let body = iter.next().unwrap();
let article = iter.next().unwrap();
assert_eq!(iter.next(), None);
assert_eq!(html.name(), Some("html"));
assert_eq!(body.name(), Some("body"));
assert_eq!(article.attr("id"), Some("post-0"));
}
test "Selection::filter()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
let all = document.find(Any).into_selection();
assert_eq!(all.filter(Any).len(), 11446);
let divs = all.filter(Name("div"));
assert_eq!(divs.len(), 208);
for div in &divs {
assert_eq!(div.name(), Some("div"))
}
assert_eq!(all.filter(Attr("id", "main")).len(), 1);
let structs = all.filter(Class("struct"));
assert_eq!(structs.len(), 168);
for struct_ in &structs {
assert!(struct_.attr("class").unwrap().contains("struct"))
};
}
test "Selection::find()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
let all = document.find(Any).into_selection();
let struct_divs = all.find(Class("struct")).find(Name("div"));
assert_eq!(struct_divs.len(), 204);
for struct_div in &struct_divs {
assert_eq!(struct_div.name(), Some("div"));
};
let struct_as = all.find(Class("struct")).find(Name("a"));
assert_eq!(struct_as.len(), 1260);
for struct_a in &struct_as {
assert_eq!(struct_a.name(), Some("a"));
};
}
test "Selection::parent()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
assert_eq!(document.find(Name("div")).into_selection().parent().len(), 8);
assert_eq!(document.find(Name("span")).into_selection().parent().len(), 205);
}
test "Selection::prev() / Selection::next()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
assert_eq!(document.find(Name("div")).into_selection().prev().len(), 208);
assert_eq!(document.find(Name("div")).into_selection().next().len(), 203);
assert_eq!(document.find(Name("span")).into_selection().prev().len(), 1729);
assert_eq!(document.find(Name("span")).into_selection().next().len(), 1690);
}
test "Selection::parents()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
assert_eq!(document.find(Name("div")).into_selection().parents().len(), 10);
assert_eq!(document.find(Name("span")).into_selection().parents().len(), 308);
}
test "Selection::children()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
let div_children = document.find(Name("div")).into_selection().children();
assert_eq!(div_children.len(), 1210);
for div_child in &div_children {
assert_eq!(div_child.parent().unwrap().name(), Some("div"));
}
let span_children = document.find(Name("span")).into_selection().children();
assert_eq!(span_children.len(), 1986);
for span_child in &span_children {
assert_eq!(span_child.parent().unwrap().name(), Some("span"));
};
}
test "Selection::first()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
assert!(document.find(Name("div")).into_selection().first().is_some());
assert!(document.find(Name("divv")).into_selection().first().is_none());
}
test "Selection::last()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
assert!(document.find(Name("div")).into_selection().last().is_some());
assert!(document.find(Name("divv")).into_selection().last().is_none());
}
test "Selection::len() == Selection::iter().count()" {
use select::predicate::*;
let document = Document::from(include_str!("fixtures/struct.Vec.html"));
fn check<P: Predicate>(document: &Document, predicate: P) {
let selection = document.find(predicate).into_selection();
assert_eq!(selection.len(), selection.iter().count());
}
check(&document, Any);
check(&document, Attr("id", "main"));
check(&document, Class("struct"));
check(&document, Name("div"));
check(&document, Name("span"));
}
test "Iter (lifetimes)" {
let document = Document::from("<html><head></head><body>\
<article id='post-0' class='post category-foo tag-bar'></article>\
</body></html>");
let html = {
let selection = Selection::new(&document,
[0, 2, 3].iter().cloned().collect());
selection.iter().next().unwrap()
};
assert_eq!(html.name(), Some("html"));
}
}
}
|