mirror of
https://github.com/nushell/nushell
synced 2025-01-12 21:29:07 +00:00
add from ndnuon
and to ndnuon
to stdlib (#14334)
# Description
i was playing with the NDNUON format and using local definitions of
`from ndnuon` and `to ndnuon` but then i thought they could live in the
standard library next to `from ndjson` and `to ndjson` 😋
# User-Facing Changes
users can now add the following to their configs and get NDNUON ready to
go
```nushell
use std formats ["from ndnuon" "to ndnuon"]
```
# Tests + Formatting
i did simply mimic the tests for `from ndjson` and `to ndjson`, i hope
it's fine since the recent big change to the standard library
# After Submitting
---------
Co-authored-by: Douglas <32344964+NotTheDr01ds@users.noreply.github.com>
This commit is contained in:
parent
e0c0d39ede
commit
547c436281
3 changed files with 116 additions and 18 deletions
|
@ -28,3 +28,13 @@ export def "to ndjson" []: any -> string {
|
||||||
export def "to jsonl" []: any -> string {
|
export def "to jsonl" []: any -> string {
|
||||||
each { to json --raw } | to text
|
each { to json --raw } | to text
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Convert from NDNUON (newline-delimited NUON), to structured data
|
||||||
|
export def "from ndnuon" []: [string -> any] {
|
||||||
|
lines | each { from nuon }
|
||||||
|
}
|
||||||
|
|
||||||
|
# Convert structured data to NDNUON, i.e. newline-delimited NUON
|
||||||
|
export def "to ndnuon" []: [any -> string] {
|
||||||
|
each { to nuon --raw } | to text
|
||||||
|
}
|
||||||
|
|
|
@ -2,15 +2,26 @@
|
||||||
use std/assert
|
use std/assert
|
||||||
use std/formats *
|
use std/formats *
|
||||||
|
|
||||||
def test_data_multiline [] {
|
def test_data_multiline [--nuon] {
|
||||||
let lines = [
|
let lines = if $nuon {
|
||||||
"{\"a\":1}",
|
[
|
||||||
"{\"a\":2}",
|
"{a: 1}",
|
||||||
"{\"a\":3}",
|
"{a: 2}",
|
||||||
"{\"a\":4}",
|
"{a: 3}",
|
||||||
"{\"a\":5}",
|
"{a: 4}",
|
||||||
"{\"a\":6}",
|
"{a: 5}",
|
||||||
]
|
"{a: 6}",
|
||||||
|
]
|
||||||
|
} else {
|
||||||
|
[
|
||||||
|
"{\"a\":1}",
|
||||||
|
"{\"a\":2}",
|
||||||
|
"{\"a\":3}",
|
||||||
|
"{\"a\":4}",
|
||||||
|
"{\"a\":5}",
|
||||||
|
"{\"a\":6}",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
if $nu.os-info.name == "windows" {
|
if $nu.os-info.name == "windows" {
|
||||||
$lines | str join "\r\n"
|
$lines | str join "\r\n"
|
||||||
|
@ -84,3 +95,36 @@ def to_jsonl_single_object [] {
|
||||||
let expect = "{\"a\":1}"
|
let expect = "{\"a\":1}"
|
||||||
assert equal $result $expect "could not convert to JSONL"
|
assert equal $result $expect "could not convert to JSONL"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def from_ndnuon_multiple_objects [] {
|
||||||
|
let result = test_data_multiline | from ndnuon
|
||||||
|
let expect = [{a:1},{a:2},{a:3},{a:4},{a:5},{a:6}]
|
||||||
|
assert equal $result $expect "could not convert from NDNUON"
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def from_ndnuon_single_object [] {
|
||||||
|
let result = '{a: 1}' | from ndnuon
|
||||||
|
let expect = [{a:1}]
|
||||||
|
assert equal $result $expect "could not convert from NDNUON"
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def from_ndnuon_invalid_object [] {
|
||||||
|
assert error { '{"a":1' | formats from ndnuon }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def to_ndnuon_multiple_objects [] {
|
||||||
|
let result = [{a:1},{a:2},{a:3},{a:4},{a:5},{a:6}] | to ndnuon | str trim
|
||||||
|
let expect = test_data_multiline --nuon
|
||||||
|
assert equal $result $expect "could not convert to NDNUON"
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def to_ndnuon_single_object [] {
|
||||||
|
let result = [{a:1}] | to ndnuon | str trim
|
||||||
|
let expect = "{a: 1}"
|
||||||
|
assert equal $result $expect "could not convert to NDNUON"
|
||||||
|
}
|
||||||
|
|
|
@ -1,16 +1,27 @@
|
||||||
# Test std/formats when importing `use std *`
|
# Test std/formats when importing `use std *`
|
||||||
use std *
|
use std *
|
||||||
|
|
||||||
def test_data_multiline [] {
|
def test_data_multiline [--nuon] {
|
||||||
use std *
|
use std *
|
||||||
let lines = [
|
let lines = if $nuon {
|
||||||
"{\"a\":1}",
|
[
|
||||||
"{\"a\":2}",
|
"{a: 1}",
|
||||||
"{\"a\":3}",
|
"{a: 2}",
|
||||||
"{\"a\":4}",
|
"{a: 3}",
|
||||||
"{\"a\":5}",
|
"{a: 4}",
|
||||||
"{\"a\":6}",
|
"{a: 5}",
|
||||||
]
|
"{a: 6}",
|
||||||
|
]
|
||||||
|
} else {
|
||||||
|
[
|
||||||
|
"{\"a\":1}",
|
||||||
|
"{\"a\":2}",
|
||||||
|
"{\"a\":3}",
|
||||||
|
"{\"a\":4}",
|
||||||
|
"{\"a\":5}",
|
||||||
|
"{\"a\":6}",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
if $nu.os-info.name == "windows" {
|
if $nu.os-info.name == "windows" {
|
||||||
$lines | str join "\r\n"
|
$lines | str join "\r\n"
|
||||||
|
@ -84,3 +95,36 @@ def to_jsonl_single_object [] {
|
||||||
let expect = "{\"a\":1}"
|
let expect = "{\"a\":1}"
|
||||||
assert equal $result $expect "could not convert to JSONL"
|
assert equal $result $expect "could not convert to JSONL"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def from_ndnuon_multiple_objects [] {
|
||||||
|
let result = test_data_multiline | formats from ndnuon
|
||||||
|
let expect = [{a:1},{a:2},{a:3},{a:4},{a:5},{a:6}]
|
||||||
|
assert equal $result $expect "could not convert from NDNUON"
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def from_ndnuon_single_object [] {
|
||||||
|
let result = '{a: 1}' | formats from ndnuon
|
||||||
|
let expect = [{a:1}]
|
||||||
|
assert equal $result $expect "could not convert from NDNUON"
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def from_ndnuon_invalid_object [] {
|
||||||
|
assert error { '{"a":1' | formats from ndnuon }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def to_ndnuon_multiple_objects [] {
|
||||||
|
let result = [{a:1},{a:2},{a:3},{a:4},{a:5},{a:6}] | formats to ndnuon | str trim
|
||||||
|
let expect = test_data_multiline --nuon
|
||||||
|
assert equal $result $expect "could not convert to NDNUON"
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
def to_ndnuon_single_object [] {
|
||||||
|
let result = [{a:1}] | formats to ndnuon | str trim
|
||||||
|
let expect = "{a: 1}"
|
||||||
|
assert equal $result $expect "could not convert to NDNUON"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue