File: changes_test.go

package info (click to toggle)
podman 5.7.0%2Bds2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,824 kB
  • sloc: sh: 4,700; python: 2,798; perl: 1,885; ansic: 1,484; makefile: 977; ruby: 42; csh: 8
file content (52 lines) | stat: -rw-r--r-- 1,117 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package util

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestDecodeChanges(t *testing.T) {
	testCases := []struct {
		description string
		input       string
		output      []string
	}{
		{
			description: "nothing",
			input:       "",
			output:      []string{},
		},
		{
			description: "space",
			input:       `CMD=/bin/bash`,
			output:      []string{"CMD /bin/bash"},
		},
		{
			description: "equal",
			input:       `CMD=/bin/bash`,
			output:      []string{"CMD /bin/bash"},
		},
		{
			description: "both-but-right-first",
			input:       `LABEL A=B`,
			output:      []string{"LABEL A=B"},
		},
		{
			description: "both-but-right-second",
			input:       `LABEL A=B C=D`,
			output:      []string{"LABEL A=B C=D"},
		},
		{
			description: "both-but-wrong",
			input:       `LABEL=A=B C=D`,
			output:      []string{"LABEL A=B C=D"},
		},
	}
	for _, testCase := range testCases {
		t.Run(testCase.description, func(t *testing.T) {
			output := DecodeChanges([]string{testCase.input})
			assert.Equalf(t, testCase.output, output, "decoded value was not what we expected")
		})
	}
}