mirror of
https://github.com/nushell/nushell.git
synced 2025-08-16 18:21:40 +02:00
.cargo
.githooks
.github
assets
benches
clippy
crates
nu-cli
nu-cmd-base
nu-cmd-extra
nu-cmd-lang
nu-cmd-plugin
nu-color-config
nu-command
src
tests
commands
assignment
base
bytes
conversions
database
date
debug
hash_
math
move_
network
path
platform
query
random
skip
str_
take
url
alias.rs
all.rs
any.rs
append.rs
break_.rs
cal.rs
cd.rs
chunk_by.rs
chunks.rs
compact.rs
complete.rs
config_env_default.rs
config_nu_default.rs
continue_.rs
debug_info.rs
def.rs
default.rs
detect_columns.rs
do_.rs
drop.rs
du.rs
each.rs
echo.rs
empty.rs
error_make.rs
every.rs
exec.rs
export_def.rs
fill.rs
filter.rs
find.rs
first.rs
flatten.rs
for_.rs
format.rs
generate.rs
get.rs
glob.rs
griddle.rs
group_by.rs
headers.rs
help.rs
histogram.rs
ignore.rs
insert.rs
inspect.rs
interleave.rs
into_datetime.rs
into_duration.rs
into_filesize.rs
into_int.rs
job.rs
join.rs
last.rs
length.rs
let_.rs
lines.rs
loop_.rs
ls.rs
match_.rs
merge.rs
merge_deep.rs
mktemp.rs
mod.rs
mut_.rs
nu_check.rs
open.rs
par_each.rs
parse.rs
prepend.rs
print.rs
redirection.rs
reduce.rs
reject.rs
rename.rs
return_.rs
reverse.rs
rm.rs
roll.rs
rotate.rs
run_external.rs
save.rs
select.rs
semicolon.rs
seq.rs
seq_char.rs
seq_date.rs
slice.rs
sort.rs
sort_by.rs
source_env.rs
split_column.rs
split_row.rs
start.rs
stor.rs
table.rs
tee.rs
terminal.rs
to_text.rs
transpose.rs
try_.rs
ucp.rs
ulimit.rs
umkdir.rs
uname.rs
uniq.rs
uniq_by.rs
update.rs
upsert.rs
use_.rs
utouch.rs
where_.rs
which.rs
while_.rs
window.rs
with_env.rs
wrap.rs
zip.rs
format_conversions
string
main.rs
sort_utils.rs
Cargo.toml
LICENSE
README.md
nu-derive-value
nu-engine
nu-explore
nu-glob
nu-json
nu-lsp
nu-parser
nu-path
nu-plugin
nu-plugin-core
nu-plugin-engine
nu-plugin-protocol
nu-plugin-test-support
nu-pretty-hex
nu-protocol
nu-std
nu-system
nu-table
nu-term-grid
nu-test-support
nu-utils
nu_plugin_custom_values
nu_plugin_example
nu_plugin_formats
nu_plugin_gstat
nu_plugin_inc
nu_plugin_javascript
nu_plugin_nu_example
nu_plugin_polars
nu_plugin_python
nu_plugin_query
nu_plugin_stress_internals
nuon
README.md
devdocs
docker
scripts
src
tests
wix
.gitattributes
.gitignore
CITATION.cff
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
Cross.toml
LICENSE
README.md
SECURITY.md
rust-toolchain.toml
toolkit.nu
typos.toml
Closes #14469 # Description - ~~Implement the ``--unit`` conversion in "into int" command~~ - New ``ShellError::InvalidUnit`` unit if users enter wrong units - Made ``ShellError::CantConvertToDuration`` more generic: became ``CantConvertToUnit`` - Tried to improve the way we parse units and get the supported units. It's not complete, though, I will continue this refactoring in another PR. But I already did some small refactorings in the "format duration" and "format filesize" commands - Add tests for "format filesize" and "format duration" # User-Facing Changes ```nu ~> 1MB | format filesize sec Error: nu:🐚:invalid_unit × Invalid unit ╭─[entry #7:1:23] 1 │ 1MB | format filesize sec · ─┬─ · ╰── encountered here ╰──── help: Supported units are: B, kB, MB, GB, TB, PB, EB, KiB, MiB, GiB, TiB, PiB, EiB ```
129 lines
3.1 KiB
Rust
129 lines
3.1 KiB
Rust
use nu_test_support::fs::Stub::{EmptyFile, FileWithContentToBeTrimmed};
|
|
use nu_test_support::playground::Playground;
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn creates_the_resulting_string_from_the_given_fields() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open cargo_sample.toml
|
|
| get package
|
|
| format pattern "{name} has license {license}"
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "nu has license ISC");
|
|
}
|
|
|
|
#[test]
|
|
fn format_input_record_output_string() {
|
|
let actual = nu!(r#"{name: Downloads} | format pattern "{name}""#);
|
|
|
|
assert_eq!(actual.out, "Downloads");
|
|
}
|
|
|
|
#[test]
|
|
fn given_fields_can_be_column_paths() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open cargo_sample.toml
|
|
| format pattern "{package.name} is {package.description}"
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "nu is a new type of shell");
|
|
}
|
|
|
|
#[test]
|
|
fn cant_use_variables() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open cargo_sample.toml
|
|
| format pattern "{$it.package.name} is {$it.package.description}"
|
|
"#
|
|
));
|
|
|
|
// TODO SPAN: This has been removed during SpanId refactor
|
|
assert!(actual.err.contains("Removed functionality"));
|
|
}
|
|
|
|
#[test]
|
|
fn error_unmatched_brace() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open cargo_sample.toml
|
|
| format pattern "{package.name"
|
|
"#
|
|
));
|
|
|
|
assert!(actual.err.contains("unmatched curly brace"));
|
|
}
|
|
|
|
#[test]
|
|
fn format_filesize_works() {
|
|
Playground::setup("format_filesize_test_1", |dirs, sandbox| {
|
|
sandbox.with_files(&[
|
|
EmptyFile("yehuda.txt"),
|
|
EmptyFile("jttxt"),
|
|
EmptyFile("andres.txt"),
|
|
]);
|
|
|
|
let actual = nu!(
|
|
cwd: dirs.test(), pipeline(
|
|
"
|
|
ls
|
|
| format filesize kB size
|
|
| get size
|
|
| first
|
|
"
|
|
));
|
|
|
|
assert_eq!(actual.out, "0 kB");
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn format_filesize_works_with_nonempty_files() {
|
|
Playground::setup(
|
|
"format_filesize_works_with_nonempty_files",
|
|
|dirs, sandbox| {
|
|
sandbox.with_files(&[FileWithContentToBeTrimmed(
|
|
"sample.toml",
|
|
r#"
|
|
[dependency]
|
|
name = "nu"
|
|
"#,
|
|
)]);
|
|
|
|
let actual = nu!(
|
|
cwd: dirs.test(),
|
|
"ls sample.toml | format filesize B size | get size | first"
|
|
);
|
|
|
|
#[cfg(not(windows))]
|
|
assert_eq!(actual.out, "25 B");
|
|
|
|
#[cfg(windows)]
|
|
assert_eq!(actual.out, "27 B");
|
|
},
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn format_filesize_with_invalid_unit() {
|
|
let actual = nu!("1MB | format filesize sec");
|
|
|
|
assert!(actual.err.contains("invalid_unit"));
|
|
}
|
|
|
|
#[test]
|
|
fn format_duration_with_invalid_unit() {
|
|
let actual = nu!("1sec | format duration MB");
|
|
|
|
assert!(actual.err.contains("invalid_unit"));
|
|
}
|