-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce Config
struct that holds parser configuration and implement #513
#677
Changes from 2 commits
47f3638
27cb615
d58c8bc
4176571
86ccc0a
7980448
475a883
8101e29
77af4b3
75b4028
3875bdb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
//! Contains tests for config options of a parser. | ||
//! | ||
//! Each module has a name of a corresponding option and functions inside performs | ||
//! testing of various option values. | ||
//! | ||
//! Please keep tests sorted (exceptions are allowed if options are tightly related). | ||
|
||
use quick_xml::events::{BytesCData, BytesEnd, BytesStart, BytesText, Event}; | ||
use quick_xml::reader::Reader; | ||
|
||
mod expand_empty_elements { | ||
use super::*; | ||
use pretty_assertions::assert_eq; | ||
|
||
/// Self-closed elements should be reported as one `Empty` event | ||
#[test] | ||
fn false_() { | ||
let mut reader = Reader::from_str("<root/>"); | ||
reader.expand_empty_elements(false); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Empty(BytesStart::new("root")) | ||
); | ||
assert_eq!(reader.read_event().unwrap(), Event::Eof); | ||
} | ||
|
||
/// Self-closed elements should be reported as two events | ||
#[test] | ||
fn true_() { | ||
let mut reader = Reader::from_str("<root/>"); | ||
reader.expand_empty_elements(true); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Start(BytesStart::new("root")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::End(BytesEnd::new("root")) | ||
); | ||
assert_eq!(reader.read_event().unwrap(), Event::Eof); | ||
} | ||
} | ||
|
||
const XML: &str = " \t\r\n\ | ||
<!doctype root \t\r\n> \t\r\n\ | ||
<root \t\r\n> \t\r\n\ | ||
<empty \t\r\n/> \t\r\n\ | ||
text \t\r\n\ | ||
<!-- comment \t\r\n--> \t\r\n\ | ||
<![CDATA[ \t\r\ncdata \t\r\n]]> \t\r\n\ | ||
<?pi \t\r\n?> \t\r\n\ | ||
</root> \t\r\n"; | ||
|
||
mod trim_text { | ||
use super::*; | ||
use pretty_assertions::assert_eq; | ||
|
||
#[test] | ||
fn false_() { | ||
let mut reader = Reader::from_str(XML); | ||
reader.trim_text(false); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new(" \t\r\n")) | ||
); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::DocType(BytesText::new("root \t\r\n")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new(" \t\r\n")) | ||
); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Start(BytesStart::from_content("root \t\r\n", 4)) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new(" \t\r\n")) | ||
); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Empty(BytesStart::from_content("empty \t\r\n", 5)) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new(" \t\r\ntext \t\r\n")) | ||
); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Comment(BytesText::new(" comment \t\r\n")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new(" \t\r\n")) | ||
); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::CData(BytesCData::new(" \t\r\ncdata \t\r\n")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new(" \t\r\n")) | ||
); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::PI(BytesText::new("pi \t\r\n")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new(" \t\r\n")) | ||
); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::End(BytesEnd::new("root")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new(" \t\r\n")) | ||
); | ||
|
||
assert_eq!(reader.read_event().unwrap(), Event::Eof); | ||
} | ||
|
||
#[test] | ||
fn true_() { | ||
let mut reader = Reader::from_str(XML); | ||
reader.trim_text(true); | ||
|
||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::DocType(BytesText::new("root \t\r\n")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Start(BytesStart::from_content("root \t\r\n", 4)) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Empty(BytesStart::from_content("empty \t\r\n", 5)) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Text(BytesText::new("text")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::Comment(BytesText::new(" comment \t\r\n")) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we have any reason to support trimming the text values of "comments"? I cannot immediately think of a reason to do that, but perhaps one exists. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think not, at least nobody request such feature. If such a request appears, we can add a separate option. Generally speaking, I would delete the current trim options as they simply do not work correctly for text alternating with CDATA / comments / processing instructions, but I suppose that would break many users. I was thinking about renaming current |
||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::CData(BytesCData::new(" \t\r\ncdata \t\r\n")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::PI(BytesText::new("pi \t\r\n")) | ||
); | ||
assert_eq!( | ||
reader.read_event().unwrap(), | ||
Event::End(BytesEnd::new("root")) | ||
); | ||
assert_eq!(reader.read_event().unwrap(), Event::Eof); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps "enabled" and "disabled" would be better names, to avoid keyword clashes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I chose those words because if we will have other options that are not booleans, tests would be named as a config value