2020-03-18 23:46:00 +00:00
|
|
|
use nu_test_support::fs::Stub::FileWithContentToBeTrimmed;
|
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
use nu_test_support::{nu, pipeline};
|
2020-05-24 00:08:39 +00:00
|
|
|
use std::str::FromStr;
|
2020-03-18 23:46:00 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn all() {
|
|
|
|
Playground::setup("sum_test_1", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
2020-04-06 07:16:14 +00:00
|
|
|
"meals.json",
|
2020-03-18 23:46:00 +00:00
|
|
|
r#"
|
2020-04-06 07:16:14 +00:00
|
|
|
{
|
|
|
|
meals: [
|
|
|
|
{description: "1 large egg", calories: 90},
|
|
|
|
{description: "1 cup white rice", calories: 250},
|
|
|
|
{description: "1 tablespoon fish oil", calories: 108}
|
|
|
|
]
|
|
|
|
}
|
2020-03-18 23:46:00 +00:00
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(), pipeline(
|
|
|
|
r#"
|
2020-04-06 07:16:14 +00:00
|
|
|
open meals.json
|
|
|
|
| get meals
|
2020-03-18 23:46:00 +00:00
|
|
|
| get calories
|
2020-06-19 02:02:01 +00:00
|
|
|
| math sum
|
2020-03-18 23:46:00 +00:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 11:03:43 +00:00
|
|
|
assert_eq!(actual.out, "448");
|
2020-03-18 23:46:00 +00:00
|
|
|
})
|
|
|
|
}
|
Move external closer to internal (#1611)
* Refactor InputStream and affected commands.
First, making `values` private and leaning on the `Stream` implementation makes
consumes of `InputStream` less likely to have to change in the future, if we
change what an `InputStream` is internally.
Second, we're dropping `Option<InputStream>` as the input to pipelines,
internals, and externals. Instead, `InputStream.is_empty` can be used to check
for "emptiness". Empty streams are typically only ever used as the first input
to a pipeline.
* Add run_external internal command.
We want to push external commands closer to internal commands, eventually
eliminating the concept of "external" completely. This means we can consolidate
a couple of things:
- Variable evaluation (for example, `$it`, `$nu`, alias vars)
- Behaviour of whole stream vs per-item external execution
It should also make it easier for us to start introducing argument signatures
for external commands,
* Update run_external.rs
* Update run_external.rs
* Update run_external.rs
* Update run_external.rs
Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
2020-04-20 03:30:44 +00:00
|
|
|
|
2020-05-24 00:08:39 +00:00
|
|
|
#[test]
|
2020-05-27 04:50:26 +00:00
|
|
|
#[allow(clippy::unreadable_literal)]
|
|
|
|
#[allow(clippy::float_cmp)]
|
2020-05-24 00:08:39 +00:00
|
|
|
fn compute_sum_of_individual_row() -> Result<(), String> {
|
|
|
|
let answers_for_columns = [
|
|
|
|
("cpu", 88.257434),
|
|
|
|
("mem", 3032375296.),
|
|
|
|
("virtual", 102579965952.),
|
|
|
|
];
|
2021-09-09 22:44:22 +00:00
|
|
|
for (column_name, expected_value) in answers_for_columns {
|
2020-05-24 00:08:39 +00:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats/",
|
2020-06-19 02:02:01 +00:00
|
|
|
format!("open sample-ps-output.json | select {} | math sum | get {}", column_name, column_name)
|
2020-05-24 00:08:39 +00:00
|
|
|
);
|
|
|
|
let result =
|
|
|
|
f64::from_str(&actual.out).map_err(|_| String::from("Failed to parse float."))?;
|
2021-09-09 22:44:22 +00:00
|
|
|
assert_eq!(result, expected_value);
|
2020-05-24 00:08:39 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-05-27 04:50:26 +00:00
|
|
|
#[allow(clippy::unreadable_literal)]
|
|
|
|
#[allow(clippy::float_cmp)]
|
2020-05-24 00:08:39 +00:00
|
|
|
fn compute_sum_of_table() -> Result<(), String> {
|
|
|
|
let answers_for_columns = [
|
|
|
|
("cpu", 88.257434),
|
|
|
|
("mem", 3032375296.),
|
|
|
|
("virtual", 102579965952.),
|
|
|
|
];
|
2021-09-09 22:44:22 +00:00
|
|
|
for (column_name, expected_value) in answers_for_columns {
|
2020-05-24 00:08:39 +00:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats/",
|
2020-06-19 02:02:01 +00:00
|
|
|
format!("open sample-ps-output.json | select cpu mem virtual | math sum | get {}", column_name)
|
2020-05-24 00:08:39 +00:00
|
|
|
);
|
|
|
|
let result =
|
|
|
|
f64::from_str(&actual.out).map_err(|_| String::from("Failed to parse float."))?;
|
2021-09-09 22:44:22 +00:00
|
|
|
assert_eq!(result, expected_value);
|
2020-05-24 00:08:39 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-02-04 02:01:45 +00:00
|
|
|
// FIXME: jt: needs more work
|
|
|
|
#[ignore]
|
2020-05-24 00:08:39 +00:00
|
|
|
#[test]
|
|
|
|
fn sum_of_a_row_containing_a_table_is_an_error() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats/",
|
2020-06-19 02:02:01 +00:00
|
|
|
"open sample-sys-output.json | math sum"
|
2020-05-24 00:08:39 +00:00
|
|
|
);
|
|
|
|
assert!(actual
|
|
|
|
.err
|
2020-08-03 22:47:19 +00:00
|
|
|
.contains("Attempted to compute values that can't be operated on"));
|
2020-05-24 00:08:39 +00:00
|
|
|
}
|