2021-07-18 06:55:08 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
setUp() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
EOL
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:52:51 +00:00
|
|
|
testLeadingSeperatorWithDoc() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
---
|
|
|
|
a: test
|
2021-07-19 10:18:42 +00:00
|
|
|
---
|
|
|
|
b: cool
|
2021-07-19 09:52:51 +00:00
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
---
|
|
|
|
a: thing
|
2021-07-19 10:18:42 +00:00
|
|
|
---
|
|
|
|
b: cool
|
2021-07-19 09:52:51 +00:00
|
|
|
EOM
|
|
|
|
|
2021-07-19 10:18:42 +00:00
|
|
|
X=$(./yq e '(select(di == 0) | .a) = "thing"' - < test.yml)
|
2021-07-19 09:52:51 +00:00
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-18 06:55:08 +00:00
|
|
|
testLeadingSeperatorPipeIntoEvalSeq() {
|
2021-07-18 07:05:12 +00:00
|
|
|
X=$(./yq e - < test.yml)
|
2021-07-18 06:55:08 +00:00
|
|
|
expected=$(cat test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-20 01:12:41 +00:00
|
|
|
testLeadingSeperatorExtractField() {
|
|
|
|
X=$(./yq e '.a' - < test.yml)
|
|
|
|
assertEquals "test" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
testLeadingSeperatorExtractFieldWithCommentsAfterSep() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
EOL
|
|
|
|
X=$(./yq e '.a' test.yml)
|
|
|
|
assertEquals "test" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
testLeadingSeperatorExtractFieldWithCommentsBeforeSep() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
EOL
|
|
|
|
X=$(./yq e '.a' test.yml)
|
|
|
|
assertEquals "test" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-18 06:55:08 +00:00
|
|
|
|
2021-07-20 01:14:54 +00:00
|
|
|
testLeadingSeperatorExtractFieldMultiDoc() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
a: test2
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
test
|
|
|
|
---
|
|
|
|
test2
|
|
|
|
EOM
|
|
|
|
X=$(./yq e '.a' test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
testLeadingSeperatorExtractFieldMultiDocWithComments() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
# here
|
|
|
|
---
|
|
|
|
# there
|
|
|
|
a: test
|
|
|
|
# whereever
|
|
|
|
---
|
|
|
|
# you are
|
|
|
|
a: test2
|
|
|
|
# woop
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
test
|
|
|
|
---
|
|
|
|
test2
|
|
|
|
EOM
|
|
|
|
X=$(./yq e '.a' test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-18 06:55:08 +00:00
|
|
|
testLeadingSeperatorEvalSeq() {
|
|
|
|
X=$(./yq e test.yml)
|
|
|
|
expected=$(cat test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
testLeadingSeperatorPipeIntoEvalAll() {
|
2021-07-18 07:05:12 +00:00
|
|
|
X=$(./yq ea - < test.yml)
|
2021-07-18 06:55:08 +00:00
|
|
|
expected=$(cat test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
testLeadingSeperatorEvalAll() {
|
|
|
|
X=$(./yq ea test.yml)
|
|
|
|
expected=$(cat test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:52:51 +00:00
|
|
|
testLeadingSeperatorMultiDocEvalSimple() {
|
2021-07-18 06:55:08 +00:00
|
|
|
read -r -d '' expected << EOM
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
version: 3
|
|
|
|
application: MyApp
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq e '.' test.yml examples/order.yaml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:52:51 +00:00
|
|
|
testLeadingSeperatorMultiDocInOneFile() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
b: things
|
|
|
|
EOL
|
|
|
|
expected=$(cat test.yml)
|
|
|
|
X=$(./yq e '.' test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-19 10:18:42 +00:00
|
|
|
testLeadingSeperatorMultiDocInOneFileEvalAll() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
b: things
|
|
|
|
EOL
|
|
|
|
expected=$(cat test.yml)
|
|
|
|
X=$(./yq ea '.' test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:52:51 +00:00
|
|
|
testLeadingSeperatorMultiDocEvalComments() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
EOL
|
|
|
|
|
|
|
|
cat >test2.yml <<EOL
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq e '.' test.yml test2.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
testLeadingSeperatorMultiDocEvalCommentsTrailingSep() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
EOL
|
|
|
|
|
|
|
|
cat >test2.yml <<EOL
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
---
|
|
|
|
b: sane
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
---
|
|
|
|
b: sane
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq e '.' test.yml test2.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-19 10:18:42 +00:00
|
|
|
testLeadingSeperatorMultiMultiDocEvalCommentsTrailingSep() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
a1: test2
|
|
|
|
EOL
|
|
|
|
|
|
|
|
cat >test2.yml <<EOL
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
---
|
|
|
|
b: sane
|
|
|
|
---
|
|
|
|
b2: cool
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
a1: test2
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
---
|
|
|
|
b: sane
|
|
|
|
---
|
|
|
|
b2: cool
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq e '.' test.yml test2.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-19 09:52:51 +00:00
|
|
|
testLeadingSeperatorMultiDocEvalCommentsLeadingSep() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
EOL
|
|
|
|
|
|
|
|
cat >test2.yml <<EOL
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq e '.' test.yml test2.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-19 23:18:40 +00:00
|
|
|
testLeadingSeperatorMultiDocEvalCommentsStripComments() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOL
|
|
|
|
|
|
|
|
# it will be hard to remove that top level separator
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
b: sane
|
|
|
|
EOM
|
|
|
|
|
2021-07-20 00:19:55 +00:00
|
|
|
X=$(./yq e '... comments=""' test.yml)
|
2021-07-19 23:18:40 +00:00
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
testLeadingSeperatorMultiDocEvalCommentsLeadingSepNoDocFlag() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq e '.' --no-doc test.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
testLeadingSeperatorMultiDocEvalJsonFlag() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
EOL
|
|
|
|
|
|
|
|
cat >test2.yml <<EOL
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
{
|
|
|
|
"a": "test"
|
|
|
|
}
|
|
|
|
{
|
|
|
|
"b": "sane"
|
|
|
|
}
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq e '.' -j test.yml test2.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
testLeadingSeperatorMultiDocEvalAllJsonFlag() {
|
|
|
|
cat >test.yml <<EOL
|
|
|
|
---
|
|
|
|
# hi peeps
|
|
|
|
# cool
|
|
|
|
a: test
|
|
|
|
EOL
|
|
|
|
|
|
|
|
cat >test2.yml <<EOL
|
|
|
|
---
|
|
|
|
# this is another doc
|
|
|
|
# great
|
|
|
|
b: sane
|
|
|
|
EOL
|
|
|
|
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
{
|
|
|
|
"a": "test"
|
|
|
|
}
|
|
|
|
{
|
|
|
|
"b": "sane"
|
|
|
|
}
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq ea '.' -j test.yml test2.yml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
2021-07-18 06:55:08 +00:00
|
|
|
testLeadingSeperatorMultiDocEvalAll() {
|
|
|
|
read -r -d '' expected << EOM
|
|
|
|
---
|
|
|
|
a: test
|
|
|
|
---
|
|
|
|
version: 3
|
|
|
|
application: MyApp
|
|
|
|
EOM
|
|
|
|
|
|
|
|
|
|
|
|
X=$(./yq ea '.' test.yml examples/order.yaml)
|
|
|
|
assertEquals "$expected" "$X"
|
|
|
|
}
|
|
|
|
|
|
|
|
source ./scripts/shunit2
|