Merge pull request #36 from kenjones-cisco/bugfix/write-empty-array

Bugfix: Write empty array value
This commit is contained in:
Kenny Jones 2017-09-23 09:39:01 -04:00 committed by GitHub
commit b9ac6a3d9d
3 changed files with 20 additions and 0 deletions

View File

@ -74,6 +74,7 @@ install: build
.PHONY: vendor
vendor: tmp/dev_image_id
${DOCKRUN} bash ./scripts/vendor.sh
@chmod 664 vendor/vendor.json
# ----------------------------------------------
# develop and test

View File

@ -248,6 +248,22 @@ func TestWriteCmd(t *testing.T) {
assertResult(t, expectedOutput, result.Output)
}
func TestWriteCmd_EmptyArray(t *testing.T) {
content := `b: 3`
filename := writeTempYamlFile(content)
defer removeTempYamlFile(filename)
cmd := getRootCommand()
result := runCmd(cmd, fmt.Sprintf("write %s a []", filename))
if result.Error != nil {
t.Error(result.Error)
}
expectedOutput := `b: 3
a: []
`
assertResult(t, expectedOutput, result.Output)
}
func TestWriteCmd_Error(t *testing.T) {
cmd := getRootCommand()
result := runCmd(cmd, "write")

View File

@ -343,6 +343,9 @@ func parseValue(argument string) interface{} {
if err == nil {
return value
}
if argument == "[]" {
return make([]interface{}, 0)
}
return argument
}
return argument[1 : len(argument)-1]