| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- extern crate url;
- use std::ascii::AsciiExt;
- use std::char;
- use url::idna::domain_to_ascii_options;
- #[test]
- fn test_uts46() {
- // http://www.unicode.org/Public/idna/latest/IdnaTest.txt
- for line in include_str!("IdnaTest.txt").lines() {
- if line == "" || line.starts_with("#") {
- continue
- }
- // Remove comments
- let mut line = match line.find("#") {
- Some(index) => &line[0..index],
- None => line
- };
- let mut expected_failure = false;
- if line.starts_with("XFAIL") {
- expected_failure = true;
- line = &line[5..line.len()];
- };
- let mut pieces = line.split(';').map(|x| x.trim()).collect::<Vec<&str>>();
- let testType = pieces.remove(0);
- let original = pieces.remove(0);
- let source = unescape(original);
- let toUnicode = pieces.remove(0);
- let toAscii = pieces.remove(0);
- let nv8 = pieces.len() > 0;
- if expected_failure {
- continue;
- }
- let result = domain_to_ascii_options(&source, true, testType != "N");
- let res = result.ok();
- if toAscii.starts_with("[") {
- //assert!(res == None, "Expected error. result: {} | original: {} | source: {}", res.unwrap(), original, source);
- continue;
- }
- let toAscii = if toAscii.len() > 0 {
- toAscii.to_string()
- } else {
- if toUnicode.len() > 0 {
- toUnicode.to_string()
- } else {
- source.clone()
- }
- };
- assert!(res != None, "Couldn't parse {} ", source);
- let output = res.unwrap();
- assert!(output == toAscii.to_ascii_lowercase(), "result: {} | expected: {} | original: {} | source: {}", output, toAscii, original, source);
- }
- }
- fn unescape(input: &str) -> String {
- let mut output = String::new();
- let mut chars = input.chars();
- loop {
- match chars.next() {
- None => return output,
- Some(c) =>
- if c == '\\' {
- match chars.next().unwrap() {
- '\\' => output.push('\\'),
- 'u' => {
- let c1 = chars.next().unwrap().to_digit(16).unwrap();
- let c2 = chars.next().unwrap().to_digit(16).unwrap();
- let c3 = chars.next().unwrap().to_digit(16).unwrap();
- let c4 = chars.next().unwrap().to_digit(16).unwrap();
- match char::from_u32((((c1 * 16 + c2) * 16 + c3) * 16 + c4))
- {
- Some(c) => output.push(c),
- None => { output.push_str(&format!("\\u{:X}{:X}{:X}{:X}",c1,c2,c3,c4)); }
- };
- }
- _ => panic!("Invalid test data input"),
- }
- } else {
- output.push(c);
- }
- }
- }
- }
|