1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

wc: make --files0-from work with streams

This commit is contained in:
Jed Denlea 2023-03-31 23:57:53 -07:00
parent d58ee5a28a
commit c4b53a44b5
3 changed files with 315 additions and 156 deletions

View file

@ -28,6 +28,7 @@ impl WordCountable for StdinLock<'_> {
self self
} }
} }
impl WordCountable for File { impl WordCountable for File {
type Buffered = BufReader<Self>; type Buffered = BufReader<Self>;

View file

@ -13,11 +13,12 @@ mod utf8;
mod word_count; mod word_count;
use std::{ use std::{
borrow::Cow, borrow::{Borrow, Cow},
cmp::max, cmp::max,
ffi::{OsStr, OsString}, ffi::OsString,
fs::{self, File}, fs::{self, File},
io::{self, Read, Write}, io::{self, Write},
iter,
path::{Path, PathBuf}, path::{Path, PathBuf},
}; };
@ -42,17 +43,17 @@ use crate::{
/// The minimum character width for formatting counts when reading from stdin. /// The minimum character width for formatting counts when reading from stdin.
const MINIMUM_WIDTH: usize = 7; const MINIMUM_WIDTH: usize = 7;
struct Settings { struct Settings<'a> {
show_bytes: bool, show_bytes: bool,
show_chars: bool, show_chars: bool,
show_lines: bool, show_lines: bool,
show_words: bool, show_words: bool,
show_max_line_length: bool, show_max_line_length: bool,
files0_from_path: Option<PathBuf>, files0_from: Option<Input<'a>>,
total_when: TotalWhen, total_when: TotalWhen,
} }
impl Default for Settings { impl Default for Settings<'_> {
fn default() -> Self { fn default() -> Self {
// Defaults if none of -c, -m, -l, -w, nor -L are specified. // Defaults if none of -c, -m, -l, -w, nor -L are specified.
Self { Self {
@ -61,15 +62,15 @@ impl Default for Settings {
show_lines: true, show_lines: true,
show_words: true, show_words: true,
show_max_line_length: false, show_max_line_length: false,
files0_from_path: None, files0_from: None,
total_when: TotalWhen::default(), total_when: TotalWhen::default(),
} }
} }
} }
impl Settings { impl<'a> Settings<'a> {
fn new(matches: &ArgMatches) -> Self { fn new(matches: &'a ArgMatches) -> Self {
let files0_from_path = matches let files0_from = matches
.get_one::<OsString>(options::FILES0_FROM) .get_one::<OsString>(options::FILES0_FROM)
.map(Into::into); .map(Into::into);
@ -84,7 +85,7 @@ impl Settings {
show_lines: matches.get_flag(options::LINES), show_lines: matches.get_flag(options::LINES),
show_words: matches.get_flag(options::WORDS), show_words: matches.get_flag(options::WORDS),
show_max_line_length: matches.get_flag(options::MAX_LINE_LENGTH), show_max_line_length: matches.get_flag(options::MAX_LINE_LENGTH),
files0_from_path, files0_from,
total_when, total_when,
}; };
@ -92,7 +93,7 @@ impl Settings {
settings settings
} else { } else {
Self { Self {
files0_from_path: settings.files0_from_path, files0_from: settings.files0_from,
total_when, total_when,
..Default::default() ..Default::default()
} }
@ -139,6 +140,74 @@ static QS_QUOTE_ESCAPE: &QuotingStyle = &QuotingStyle::Shell {
show_control: false, show_control: false,
}; };
/// Supported inputs.
#[derive(Debug)]
enum Inputs<'a> {
/// Default Standard input, i.e. no arguments.
Stdin,
/// Files; "-" means stdin, possibly multiple times!
Paths(Vec<Input<'a>>),
/// --files0-from; "-" means stdin.
Files0From(Input<'a>),
}
impl<'a> Inputs<'a> {
fn new(matches: &'a ArgMatches) -> UResult<Self> {
let arg_files = matches.get_many::<OsString>(ARG_FILES);
let files0_from = matches.get_one::<OsString>(options::FILES0_FROM);
match (arg_files, files0_from) {
(None, None) => Ok(Self::Stdin),
(Some(files), None) => Ok(Self::Paths(files.map(Into::into).collect())),
(None, Some(path)) => {
// If path is a file, and the file isn't too large, we'll load it ahead
// of time. Every path within the file will have its length checked to
// hopefully better align the output columns.
let input = Input::from(path);
match input.try_as_files0()? {
Some(paths) => Ok(Self::Paths(paths)),
None => Ok(Self::Files0From(input)),
}
}
(Some(_), Some(_)) => Err(WcError::FilesDisabled.into()),
}
}
// Creates an iterator which yields values borrowed from the command line arguments.
// Returns an error if the file specified in --files0-from cannot be opened.
fn try_iter(
&'a self,
settings: &'a Settings<'a>,
) -> UResult<impl Iterator<Item = InputIterItem<'a>>> {
let base: Box<dyn Iterator<Item = _>> = match self {
Self::Stdin => Box::new(iter::once(Ok(Input::Stdin(StdinKind::Implicit)))),
Self::Paths(inputs) => Box::new(inputs.iter().map(|i| Ok(i.as_borrowed()))),
Self::Files0From(input) => match input {
Input::Path(path) => Box::new(files0_iter_file(path)?),
Input::Stdin(_) => Box::new(files0_iter_stdin()),
},
};
// The index of each yielded item must be tracked for error reporting.
let mut with_idx = base.enumerate();
let files0_from_path = settings.files0_from.as_ref().map(|i| i.as_borrowed());
let iter = iter::from_fn(move || {
let (idx, next) = with_idx.next()?;
match next {
// filter zero length file names...
Ok(Input::Path(p)) if p.as_os_str().is_empty() => Some(Err({
let maybe_ctx = files0_from_path.as_ref().map(|p| (p, idx));
WcError::zero_len(maybe_ctx).into()
})),
_ => Some(next),
}
});
Ok(iter)
}
}
#[derive(Clone, Copy, Debug)]
enum StdinKind { enum StdinKind {
/// Specified on command-line with "-" (STDIN_REPR) /// Specified on command-line with "-" (STDIN_REPR)
Explicit, Explicit,
@ -146,26 +215,44 @@ enum StdinKind {
Implicit, Implicit,
} }
/// Supported inputs. /// Represents a single input, either to be counted or processed for other files names via
enum Input { /// --files0-from.
/// A regular file. #[derive(Debug)]
Path(PathBuf), enum Input<'a> {
Path(Cow<'a, Path>),
/// Standard input.
Stdin(StdinKind), Stdin(StdinKind),
} }
impl From<&OsStr> for Input { impl From<PathBuf> for Input<'_> {
fn from(input: &OsStr) -> Self { fn from(p: PathBuf) -> Self {
if input == STDIN_REPR { if p.as_os_str() == STDIN_REPR {
Self::Stdin(StdinKind::Explicit) Self::Stdin(StdinKind::Explicit)
} else { } else {
Self::Path(input.into()) Self::Path(Cow::Owned(p))
} }
} }
} }
impl Input { impl<'a, T: AsRef<Path> + ?Sized> From<&'a T> for Input<'a> {
fn from(p: &'a T) -> Self {
let p = p.as_ref();
if p.as_os_str() == STDIN_REPR {
Self::Stdin(StdinKind::Explicit)
} else {
Self::Path(Cow::Borrowed(p))
}
}
}
impl<'a> Input<'a> {
/// Translates Path(Cow::Owned(_)) to Path(Cow::Borrowed(_)).
fn as_borrowed(&'a self) -> Self {
match self {
Self::Path(p) => Self::Path(Cow::Borrowed(p.borrow())),
Self::Stdin(k) => Self::Stdin(*k),
}
}
/// Converts input to title that appears in stats. /// Converts input to title that appears in stats.
fn to_title(&self) -> Option<Cow<str>> { fn to_title(&self) -> Option<Cow<str>> {
match self { match self {
@ -185,6 +272,56 @@ impl Input {
Self::Stdin(_) => String::from("standard input"), Self::Stdin(_) => String::from("standard input"),
} }
} }
/// When given --files0-from, we may be given a path or stdin. Either may be a stream or
/// a regular file. If given a file less than 10 MiB, it will be consumed and turned into
/// a Vec of Input::Paths which can be scanned to determine the widths of the columns that
/// will ultimately be printed.
fn try_as_files0(&self) -> UResult<Option<Vec<Input<'static>>>> {
match self {
Self::Path(path) => match fs::metadata(path) {
Ok(meta) if meta.is_file() && meta.len() <= (10 << 20) => Ok(Some(
files0_iter_file(path)?.collect::<Result<Vec<_>, _>>()?,
)),
_ => Ok(None),
},
Self::Stdin(_) if is_stdin_small_file() => {
Ok(Some(files0_iter_stdin().collect::<Result<Vec<_>, _>>()?))
}
Self::Stdin(_) => Ok(None),
}
}
}
#[cfg(unix)]
fn is_stdin_small_file() -> bool {
use std::os::unix::io::{AsRawFd, FromRawFd};
// Safety: we'll rely on Rust to give us a valid RawFd for stdin with which we can attempt to
// open a File, but only for the sake of fetching .metadata(). ManuallyDrop will ensure we
// don't do anything else to the FD if anything unexpected happens.
let f = std::mem::ManuallyDrop::new(unsafe { File::from_raw_fd(io::stdin().as_raw_fd()) });
matches!(f.metadata(), Ok(meta) if meta.is_file() && meta.len() <= (10 << 20))
}
#[cfg(windows)]
fn is_stdin_small_file() -> bool {
use std::os::windows::io::{AsRawHandle, FromRawHandle};
// Safety: we'll rely on Rust to give us a valid RawHandle for stdin with which we can attempt
// to open a File, but only for the sake of fetching .metadata(). ManuallyDrop will ensure we
// don't do anything else to the FD if anything unexpected happens.
let f = std::mem::ManuallyDrop::new(unsafe {
let h = io::stdin().as_raw_handle();
if h.is_null() {
return false;
}
File::from_raw_handle(h)
});
matches!(f.metadata(), Ok(meta) if meta.is_file() && meta.len() <= (10 << 20))
}
#[cfg(not(any(unix, windows)))]
fn is_stdin_small_file() -> bool {
false
} }
/// When to show the "total" line /// When to show the "total" line
@ -228,14 +365,17 @@ enum WcError {
#[error("invalid zero-length file name")] #[error("invalid zero-length file name")]
ZeroLengthFileName, ZeroLengthFileName,
#[error("{path}:{idx}: invalid zero-length file name")] #[error("{path}:{idx}: invalid zero-length file name")]
ZeroLengthFileNameCtx { path: String, idx: usize }, ZeroLengthFileNameCtx { path: Cow<'static, str>, idx: usize },
} }
impl WcError { impl WcError {
fn zero_len(ctx: Option<(&Path, usize)>) -> Self { fn zero_len(ctx: Option<(&Input, usize)>) -> Self {
match ctx { match ctx {
Some((path, idx)) => { Some((input, idx)) => {
let path = escape_name(path.as_os_str(), QS_ESCAPE); let path = match input {
Input::Stdin(_) => STDIN_REPR.into(),
Input::Path(path) => escape_name(path.as_os_str(), QS_ESCAPE).into(),
};
Self::ZeroLengthFileNameCtx { path, idx } Self::ZeroLengthFileNameCtx { path, idx }
} }
None => Self::ZeroLengthFileName, None => Self::ZeroLengthFileName,
@ -253,9 +393,8 @@ impl UError for WcError {
pub fn uumain(args: impl uucore::Args) -> UResult<()> { pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let matches = uu_app().try_get_matches_from(args)?; let matches = uu_app().try_get_matches_from(args)?;
let inputs = inputs(&matches)?;
let settings = Settings::new(&matches); let settings = Settings::new(&matches);
let inputs = Inputs::new(&matches)?;
wc(&inputs, &settings) wc(&inputs, &settings)
} }
@ -332,48 +471,6 @@ pub fn uu_app() -> Command {
) )
} }
fn inputs(matches: &ArgMatches) -> UResult<Vec<Input>> {
match matches.get_many::<OsString>(ARG_FILES) {
Some(os_values) => {
if matches.contains_id(options::FILES0_FROM) {
return Err(WcError::FilesDisabled.into());
}
Ok(os_values.map(|s| Input::from(s.as_os_str())).collect())
}
None => match matches.get_one::<OsString>(options::FILES0_FROM) {
Some(files_0_from) => create_paths_from_files0(Path::new(files_0_from)),
None => Ok(vec![Input::Stdin(StdinKind::Implicit)]),
},
}
}
fn create_paths_from_files0(files_0_from: &Path) -> UResult<Vec<Input>> {
let mut paths = String::new();
let read_from_stdin = files_0_from.as_os_str() == STDIN_REPR;
if read_from_stdin {
io::stdin().lock().read_to_string(&mut paths)?;
} else {
File::open(files_0_from)
.map_err_context(|| {
format!(
"cannot open {} for reading",
escape_name(files_0_from.as_os_str(), QS_QUOTE_ESCAPE)
)
})?
.read_to_string(&mut paths)?;
}
let paths: Vec<&str> = paths.split_terminator('\0').collect();
if read_from_stdin && paths.contains(&STDIN_REPR) {
return Err(WcError::StdinReprNotAllowed.into());
}
Ok(paths.iter().map(OsStr::new).map(Input::from).collect())
}
fn word_count_from_reader<T: WordCountable>( fn word_count_from_reader<T: WordCountable>(
mut reader: T, mut reader: T,
settings: &Settings, settings: &Settings,
@ -555,109 +652,166 @@ enum CountResult {
Failure(io::Error), Failure(io::Error),
} }
/// If we fail opening a file we only show the error. If we fail reading it /// If we fail opening a file, we only show the error. If we fail reading the
/// we show a count for what we managed to read. /// file, we show a count for what we managed to read.
/// ///
/// Therefore the reading implementations always return a total and sometimes /// Therefore, the reading implementations always return a total and sometimes
/// return an error: (WordCount, Option<io::Error>). /// return an error: (WordCount, Option<io::Error>).
fn word_count_from_input(input: &Input, settings: &Settings) -> CountResult { fn word_count_from_input(input: &Input<'_>, settings: &Settings) -> CountResult {
match input { let (total, maybe_err) = match input {
Input::Stdin(_) => { Input::Stdin(_) => word_count_from_reader(io::stdin().lock(), settings),
let stdin = io::stdin();
let stdin_lock = stdin.lock();
let count = word_count_from_reader(stdin_lock, settings);
match count {
(total, Some(error)) => CountResult::Interrupted(total, error),
(total, None) => CountResult::Success(total),
}
}
Input::Path(path) => match File::open(path) { Input::Path(path) => match File::open(path) {
Err(error) => CountResult::Failure(error), Ok(f) => word_count_from_reader(f, settings),
Ok(file) => match word_count_from_reader(file, settings) { Err(err) => return CountResult::Failure(err),
(total, Some(error)) => CountResult::Interrupted(total, error),
(total, None) => CountResult::Success(total),
},
}, },
};
match maybe_err {
None => CountResult::Success(total),
Some(err) => CountResult::Interrupted(total, err),
} }
} }
/// Compute the number of digits needed to represent all counts in all inputs. /// Compute the number of digits needed to represent all counts in all inputs.
/// ///
/// `inputs` may include zero or more [`Input::Stdin`] entries, each of /// For [`Inputs::Stdin`], [`MINIMUM_WIDTH`] is returned, unless there is only one counter number
/// which represents reading from `stdin`. The presence of any such /// to be printed, in which case 1 is returned.
/// entry causes this function to return a width that is at least
/// [`MINIMUM_WIDTH`].
/// ///
/// If `input` is empty, or if only one number needs to be printed (for just /// For [`Inputs::Files0From`], [`MINIMUM_WIDTH`] is returned.
/// one file) then this function is optimized to return 1 without making any
/// calls to get file metadata.
/// ///
/// If file metadata could not be read from any of the [`Input::Path`] input, /// An [`Inputs::Paths`] may include zero or more "-" entries, each of which represents reading
/// that input does not affect number width computation /// from `stdin`. The presence of any such entry causes this function to return a width that is at
/// least [`MINIMUM_WIDTH`].
/// ///
/// Otherwise, the file sizes in the file metadata are summed and the number of /// If an [`Inputs::Paths`] contains only one path and only one number needs to be printed then
/// digits in that total size is returned as the number width /// this function is optimized to return 1 without making any calls to get file metadata.
/// ///
/// To mirror GNU wc's behavior a special case is added. If --files0-from is /// If file metadata could not be read from any of the [`Input::Path`] input, that input does not
/// used and input is read from stdin and there is only one calculation enabled /// affect number width computation. Otherwise, the file sizes from the files' metadata are summed
/// columns will not be aligned. This is not exactly GNU wc's behavior, but it /// and the number of digits in that total size is returned.
/// is close enough to pass the GNU test suite. fn compute_number_width(inputs: &Inputs, settings: &Settings) -> usize {
fn compute_number_width(inputs: &[Input], settings: &Settings) -> usize { match inputs {
if inputs.is_empty() Inputs::Stdin if settings.number_enabled() == 1 => 1,
|| settings.number_enabled() == 1 Inputs::Stdin => MINIMUM_WIDTH,
&& (inputs.len() == 1 Inputs::Files0From(_) => 1,
|| settings.files0_from_path.as_ref().map(|p| p.as_os_str()) Inputs::Paths(inputs) => {
== Some(OsStr::new(STDIN_REPR))) if settings.number_enabled() == 1 && inputs.len() == 1 {
{ return 1;
return 1;
}
let mut minimum_width = 1;
let mut total = 0;
for input in inputs {
match input {
Input::Stdin(_) => {
minimum_width = MINIMUM_WIDTH;
} }
Input::Path(path) => {
if let Ok(meta) = fs::metadata(path) { let mut minimum_width = 1;
if meta.is_file() { let mut total: u64 = 0;
total += meta.len(); for input in inputs.iter() {
} else { match input {
minimum_width = MINIMUM_WIDTH; Input::Stdin(_) => minimum_width = MINIMUM_WIDTH,
Input::Path(path) => {
if let Ok(meta) = fs::metadata(path) {
if meta.is_file() {
total += meta.len();
} else {
minimum_width = MINIMUM_WIDTH;
}
}
} }
} }
} }
}
}
if total == 0 { if total == 0 {
minimum_width minimum_width
} else { } else {
let total_width = (1 + ilog10_u64(total)) let total_width = (1 + ilog10_u64(total))
.try_into() .try_into()
.expect("ilog of a u64 should fit into a usize"); .expect("ilog of a u64 should fit into a usize");
max(total_width, minimum_width) max(total_width, minimum_width)
}
}
} }
} }
fn wc(inputs: &[Input], settings: &Settings) -> UResult<()> { type InputIterItem<'a> = Result<Input<'a>, Box<dyn UError>>;
/// To be used with `--files0-from=-`, this applies a filter on the results of files0_iter to
/// translate '-' into the appropriate error.
fn files0_iter_stdin<'a>() -> impl Iterator<Item = InputIterItem<'a>> {
files0_iter(io::stdin().lock(), STDIN_REPR.into()).map(|i| match i {
Ok(Input::Stdin(_)) => Err(WcError::StdinReprNotAllowed.into()),
_ => i,
})
}
fn files0_iter_file<'a>(path: &Path) -> UResult<impl Iterator<Item = InputIterItem<'a>>> {
match File::open(path) {
Ok(f) => Ok(files0_iter(f, path.into())),
Err(e) => Err(e.map_err_context(|| {
format!(
"cannot open {} for reading",
escape_name(path.as_os_str(), QS_QUOTE_ESCAPE)
)
})),
}
}
fn files0_iter<'a>(
r: impl io::Read + 'static,
err_path: OsString,
) -> impl Iterator<Item = InputIterItem<'a>> {
use std::io::BufRead;
let mut i = Some(
io::BufReader::new(r)
.split(b'\0')
.map(move |res| match res {
Ok(p) if p == STDIN_REPR.as_bytes() => Ok(Input::Stdin(StdinKind::Explicit)),
Ok(p) => {
// On Unix systems, OsStrings are just strings of bytes, not necessarily UTF-8.
#[cfg(unix)]
{
use std::os::unix::ffi::OsStringExt;
Ok(Input::Path(PathBuf::from(OsString::from_vec(p)).into()))
}
// ...Windows does not, we must go through Strings.
#[cfg(not(unix))]
{
let s = String::from_utf8(p)
.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
Ok(Input::Path(PathBuf::from(s).into()))
}
}
Err(e) => Err(e.map_err_context(|| {
format!("{}: read error", escape_name(&err_path, QS_ESCAPE))
}) as Box<dyn UError>),
}),
);
// Loop until there is an error; yield that error and then nothing else.
std::iter::from_fn(move || {
let next = i.as_mut().and_then(Iterator::next);
if matches!(next, Some(Err(_)) | None) {
i = None;
}
next
})
}
fn wc(inputs: &Inputs, settings: &Settings) -> UResult<()> {
let mut total_word_count = WordCount::default(); let mut total_word_count = WordCount::default();
let mut num_inputs: usize = 0;
let (number_width, are_stats_visible) = match settings.total_when { let (number_width, are_stats_visible) = match settings.total_when {
TotalWhen::Only => (1, false), TotalWhen::Only => (1, false),
_ => (compute_number_width(inputs, settings), true), _ => (compute_number_width(inputs, settings), true),
}; };
let is_total_row_visible = settings.total_when.is_total_row_visible(inputs.len());
for (idx, input) in inputs.iter().enumerate() { for maybe_input in inputs.try_iter(settings)? {
if matches!(input, Input::Path(p) if p.as_os_str().is_empty()) { num_inputs += 1;
let err = WcError::zero_len(settings.files0_from_path.as_deref().map(|s| (s, idx)));
show!(err); let input = match maybe_input {
continue; Ok(input) => input,
} Err(err) => {
let word_count = match word_count_from_input(input, settings) { show!(err);
continue;
}
};
let word_count = match word_count_from_input(&input, settings) {
CountResult::Success(word_count) => word_count, CountResult::Success(word_count) => word_count,
CountResult::Interrupted(word_count, err) => { CountResult::Interrupted(word_count, err) => {
show!(err.map_err_context(|| input.path_display())); show!(err.map_err_context(|| input.path_display()));
@ -679,7 +833,7 @@ fn wc(inputs: &[Input], settings: &Settings) -> UResult<()> {
} }
} }
if is_total_row_visible { if settings.total_when.is_total_row_visible(num_inputs) {
let title = are_stats_visible.then_some("total"); let title = are_stats_visible.then_some("total");
if let Err(err) = print_stats(settings, &total_word_count, title, number_width) { if let Err(err) = print_stats(settings, &total_word_count, title, number_width) {
show!(err.map_err_context(|| "failed to print total".into())); show!(err.map_err_context(|| "failed to print total".into()));

View file

@ -424,10 +424,12 @@ fn test_files0_from() {
new_ucmd!() new_ucmd!()
.args(&["--files0-from=files0_list.txt"]) .args(&["--files0-from=files0_list.txt"])
.run() .run()
.stdout_is( .stdout_is(concat!(
" 13 109 772 lorem_ipsum.txt\n 18 204 1115 moby_dick.txt\n 5 57 302 \ " 13 109 772 lorem_ipsum.txt\n",
alice_in_wonderland.txt\n 36 370 2189 total\n", " 18 204 1115 moby_dick.txt\n",
); " 5 57 302 alice_in_wonderland.txt\n",
" 36 370 2189 total\n",
));
} }
#[test] #[test]
@ -436,7 +438,7 @@ fn test_files0_from_with_stdin() {
.args(&["--files0-from=-"]) .args(&["--files0-from=-"])
.pipe_in("lorem_ipsum.txt") .pipe_in("lorem_ipsum.txt")
.run() .run()
.stdout_is(" 13 109 772 lorem_ipsum.txt\n"); .stdout_is("13 109 772 lorem_ipsum.txt\n");
} }
#[test] #[test]
@ -445,10 +447,12 @@ fn test_files0_from_with_stdin_in_file() {
.args(&["--files0-from=files0_list_with_stdin.txt"]) .args(&["--files0-from=files0_list_with_stdin.txt"])
.pipe_in_fixture("alice_in_wonderland.txt") .pipe_in_fixture("alice_in_wonderland.txt")
.run() .run()
.stdout_is( .stdout_is(concat!(
" 13 109 772 lorem_ipsum.txt\n 18 204 1115 moby_dick.txt\n 5 57 302 \ " 13 109 772 lorem_ipsum.txt\n",
-\n 36 370 2189 total\n", " 18 204 1115 moby_dick.txt\n",
); " 5 57 302 -\n",
" 36 370 2189 total\n",
));
} }
#[test] #[test]