mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
952309c8d6
These are similar to the tests backported to the 2.x branch in https://github.com/clap-rs/clap/pull/1907. These are more comprehensive, because the OsStr splitting methods are more robust now.
169 lines
5.3 KiB
Rust
169 lines
5.3 KiB
Rust
//! 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""));
|
|
}
|