coreutils/tests/by-util/test_printf.rs

780 lines
16 KiB
Rust
Raw Normal View History

2023-08-21 08:49:27 +00:00
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
2023-03-20 13:51:19 +00:00
use crate::common::util::TestScenario;
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn basic_literal() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello world"])
.succeeds()
.stdout_only("hello world");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn escaped_tab() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello\\t world"])
.succeeds()
.stdout_only("hello\t world");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn escaped_newline() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello\\n world"])
.succeeds()
.stdout_only("hello\n world");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn escaped_slash() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello\\\\ world"])
.succeeds()
.stdout_only("hello\\ world");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn unescaped_double_quote() {
new_ucmd!().args(&["\\\""]).succeeds().stdout_only("\"");
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn escaped_hex() {
new_ucmd!().args(&["\\x41"]).succeeds().stdout_only("A");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn escaped_octal() {
new_ucmd!().args(&["\\101"]).succeeds().stdout_only("A");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn escaped_unicode_four_digit() {
new_ucmd!().args(&["\\u0125"]).succeeds().stdout_only("ĥ");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn escaped_unicode_eight_digit() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["\\U00000125"])
.succeeds()
.stdout_only("ĥ");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn escaped_percent_sign() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello%% world"])
.succeeds()
.stdout_only("hello% world");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn escaped_unrecognized() {
new_ucmd!().args(&["c\\d"]).succeeds().stdout_only("c\\d");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_string() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello %s", "world"])
.succeeds()
.stdout_only("hello world");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_multi_field() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%s %s", "hello", "world"])
.succeeds()
.stdout_only("hello world");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_repeat_format_str() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%s.", "hello", "world"])
.succeeds()
.stdout_only("hello.world.");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_string_ignore_escapes() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello %s", "\\tworld"])
.succeeds()
.stdout_only("hello \\tworld");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_b_string_handle_escapes() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello %b", "\\tworld"])
.succeeds()
.stdout_only("hello \tworld");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
2023-11-09 02:18:27 +00:00
#[test]
fn sub_b_string_validate_field_params() {
new_ucmd!()
.args(&["hello %7b", "world"])
.run()
.stdout_is("hello ")
.stderr_is("printf: %7b: invalid conversion specification\n");
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_b_string_ignore_subs() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello %b", "world %% %i"])
.succeeds()
.stdout_only("hello world %% %i");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
2023-11-09 02:18:27 +00:00
#[test]
fn sub_q_string_non_printable() {
new_ucmd!()
.args(&["non-printable: %q", "\"$test\""])
.succeeds()
.stdout_only("non-printable: '\"$test\"'");
}
#[test]
fn sub_q_string_validate_field_params() {
new_ucmd!()
.args(&["hello %7q", "world"])
.run()
.stdout_is("hello ")
.stderr_is("printf: %7q: invalid conversion specification\n");
}
#[test]
fn sub_q_string_special_non_printable() {
new_ucmd!()
.args(&["non-printable: %q", "test~"])
.succeeds()
.stdout_only("non-printable: test~");
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_char() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["the letter %c", "A"])
.succeeds()
.stdout_only("the letter A");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_char_from_string() {
new_ucmd!()
.args(&["%c%c%c", "five", "%", "oval"])
.succeeds()
.stdout_only("f%o");
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_int() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty is %i", "20"])
.succeeds()
.stdout_only("twenty is 20");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_num_int_min_width() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty is %1i", "20"])
.succeeds()
.stdout_only("twenty is 20");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_int_neg() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["neg. twenty is %i", "-20"])
.succeeds()
.stdout_only("neg. twenty is -20");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_int_oct_in() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty is %i", "024"])
.succeeds()
.stdout_only("twenty is 20");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_int_oct_in_neg() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["neg. twenty is %i", "-024"])
.succeeds()
.stdout_only("neg. twenty is -20");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_int_hex_in() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty is %i", "0x14"])
.succeeds()
.stdout_only("twenty is 20");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_int_hex_in_neg() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["neg. twenty is %i", "-0x14"])
.succeeds()
.stdout_only("neg. twenty is -20");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_num_int_char_const_in() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["ninety seven is %i", "'a"])
2020-04-13 18:36:03 +00:00
.succeeds()
.stdout_only("ninety seven is 97");
2023-11-17 13:47:08 +00:00
new_ucmd!()
.args(&["emoji is %i", "'🙃"])
.succeeds()
.stdout_only("emoji is 128579");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_uint() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty is %u", "20"])
.succeeds()
.stdout_only("twenty is 20");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_octal() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty in octal is %o", "20"])
.succeeds()
.stdout_only("twenty in octal is 24");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_hex_lower() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["thirty in hex is %x", "30"])
.succeeds()
.stdout_only("thirty in hex is 1e");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_hex_upper() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["thirty in hex is %X", "30"])
.succeeds()
.stdout_only("thirty in hex is 1E");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_num_hex_non_numerical() {
new_ucmd!()
.args(&["parameters need to be numbers %X", "%194"])
.fails()
.code_is(1);
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_float() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty is %f", "20"])
.succeeds()
.stdout_only("twenty is 20.000000");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_num_float_e_round() {
new_ucmd!()
.args(&["%e", "99999999"])
.succeeds()
.stdout_only("1.000000e+08");
}
#[test]
fn sub_num_float_e_no_round() {
new_ucmd!()
.args(&["%e", "99999994"])
.succeeds()
.stdout_only("9.999999e+07");
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_num_float_round_to_one() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["one is %f", "0.9999995"])
.succeeds()
.stdout_only("one is 1.000000");
}
#[test]
#[ignore = "Requires 'long double' precision floats to be used internally"]
fn sub_num_float_round_to_two() {
new_ucmd!()
.args(&["two is %f", "1.9999995"])
2020-04-13 18:36:03 +00:00
.succeeds()
.stdout_only("two is 2.000000");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_num_float_round_nines_dec() {
new_ucmd!()
.args(&["%f", "0.99999999"])
.succeeds()
.stdout_only("1.000000");
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_sci_lower() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty is %e", "20"])
.succeeds()
.stdout_only("twenty is 2.000000e+01");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_sci_upper() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["twenty is %E", "20"])
.succeeds()
.stdout_only("twenty is 2.000000E+01");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_sci_trunc() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["pi is ~ %e", "3.1415926535"])
.succeeds()
.stdout_only("pi is ~ 3.141593e+00");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_num_dec_trunc() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["pi is ~ %g", "3.1415926535"])
.succeeds()
.stdout_only("pi is ~ 3.14159");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
2020-04-13 18:36:03 +00:00
#[cfg_attr(not(feature = "test_unimplemented"), ignore)]
#[test]
fn sub_num_hex_float_lower() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%a", ".875"])
.succeeds()
.stdout_only("0xep-4");
}
2020-04-13 18:36:03 +00:00
#[cfg_attr(not(feature = "test_unimplemented"), ignore)]
#[test]
fn sub_num_hex_float_upper() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%A", ".875"])
.succeeds()
.stdout_only("0XEP-4");
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_min_width() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello %7s", "world"])
.succeeds()
.stdout_only("hello world");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_min_width_negative() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello %-7s", "world"])
.succeeds()
.stdout_only("hello world ");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_str_max_chars_input() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["hello %7.2s", "world"])
.succeeds()
.stdout_only("hello wo");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_int_decimal() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%0.i", "11"])
.succeeds()
.stdout_only("11");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_int_leading_zeroes() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%.4i", "11"])
.succeeds()
.stdout_only("0011");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_int_leading_zeroes_padded() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%5.4i", "11"])
.succeeds()
.stdout_only(" 0011");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_float_dec_places() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["pi is ~ %.11f", "3.1415926535"])
.succeeds()
.stdout_only("pi is ~ 3.14159265350");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_float_hex_in() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%f", "0xF1.1F"])
.succeeds()
.stdout_only("241.121094");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_float_no_octal_in() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%f", "077"])
.succeeds()
.stdout_only("77.000000");
2016-02-15 05:47:02 +00:00
}
2015-12-24 06:11:00 +00:00
#[test]
fn sub_any_asterisk_first_param() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%*i", "3", "11", "4", "12"])
.succeeds()
.stdout_only(" 11 12");
2015-12-24 06:11:00 +00:00
}
#[test]
2016-02-15 05:47:02 +00:00
fn sub_any_asterisk_second_param() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%.*i", "3", "11", "4", "12"])
.succeeds()
.stdout_only("0110012");
2015-12-24 06:11:00 +00:00
}
#[test]
2016-02-15 05:47:02 +00:00
fn sub_any_asterisk_both_params() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%*.*i", "4", "3", "11", "5", "4", "12"])
.succeeds()
.stdout_only(" 011 0012");
2015-12-24 06:11:00 +00:00
}
#[test]
2016-02-15 05:47:02 +00:00
fn sub_any_asterisk_octal_arg() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%.*i", "011", "12345678"])
.succeeds()
.stdout_only("012345678");
2015-12-24 06:11:00 +00:00
}
#[test]
2016-02-15 05:47:02 +00:00
fn sub_any_asterisk_hex_arg() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
.args(&["%.*i", "0xA", "123456789"])
.succeeds()
.stdout_only("0123456789");
2015-12-24 06:11:00 +00:00
}
#[test]
2016-02-15 05:47:02 +00:00
fn sub_any_specifiers_no_params() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
2021-05-31 03:55:28 +00:00
.args(&["%ztlhLji", "3"]) //spell-checker:disable-line
2020-04-13 18:36:03 +00:00
.succeeds()
.stdout_only("3");
2015-12-24 06:11:00 +00:00
}
#[test]
2016-02-15 05:47:02 +00:00
fn sub_any_specifiers_after_first_param() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
2021-05-31 03:55:28 +00:00
.args(&["%0ztlhLji", "3"]) //spell-checker:disable-line
2020-04-13 18:36:03 +00:00
.succeeds()
.stdout_only("3");
2015-12-24 06:11:00 +00:00
}
#[test]
2016-02-15 05:47:02 +00:00
fn sub_any_specifiers_after_period() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
2021-05-31 03:55:28 +00:00
.args(&["%0.ztlhLji", "3"]) //spell-checker:disable-line
2020-04-13 18:36:03 +00:00
.succeeds()
.stdout_only("3");
2015-12-24 06:11:00 +00:00
}
#[test]
fn unspecified_left_justify_is_1_width() {
new_ucmd!()
.args(&["%-o"]) //spell-checker:disable-line
.succeeds()
.stdout_only("0");
}
2015-12-24 06:11:00 +00:00
#[test]
2016-02-15 05:47:02 +00:00
fn sub_any_specifiers_after_second_param() {
2020-04-13 18:36:03 +00:00
new_ucmd!()
2021-05-31 03:55:28 +00:00
.args(&["%0.0ztlhLji", "3"]) //spell-checker:disable-line
2020-04-13 18:36:03 +00:00
.succeeds()
.stdout_only("3");
2015-12-24 06:11:00 +00:00
}
#[test]
fn stop_after_additional_escape() {
new_ucmd!()
.args(&["A%sC\\cD%sF", "B", "E"]) //spell-checker:disable-line
.succeeds()
.stdout_only("ABC");
}
#[test]
fn sub_float_leading_zeroes() {
new_ucmd!()
.args(&["%010f", "1"])
.succeeds()
.stdout_only("001.000000");
}
#[test]
fn sub_general_float() {
new_ucmd!()
.args(&["%g", "1.1"])
.succeeds()
.stdout_only("1.1");
}
#[test]
fn sub_general_truncate_to_integer() {
2022-02-07 07:57:54 +00:00
new_ucmd!().args(&["%g", "1.0"]).succeeds().stdout_only("1");
}
#[test]
2022-02-06 22:52:20 +00:00
fn sub_general_scientific_notation() {
new_ucmd!()
2022-02-06 22:52:20 +00:00
.args(&["%g", "1000010"])
.succeeds()
2022-02-06 22:52:20 +00:00
.stdout_only("1.00001e+06");
}
#[test]
fn sub_general_round_scientific_notation() {
new_ucmd!()
.args(&["%g", "123456789"])
.succeeds()
.stdout_only("1.23457e+08");
}
#[test]
fn sub_general_round_float() {
new_ucmd!()
.args(&["%g", "12345.6789"])
.succeeds()
.stdout_only("12345.7");
}
#[test]
fn sub_general_round_float_to_integer() {
new_ucmd!()
.args(&["%g", "123456.7"])
.succeeds()
.stdout_only("123457");
}
2022-03-19 21:47:14 +00:00
#[test]
fn sub_general_round_float_leading_zeroes() {
new_ucmd!()
.args(&["%g", "1.000009"])
.succeeds()
.stdout_only("1.00001");
}
#[test]
fn partial_float() {
new_ucmd!()
.args(&["%.2f is %s", "42.03x", "a lot"])
.fails()
.code_is(1)
.stdout_is("42.03 is a lot")
.stderr_is("printf: '42.03x': value not completely converted\n");
}
#[test]
fn partial_integer() {
new_ucmd!()
.args(&["%d is %s", "42x23", "a lot"])
.fails()
.code_is(1)
.stdout_is("42 is a lot")
.stderr_is("printf: '42x23': value not completely converted\n");
}
#[test]
fn test_overflow() {
new_ucmd!()
.args(&["%d", "36893488147419103232"])
.fails()
.code_is(1)
.stderr_is("printf: '36893488147419103232': Numerical result out of range\n");
}
#[test]
fn partial_char() {
new_ucmd!()
.args(&["%d", "'abc"])
.fails()
.code_is(1)
.stdout_is("97")
.stderr_is(
"printf: warning: bc: character(s) following character constant have been ignored\n",
);
}
#[test]
fn sub_alternative_lower_hex_0() {
new_ucmd!().args(&["%#x", "0"]).succeeds().stdout_only("0");
}
#[test]
fn sub_alternative_lower_hex() {
new_ucmd!()
.args(&["%#x", "42"])
.succeeds()
.stdout_only("0x2a");
}
#[test]
fn sub_alternative_upper_hex_0() {
new_ucmd!().args(&["%#X", "0"]).succeeds().stdout_only("0");
}
#[test]
fn sub_alternative_upper_hex() {
new_ucmd!()
.args(&["%#X", "42"])
.succeeds()
.stdout_only("0X2A");
}
#[test]
fn char_as_byte() {
new_ucmd!()
.args(&["%c", "🙃"])
.succeeds()
.no_stderr()
.stdout_is_bytes(b"\xf0");
}
2024-01-12 10:38:47 +00:00
#[test]
fn no_infinite_loop() {
new_ucmd!().args(&["a", "b"]).succeeds().stdout_only("a");
}
#[test]
fn pad_octal_with_prefix() {
new_ucmd!()
.args(&[">%#15.6o<", "0"])
.succeeds()
.stdout_only("> 000000<");
new_ucmd!()
.args(&[">%#15.6o<", "01"])
.succeeds()
.stdout_only("> 000001<");
new_ucmd!()
.args(&[">%#15.6o<", "01234"])
.succeeds()
.stdout_only("> 001234<");
new_ucmd!()
.args(&[">%#15.6o<", "012345"])
.succeeds()
.stdout_only("> 012345<");
new_ucmd!()
.args(&[">%#15.6o<", "0123456"])
.succeeds()
.stdout_only("> 0123456<");
}
#[test]
fn pad_unsigned_zeroes() {
for format in ["%.3u", "%.3x", "%.3X", "%.3o"] {
new_ucmd!()
.args(&[format, "0"])
.succeeds()
.stdout_only("000");
}
}
#[test]
fn pad_unsigned_three() {
for (format, expected) in [
("%.3u", "003"),
("%.3x", "003"),
("%.3X", "003"),
("%.3o", "003"),
("%#.3x", "0x003"),
("%#.3X", "0X003"),
("%#.3o", "003"),
] {
new_ucmd!()
.args(&[format, "3"])
.succeeds()
.stdout_only(expected);
}
}
#[test]
fn pad_char() {
for (format, expected) in [("%3c", " X"), ("%1c", "X"), ("%-1c", "X"), ("%-3c", "X ")] {
new_ucmd!()
.args(&[format, "X"])
.succeeds()
.stdout_only(expected);
}
}
#[test]
fn pad_string() {
for (format, expected) in [
("%8s", " bottle"),
("%-8s", "bottle "),
("%6s", "bottle"),
("%-6s", "bottle"),
] {
new_ucmd!()
.args(&[format, "bottle"])
.succeeds()
.stdout_only(expected);
}
}
#[test]
fn format_spec_zero_char_fails() {
// It is invalid to have the format spec '%0c'
new_ucmd!().args(&["%0c", "3"]).fails().code_is(1);
}
#[test]
fn format_spec_zero_string_fails() {
// It is invalid to have the format spec '%0s'
new_ucmd!().args(&["%0s", "3"]).fails().code_is(1);
}