xrust 2.0.3

Support for XPath and XSLT
Documentation
/*

IBM test cases

*/

#[cfg(all(test, feature = "test-conformance-xml"))]
use std::fs;
#[cfg(all(test, feature = "test-conformance-xml"))]
use xrust::item::Node;
#[cfg(all(test, feature = "test-conformance-xml"))]
use xrust::parser::{ParseError, xml};
#[cfg(all(test, feature = "test-conformance-xml"))]
use xrust::trees::smite::RNode;

#[cfg(all(test, feature = "test-conformance-xml"))]
fn test_ibm11_invalid(xmldoc: &str) {
    let testxml = RNode::new_document();
    let parseresult = xml::parse(
        testxml,
        xmldoc,
        Some(|_: &_| Err(ParseError::MissingNameSpace)),
    );

    assert!(parseresult.is_err());
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn ibm11valid_p46ibm46i01xml() {
    /*
        Test ID:ibm-1-1-valid-P46-ibm46i01.xml
        Test URI:invalid/P46/ibm46i01.xml
        Spec Sections:3.2.1, 2.2
        Description:An element with Element-Only content contains the character #x85 (NEL not a whitespace character as defined by S).
    */
    test_ibm11_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/ibm/xml-1.1/invalid/P46/ibm46i01.xml")
            .unwrap()
            .as_str(),
    );
}

#[test]
#[ignore]
#[cfg(all(test, feature = "test-conformance-xml"))]
fn ibm11valid_p46ibm46i02xml() {
    /*
        Test ID:ibm-1-1-valid-P46-ibm46i02.xml
        Test URI:invalid/P46/ibm46i02.xml
        Spec Sections:3.2.1, 2.2
        Description:An element with Element-Only content contains the character #x2028 (LESP not a whitespace character as defined by S).
    */
    test_ibm11_invalid(
        fs::read_to_string("tests/conformance/xml/xmlconf/ibm/xml-1.1/invalid/P46/ibm46i02.xml")
            .unwrap()
            .as_str(),
    );
}