-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add tests for invalid UTF-16 on Windows
These are similar to the tests backported to the 2.x branch in #1907. These are more comprehensive, because the OsStr splitting methods are more robust now.
- Loading branch information
1 parent
5239d2c
commit 952309c
Showing
1 changed file
with
169 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
//! These Windows-only tests are ported from the Unix-only tests in | ||
//! tests/utf16.rs. The tests that use StrictUtf8 mode are omitted here, | ||
//! because that's a Unix-only feature. | ||
#![cfg(windows)] | ||
|
||
use clap::{App, Arg}; | ||
use std::ffi::OsString; | ||
use std::os::windows::ffi::OsStringExt; | ||
|
||
// Take a slice of ASCII bytes, convert them to UTF-16, and then append a | ||
// dangling surrogate character to make the result invalid UTF-16. | ||
fn bad_osstring(ascii: &[u8]) -> OsString { | ||
let mut wide_chars: Vec<u16> = ascii.iter().map(|&c| c as u16).collect(); | ||
// UTF-16 surrogate characters are only valid in pairs. | ||
let surrogate_char: u16 = 0xDC00; | ||
wide_chars.push(surrogate_char); | ||
let os = OsString::from_wide(&wide_chars); | ||
assert!(os.to_str().is_none(), "invalid Unicode"); | ||
os | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_lossy_positional() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("<arg> 'some arg'")) | ||
.try_get_matches_from(vec![OsString::from(""), bad_osstring(b"")]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_lossy("arg").unwrap(), "\u{FFFD}"); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_lossy_option_short_space() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![ | ||
OsString::from(""), | ||
OsString::from("-a"), | ||
bad_osstring(b""), | ||
]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_lossy("arg").unwrap(), "\u{FFFD}"); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_lossy_option_short_equals() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![OsString::from(""), bad_osstring(b"-a=")]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_lossy("arg").unwrap(), "\u{FFFD}"); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_lossy_option_short_no_space() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![OsString::from(""), bad_osstring(b"-a")]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_lossy("arg").unwrap(), "\u{FFFD}"); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_lossy_option_long_space() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![ | ||
OsString::from(""), | ||
OsString::from("--arg"), | ||
bad_osstring(b""), | ||
]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_lossy("arg").unwrap(), "\u{FFFD}"); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_lossy_option_long_equals() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![OsString::from(""), bad_osstring(b"--arg=")]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_lossy("arg").unwrap(), "\u{FFFD}"); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_positional() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("<arg> 'some arg'")) | ||
.try_get_matches_from(vec![OsString::from(""), bad_osstring(b"")]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_os("arg").unwrap(), &*bad_osstring(b"")); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_option_short_space() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![ | ||
OsString::from(""), | ||
OsString::from("-a"), | ||
bad_osstring(b""), | ||
]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_os("arg").unwrap(), &*bad_osstring(b"")); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_option_short_equals() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![OsString::from(""), bad_osstring(b"-a=")]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_os("arg").unwrap(), &*bad_osstring(b"")); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_option_short_no_space() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![OsString::from(""), bad_osstring(b"-a")]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_os("arg").unwrap(), &*bad_osstring(b"")); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_option_long_space() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![ | ||
OsString::from(""), | ||
OsString::from("--arg"), | ||
bad_osstring(b""), | ||
]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_os("arg").unwrap(), &*bad_osstring(b"")); | ||
} | ||
|
||
#[test] | ||
fn invalid_utf16_option_long_equals() { | ||
let r = App::new("bad_utf16") | ||
.arg(Arg::from("-a, --arg <arg> 'some arg'")) | ||
.try_get_matches_from(vec![OsString::from(""), bad_osstring(b"--arg=")]); | ||
assert!(r.is_ok()); | ||
let m = r.unwrap(); | ||
assert!(m.is_present("arg")); | ||
assert_eq!(&*m.value_of_os("arg").unwrap(), &*bad_osstring(b"")); | ||
} |