mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
44 lines
757 B
Bash
44 lines
757 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
setUp() {
|
||
|
rm -f test.yml
|
||
|
}
|
||
|
|
||
|
testBasicEvalRoundTrip() {
|
||
|
random=$((1 + $RANDOM % 10))
|
||
|
./yq e -n ".a = $random" > test.yml
|
||
|
X=$(./yq e '.a' test.yml)
|
||
|
assertEquals $random $X
|
||
|
}
|
||
|
|
||
|
testBasicUpdateInPlaceSequence() {
|
||
|
cat >test.yml <<EOL
|
||
|
a: 0
|
||
|
EOL
|
||
|
./yq e -i ".a = 10" test.yml
|
||
|
X=$(./yq e '.a' test.yml)
|
||
|
assertEquals "10" $X
|
||
|
}
|
||
|
|
||
|
testBasicUpdateInPlaceSequenceEvalAll() {
|
||
|
cat >test.yml <<EOL
|
||
|
a: 0
|
||
|
EOL
|
||
|
./yq ea -i ".a = 10" test.yml
|
||
|
X=$(./yq e '.a' test.yml)
|
||
|
assertEquals "10" $X
|
||
|
}
|
||
|
|
||
|
testBasicNoExitStatus() {
|
||
|
echo "a: cat" > test.yml
|
||
|
X=$(./yq e '.z' test.yml)
|
||
|
assertEquals "null" $X
|
||
|
}
|
||
|
|
||
|
testBasicExitStatus() {
|
||
|
echo "a: cat" > test.yml
|
||
|
X=$(./yq e -e '.z' test.yml 2&>/dev/null)
|
||
|
assertEquals 1 $?
|
||
|
}
|
||
|
|
||
|
source ./scripts/shunit2
|