mirror of
https://github.com/nushell/nushell.git
synced 2025-07-23 00:34:07 +02:00
.cargo
.githooks
.github
assets
benches
crates
nu-cli
nu-cmd-base
nu-cmd-dataframe
nu-cmd-extra
nu-cmd-lang
nu-cmd-plugin
nu-color-config
nu-command
src
tests
commands
format_conversions
csv.rs
html.rs
json.rs
markdown.rs
mod.rs
msgpack.rs
msgpackz.rs
nuon.rs
ods.rs
ssv.rs
toml.rs
tsv.rs
url.rs
xlsx.rs
xml.rs
yaml.rs
main.rs
Cargo.toml
LICENSE
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_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
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
Cross.toml
LICENSE
README.md
rust-toolchain.toml
toolkit.nu
typos.toml
# Description This PR closes #11524 Add `to xml --self-closed` flag to output empty tags as self close. For example:  # User-Facing Changes New `to xml` flag `--self-closed`. # Tests + Formatting Added new example for `to xml` command and new test for self-closed tags.
113 lines
2.6 KiB
Rust
113 lines
2.6 KiB
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn table_to_xml_text_and_from_xml_text_back_into_table() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
open jt.xml
|
|
| to xml
|
|
| from xml
|
|
| get content
|
|
| where tag == channel
|
|
| get content
|
|
| flatten
|
|
| where tag == item
|
|
| get content
|
|
| flatten
|
|
| where tag == guid
|
|
| get 0.attributes.isPermaLink
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "true");
|
|
}
|
|
|
|
#[test]
|
|
fn to_xml_error_unknown_column() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
{tag: a bad_column: b} | to xml
|
|
"#
|
|
));
|
|
|
|
assert!(actual.err.contains("Invalid column \"bad_column\""));
|
|
}
|
|
|
|
#[test]
|
|
fn to_xml_error_no_tag() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
{attributes: {a: b c: d}} | to xml
|
|
"#
|
|
));
|
|
|
|
assert!(actual.err.contains("Tag missing"));
|
|
}
|
|
|
|
#[test]
|
|
fn to_xml_error_tag_not_string() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
{tag: 1 attributes: {a: b c: d}} | to xml
|
|
"#
|
|
));
|
|
|
|
assert!(actual.err.contains("not a string"));
|
|
}
|
|
|
|
#[test]
|
|
fn to_xml_partial_escape() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
{
|
|
tag: a
|
|
attributes: { a: "'a'\\" }
|
|
content: [ `'"qwe\` ]
|
|
} | to xml --partial-escape
|
|
"#
|
|
));
|
|
assert_eq!(actual.out, r#"<a a="'a'\">'"qwe\</a>"#);
|
|
}
|
|
|
|
#[test]
|
|
fn to_xml_pi_comment_not_escaped() {
|
|
// PI and comment content should not be escaped
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
{
|
|
tag: a
|
|
content: [
|
|
{tag: ?qwe content: `"'<>&`}
|
|
{tag: ! content: `"'<>&`}
|
|
]
|
|
} | to xml
|
|
"#
|
|
));
|
|
assert_eq!(actual.out, r#"<a><?qwe "'<>&?><!--"'<>&--></a>"#);
|
|
}
|
|
|
|
#[test]
|
|
fn to_xml_self_closed() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
r#"
|
|
{
|
|
tag: root
|
|
content: [
|
|
[tag attributes content];
|
|
[a null null]
|
|
[b {e: r} null]
|
|
[c {t: y} []]
|
|
]
|
|
} | to xml --self-closed
|
|
"#
|
|
));
|
|
assert_eq!(actual.out, r#"<root><a/><b e="r"/><c t="y"/></root>"#);
|
|
}
|