summaryrefslogtreecommitdiff
path: root/cmd/podman/parse/json_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-11 13:13:31 +0200
committerGitHub <noreply@github.com>2020-07-11 13:13:31 +0200
commit1dc0a335fb894af7006cba4dbf67a6ed975ef7ed (patch)
tree791e9f60ae8272e6fec063e45f5e7039e2057d3b /cmd/podman/parse/json_test.go
parent1d7175314c350b61b84ca4b2237d662e9b3f6c09 (diff)
parentbb9d939155c2ce37654abd58a71f650bde6bce50 (diff)
downloadpodman-1dc0a335fb894af7006cba4dbf67a6ed975ef7ed.tar.gz
podman-1dc0a335fb894af7006cba4dbf67a6ed975ef7ed.tar.bz2
podman-1dc0a335fb894af7006cba4dbf67a6ed975ef7ed.zip
Merge pull request #6929 from vrothberg/fix-9627
version/info: format: allow more json variants
Diffstat (limited to 'cmd/podman/parse/json_test.go')
-rw-r--r--cmd/podman/parse/json_test.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/cmd/podman/parse/json_test.go b/cmd/podman/parse/json_test.go
new file mode 100644
index 000000000..5cad185fd
--- /dev/null
+++ b/cmd/podman/parse/json_test.go
@@ -0,0 +1,30 @@
+package parse
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestMatchesJSONFormat(t *testing.T) {
+ tests := []struct {
+ input string
+ expected bool
+ }{
+ {"json", true},
+ {" json", true},
+ {"json ", true},
+ {" json ", true},
+ {"{{json .}}", true},
+ {"{{ json .}}", true},
+ {"{{json . }}", true},
+ {" {{ json . }} ", true},
+ {"{{json }}", false},
+ {"{{json .", false},
+ {"json . }}", false},
+ }
+
+ for _, tt := range tests {
+ assert.Equal(t, tt.expected, MatchesJSONFormat(tt.input))
+ }
+}