1
0
mirror of https://github.com/nushell/nushell.git synced 2025-05-18 00:40:48 +02:00
nushell/crates/nu-command/tests/commands
Yash Thakur f63f8cb154
Add utouch command from uutils/coreutils ()
<!--
if this PR closes one or more issues, you can automatically link the PR
with
them by using one of the [*linking
keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword),
e.g.
- this PR should close #xxxx
- fixes #xxxx

you can also mention related issues, PRs or discussions!
-->

Part of https://github.com/nushell/nushell/issues/11549

# Description
<!--
Thank you for improving Nushell. Please, check our [contributing
guide](../CONTRIBUTING.md) and talk to the core team before making major
changes.

Description of your pull request goes here. **Provide examples and/or
screenshots** if your changes affect the user experience.
-->

This PR adds a `utouch` command that uses the `touch` command from
https://github.com/uutils/coreutils. Eventually, `utouch` may be able to
replace `touch`.

The conflicts in Cargo.lock and Cargo.toml are because I'm using the
uutils/coreutils main rather than the latest release, since the changes
that expose `uu_touch`'s internal functionality aren't available in the
latest release.

# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->

Users will have access to a new `utouch` command with the following
flags:
todo

# Tests + Formatting
<!--
Don't forget to add tests that cover your changes.

Make sure you've run and fixed any issues with these commands:

- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes)
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to
check that you're using the standard code style
- `cargo test --workspace` to check that all tests pass (on Windows make
sure to [enable developer
mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging))
- `cargo run -- -c "use std testing; testing run-tests --path
crates/nu-std"` to run the tests for the standard library

> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it
automatically
> toolkit check pr
> ```
-->

# After Submitting
<!-- If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
-->
2024-11-17 18:03:21 -06:00
..
assignment Match ++= capabilities with ++ () 2023-12-07 05:46:37 +08:00
base Replace the old encode base64 and decode base64 with new-base64 commands () 2024-10-08 11:01:43 +08:00
bytes Add string/binary type color to ByteStream () 2024-05-20 00:35:32 +00:00
conversions Change behavior of into record on lists to be more useful () 2024-08-22 11:38:43 +02:00
database Path migration part 4: various tests () 2024-08-03 10:09:13 +02:00
date fix format date based on users locale () 2024-02-20 11:08:49 -06:00
debug Force timeit to not capture stdout () 2024-04-10 13:31:29 +00:00
hash_ Replace the old encode base64 and decode base64 with new-base64 commands () 2024-10-08 11:01:43 +08:00
math Div, mod, and floor div overhaul () 2024-11-04 18:03:48 +01:00
move_ Path migration part 4: various tests () 2024-08-03 10:09:13 +02:00
network Add tests to test the --max-age arg in http commands () 2024-11-04 05:41:44 -06:00
path fix path exists on a non-directory file () 2024-09-11 12:45:39 -05:00
platform ansi name for clear-scrollback code () 2024-10-29 07:01:32 -05:00
query Feature cleanup () 2022-11-22 16:58:11 -08:00
random support filesize arguments in random binary/chars () 2024-10-12 14:49:05 +08:00
skip Add string/binary type color to ByteStream () 2024-05-20 00:35:32 +00:00
str_ Improves commands that support range input () 2024-06-18 07:19:13 -05:00
take Add string/binary type color to ByteStream () 2024-05-20 00:35:32 +00:00
url add table params support to url join and url build-query () 2024-11-06 08:09:40 -06:00
alias.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
all.rs Rewrite run_external.rs () 2024-05-23 02:05:27 +00:00
any.rs Rewrite run_external.rs () 2024-05-23 02:05:27 +00:00
append.rs fix(nu-command/tests): further remove unnecessary pipeline() and cwd() () 2023-04-07 14:09:55 -07:00
break_.rs don't allow break/continue in each and items command () 2024-07-19 00:21:02 -07:00
cal.rs Suppress column index for default cal output () 2024-06-22 07:41:29 -05:00
cd.rs Path migration part 4: various tests () 2024-08-03 10:09:13 +02:00
chunks.rs Deprecate group in favor of chunks () 2024-07-16 03:49:00 +00:00
compact.rs Remove file I/O from tests that don't need it () 2023-11-29 23:21:34 +01:00
complete.rs Make assignment and const consistent with let/mut () 2024-07-30 18:55:22 -05:00
config_env_default.rs Command: Add config env/nu --default to print defaults () 2023-09-25 08:00:59 -05:00
config_nu_default.rs Command: Add config env/nu --default to print defaults () 2023-09-25 08:00:59 -05:00
continue_.rs fix(nu-command/tests): further remove unnecessary pipeline() and cwd() () 2023-04-07 14:09:55 -07:00
debug_info.rs Make debug info lazy () 2023-10-24 12:48:05 -05:00
def.rs make command signature parsing more strict () 2024-11-18 08:01:52 +08:00
default.rs Remove default list-diving behaviour () 2024-07-16 03:54:24 +00:00
detect_columns.rs Improves commands that support range input () 2024-06-18 07:19:13 -05:00
do_.rs change display_error.exit_code to false () 2024-10-14 09:57:30 -05:00
drop.rs Refactor drop columns to fix issues () 2023-11-09 13:51:46 +01:00
du.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
each.rs Remove group command () 2024-10-11 06:43:12 -05:00
echo.rs Change echo to print when not redirected () 2023-09-13 06:35:01 +12:00
empty.rs fix(nu-command/tests): further remove unnecessary pipeline() and cwd() () 2023-04-07 14:09:55 -07:00
error_make.rs Change the error style during tests to plain () 2024-06-18 21:37:24 -07:00
every.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
exec.rs Isolate tests from user config () 2024-04-10 06:27:46 +08:00
export_def.rs Removes unnecessary cwd and pipeline from various tests () 2023-05-17 18:55:26 -05:00
fill.rs Removes unnecessary cwd and pipeline from various tests () 2023-05-17 18:55:26 -05:00
filter.rs Fix return in filter closure eval () 2024-03-26 17:50:36 +01:00
find.rs fixed issue with find not working with symbols that should be escaped () 2024-09-06 07:22:03 +08:00
first.rs Add string/binary type color to ByteStream () 2024-05-20 00:35:32 +00:00
flatten.rs Remove file I/O from tests that don't need it () 2023-11-29 23:21:34 +01:00
for_.rs Change echo to print when not redirected () 2023-09-13 06:35:01 +12:00
format.rs Span ID Refactor (Step 2): Use SpanId of expressions in some places () 2024-06-09 12:15:53 +03:00
generate.rs generate: switch the position of <initial> and <closure>, so the closure can have default parameters () 2024-07-19 00:22:28 -07:00
get.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
glob.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
griddle.rs make grid throw an error when not enough columns () 2024-04-26 06:33:00 -05:00
group_by.rs allow group-by and split-by to work with other values () 2024-10-20 23:14:11 +02:00
headers.rs Fix: remove unnecessary r#"..."# () () 2023-07-21 17:32:37 +02:00
help.rs Change the usage misnomer to "description" () 2024-08-22 12:02:08 +02:00
histogram.rs Remove file I/O from tests that don't need it () 2023-11-29 23:21:34 +01:00
ignore.rs Change the ignore command to use drain() instead of collecting a value () 2024-03-08 02:18:26 -05:00
insert.rs Remove lazy records () 2024-05-03 08:36:10 +08:00
inspect.rs fix inspect and explore panics on empty records () 2024-09-25 07:48:16 -05:00
interleave.rs Isolate tests from user config () 2024-04-10 06:27:46 +08:00
into_datetime.rs add table -> table to into datetime () 2023-07-23 20:14:51 +02:00
into_filesize.rs fix wrong casting with into filesize () 2024-06-10 10:43:17 +08:00
into_int.rs add --signed flag for binary into int conversions () 2024-02-27 15:05:26 +00:00
join.rs support table literal syntax in join right-table argument () 2024-10-29 06:37:44 -05:00
last.rs Add string/binary type color to ByteStream () 2024-05-20 00:35:32 +00:00
length.rs support binary input in length () 2024-11-04 03:39:24 +00:00
let_.rs fix error when exporting consts with type signatures in modules () 2024-10-22 11:54:31 +02:00
lines.rs fix panic with lines on an error () 2023-08-09 14:12:58 +02:00
loop_.rs Change echo to print when not redirected () 2023-09-13 06:35:01 +12:00
ls.rs make ls return "Permission denied" for CWD instead of empty results () 2024-11-15 12:09:02 +08:00
match_.rs Empty rest args match should be an empty list () 2024-11-04 18:03:26 +01:00
merge.rs Remove file I/O from tests that don't need it () 2023-11-29 23:21:34 +01:00
mktemp.rs Path migration part 4: various tests () 2024-08-03 10:09:13 +02:00
mod.rs Add utouch command from uutils/coreutils () 2024-11-17 18:03:21 -06:00
mut_.rs Tests: add a test to make sure that function can't use mutable variable () 2024-11-14 10:05:33 +01:00
nu_check.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
open.rs Add metadata on open --raw with bytestreams () 2024-10-23 16:50:15 -05:00
par_each.rs Fix: remove unnecessary r#"..."# () () 2023-07-21 17:32:37 +02:00
parse.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
prepend.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
print.rs Add --raw switch to print for binary data () 2024-08-12 17:29:25 +08:00
range.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
redirection.rs Overhaul $in expressions () 2024-07-17 16:02:42 -05:00
reduce.rs Improve with-env robustness () 2024-04-16 19:08:58 +08:00
reject.rs Improve CellPath display output () 2024-11-02 10:28:10 -05:00
rename.rs Remove file I/O from tests that don't need it () 2023-11-29 23:21:34 +01:00
return_.rs Fix return setting last exit code () 2024-10-18 03:05:58 +00:00
reverse.rs Clean up tests containing unnecessary cwd: tokens () 2023-07-17 18:43:51 +02:00
rm.rs Path migration part 4: various tests () 2024-08-03 10:09:13 +02:00
roll.rs Fix: remove unnecessary r#"..."# () () 2023-07-21 17:32:37 +02:00
rotate.rs Fix panic in rotate; Add safe record creation function () 2024-02-03 13:23:16 +02:00
run_external.rs Switch from dirs_next 2.0 to dirs 5.0 () 2024-07-16 07:16:26 -05:00
save.rs make adding newlines with to text more consistent and opt-out-able () 2024-10-23 16:49:51 -05:00
select.rs Improve CellPath display output () 2024-11-02 10:28:10 -05:00
semicolon.rs Slim down tests () 2023-04-28 13:25:44 +02:00
seq_char.rs Seq char update will work on all char () 2024-11-15 21:05:29 +01:00
seq_date.rs Fix panic in seq date () 2024-02-17 10:51:20 +02:00
seq.rs Slim down tests () 2023-04-28 13:25:44 +02:00
sort_by.rs to json -r not removing whitespaces fix () 2024-03-20 22:14:31 +01:00
sort.rs Rework sorting and add cell path and closure comparators to sort-by () 2024-10-09 19:18:16 -07:00
source_env.rs Path migration part 2: nu-test-support () 2024-07-12 02:43:10 +00:00
split_by.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
split_column.rs Add --number flag to split column () 2024-09-12 07:16:33 -05:00
split_row.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00
table.rs Introduce footer_inheritance option () 2024-10-23 19:45:47 +02:00
tee.rs Make tee work more nicely with non-collections () 2024-09-01 19:03:46 +02:00
terminal.rs Add is-terminal to determine if stdin/out/err are a terminal () 2023-11-21 20:48:39 -06:00
to_text.rs Make to text line endings consistent for list (streams) () 2024-11-05 09:33:54 +01:00
touch.rs no deref in touch () 2024-11-03 00:56:05 -04:00
transpose.rs Defensive handling of errors when transposing () 2024-10-22 11:30:48 -05:00
try_.rs add rendered and json error messages in try/catch () 2024-10-20 23:14:11 +02:00
ucp.rs Path migration part 4: various tests () 2024-08-03 10:09:13 +02:00
ulimit.rs FreeBSD compatibility patches () 2024-02-17 20:04:59 +01:00
umkdir.rs [umkdir][tests] get umask instead of assuming it () 2024-10-11 14:13:42 +02:00
uname.rs Initial implementation for uutils uname () 2024-03-25 16:51:50 -05:00
uniq_by.rs Remove file I/O from tests that don't need it () 2023-11-29 23:21:34 +01:00
uniq.rs Remove file I/O from tests that don't need it () 2023-11-29 23:21:34 +01:00
update.rs Remove lazy records () 2024-05-03 08:36:10 +08:00
upsert.rs Remove lazy records () 2024-05-03 08:36:10 +08:00
use_.rs fix $env.FILE_PWD and $env.CURRENT_FILE inside use () 2024-11-05 14:12:01 +08:00
utouch.rs Add utouch command from uutils/coreutils () 2024-11-17 18:03:21 -06:00
where_.rs Fix ignored clippy lints () 2024-03-11 19:46:04 +01:00
which.rs change the output of which to be more explicit () 2023-07-20 19:10:53 -05:00
while_.rs Change echo to print when not redirected () 2023-09-13 06:35:01 +12:00
window.rs Refactor window () 2024-07-19 04:16:09 +00:00
with_env.rs Improve with-env robustness () 2024-04-16 19:08:58 +08:00
wrap.rs Remove file I/O from tests that don't need it () 2023-11-29 23:21:34 +01:00
zip.rs Avoid taking unnecessary ownership of intermediates () 2024-05-04 00:53:15 +00:00