mirror of
https://github.com/nushell/nushell.git
synced 2025-05-19 17:30:45 +02:00
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"));
|
|
}
|