summaryrefslogtreecommitdiff
path: root/cmd/podman/report/format_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-02 14:49:02 -0400
committerGitHub <noreply@github.com>2020-10-02 14:49:02 -0400
commitf1cdead33d8f9c29348f9a66ba4a6aa5ed0aa7b2 (patch)
tree1485fd4238fa9d3b8d64e1d13e54f0015300aeb7 /cmd/podman/report/format_test.go
parent1e162edc8a2dd3d8373128e671c578ffcad52272 (diff)
parentc0757374bf187edcf4ae8c4811e162e27794ebf8 (diff)
downloadpodman-f1cdead33d8f9c29348f9a66ba4a6aa5ed0aa7b2.tar.gz
podman-f1cdead33d8f9c29348f9a66ba4a6aa5ed0aa7b2.tar.bz2
podman-f1cdead33d8f9c29348f9a66ba4a6aa5ed0aa7b2.zip
Merge pull request #7199 from jwhonce/jira/run-898
Restore "table" --format from V1
Diffstat (limited to 'cmd/podman/report/format_test.go')
-rw-r--r--cmd/podman/report/format_test.go35
1 files changed, 35 insertions, 0 deletions
diff --git a/cmd/podman/report/format_test.go b/cmd/podman/report/format_test.go
new file mode 100644
index 000000000..7dd62e899
--- /dev/null
+++ b/cmd/podman/report/format_test.go
@@ -0,0 +1,35 @@
+package report
+
+import (
+ "strings"
+ "testing"
+)
+
+func TestNormalizeFormat(t *testing.T) {
+ cases := []struct {
+ format string
+ expected string
+ }{
+ {"table {{.ID}}", "{{.ID}}\n"},
+ {"table {{.ID}} {{.C}}", "{{.ID}}\t{{.C}}\n"},
+ {"{{.ID}}", "{{.ID}}\n"},
+ {"{{.ID}}\n", "{{.ID}}\n"},
+ {"{{.ID}} {{.C}}", "{{.ID}} {{.C}}\n"},
+ {"\t{{.ID}}", "\t{{.ID}}\n"},
+ {`\t` + "{{.ID}}", "\t{{.ID}}\n"},
+ {"table {{.ID}}\t{{.C}}", "{{.ID}}\t{{.C}}\n"},
+ {"{{.ID}} table {{.C}}", "{{.ID}} table {{.C}}\n"},
+ }
+ for _, tc := range cases {
+ tc := tc
+
+ label := strings.ReplaceAll(tc.format, " ", "<sp>")
+ t.Run("NormalizeFormat/"+label, func(t *testing.T) {
+ t.Parallel()
+ actual := NormalizeFormat(tc.format)
+ if actual != tc.expected {
+ t.Errorf("Expected %q, actual %q", tc.expected, actual)
+ }
+ })
+ }
+}