|
14 | 14 | package config
|
15 | 15 |
|
16 | 16 | import (
|
| 17 | + "bytes" |
17 | 18 | "encoding/json"
|
| 19 | + "net/http" |
| 20 | + "reflect" |
18 | 21 | "testing"
|
| 22 | + |
| 23 | + "gopkg.in/yaml.v2" |
19 | 24 | )
|
20 | 25 |
|
21 | 26 | func TestJSONMarshalSecret(t *testing.T) {
|
@@ -51,3 +56,190 @@ func TestJSONMarshalSecret(t *testing.T) {
|
51 | 56 | })
|
52 | 57 | }
|
53 | 58 | }
|
| 59 | + |
| 60 | +func TestHeaderHTTPHeader(t *testing.T) { |
| 61 | + testcases := map[string]struct { |
| 62 | + header Header |
| 63 | + expected http.Header |
| 64 | + }{ |
| 65 | + "basic": { |
| 66 | + header: Header{ |
| 67 | + "single": []Secret{"v1"}, |
| 68 | + "multi": []Secret{"v1", "v2"}, |
| 69 | + "empty": []Secret{}, |
| 70 | + "nil": nil, |
| 71 | + }, |
| 72 | + expected: http.Header{ |
| 73 | + "single": []string{"v1"}, |
| 74 | + "multi": []string{"v1", "v2"}, |
| 75 | + "empty": []string{}, |
| 76 | + "nil": nil, |
| 77 | + }, |
| 78 | + }, |
| 79 | + "nil": { |
| 80 | + header: nil, |
| 81 | + expected: nil, |
| 82 | + }, |
| 83 | + } |
| 84 | + |
| 85 | + for name, tc := range testcases { |
| 86 | + t.Run(name, func(t *testing.T) { |
| 87 | + actual := tc.header.HTTPHeader() |
| 88 | + if !reflect.DeepEqual(actual, tc.expected) { |
| 89 | + t.Fatalf("expecting: %#v, actual: %#v", tc.expected, actual) |
| 90 | + } |
| 91 | + }) |
| 92 | + } |
| 93 | +} |
| 94 | + |
| 95 | +func TestHeaderYamlUnmarshal(t *testing.T) { |
| 96 | + testcases := map[string]struct { |
| 97 | + input string |
| 98 | + expected Header |
| 99 | + }{ |
| 100 | + "void": { |
| 101 | + input: ``, |
| 102 | + }, |
| 103 | + "simple": { |
| 104 | + input: "single:\n- a\n", |
| 105 | + expected: Header{"single": []Secret{"a"}}, |
| 106 | + }, |
| 107 | + "multi": { |
| 108 | + input: "multi:\n- a\n- b\n", |
| 109 | + expected: Header{"multi": []Secret{"a", "b"}}, |
| 110 | + }, |
| 111 | + "empty": { |
| 112 | + input: "{}", |
| 113 | + expected: Header{}, |
| 114 | + }, |
| 115 | + "empty value": { |
| 116 | + input: "empty:\n", |
| 117 | + expected: Header{"empty": nil}, |
| 118 | + }, |
| 119 | + } |
| 120 | + |
| 121 | + for name, tc := range testcases { |
| 122 | + t.Run(name, func(t *testing.T) { |
| 123 | + var actual Header |
| 124 | + err := yaml.Unmarshal([]byte(tc.input), &actual) |
| 125 | + if err != nil { |
| 126 | + t.Fatalf("error unmarshaling %s: %s", tc.input, err) |
| 127 | + } |
| 128 | + if !reflect.DeepEqual(actual, tc.expected) { |
| 129 | + t.Fatalf("expecting: %#v, actual: %#v", tc.expected, actual) |
| 130 | + } |
| 131 | + }) |
| 132 | + } |
| 133 | +} |
| 134 | + |
| 135 | +func TestHeaderYamlMarshal(t *testing.T) { |
| 136 | + testcases := map[string]struct { |
| 137 | + input Header |
| 138 | + expected []byte |
| 139 | + }{ |
| 140 | + "void": { |
| 141 | + input: nil, |
| 142 | + expected: []byte("{}\n"), |
| 143 | + }, |
| 144 | + "simple": { |
| 145 | + input: Header{"single": []Secret{"a"}}, |
| 146 | + expected: []byte("single:\n- <secret>\n"), |
| 147 | + }, |
| 148 | + "multi": { |
| 149 | + input: Header{"multi": []Secret{"a", "b"}}, |
| 150 | + expected: []byte("multi:\n- <secret>\n- <secret>\n"), |
| 151 | + }, |
| 152 | + "empty": { |
| 153 | + input: Header{"empty": nil}, |
| 154 | + expected: []byte("empty: []\n"), |
| 155 | + }, |
| 156 | + } |
| 157 | + |
| 158 | + for name, tc := range testcases { |
| 159 | + t.Run(name, func(t *testing.T) { |
| 160 | + actual, err := yaml.Marshal(tc.input) |
| 161 | + if err != nil { |
| 162 | + t.Fatalf("error unmarshaling %#v: %s", tc.input, err) |
| 163 | + } |
| 164 | + if !bytes.Equal(actual, tc.expected) { |
| 165 | + t.Fatalf("expecting: %q, actual: %q", tc.expected, actual) |
| 166 | + } |
| 167 | + }) |
| 168 | + } |
| 169 | +} |
| 170 | + |
| 171 | +func TestHeaderJsonUnmarshal(t *testing.T) { |
| 172 | + testcases := map[string]struct { |
| 173 | + input string |
| 174 | + expected Header |
| 175 | + }{ |
| 176 | + "void": { |
| 177 | + input: `null`, |
| 178 | + }, |
| 179 | + "simple": { |
| 180 | + input: `{"single": ["a"]}`, |
| 181 | + expected: Header{"single": []Secret{"a"}}, |
| 182 | + }, |
| 183 | + "multi": { |
| 184 | + input: `{"multi": ["a", "b"]}`, |
| 185 | + expected: Header{"multi": []Secret{"a", "b"}}, |
| 186 | + }, |
| 187 | + "empty": { |
| 188 | + input: `{}`, |
| 189 | + expected: Header{}, |
| 190 | + }, |
| 191 | + "empty value": { |
| 192 | + input: `{"empty":null}`, |
| 193 | + expected: Header{"empty": nil}, |
| 194 | + }, |
| 195 | + } |
| 196 | + |
| 197 | + for name, tc := range testcases { |
| 198 | + t.Run(name, func(t *testing.T) { |
| 199 | + var actual Header |
| 200 | + err := json.Unmarshal([]byte(tc.input), &actual) |
| 201 | + if err != nil { |
| 202 | + t.Fatalf("error unmarshaling %s: %s", tc.input, err) |
| 203 | + } |
| 204 | + if !reflect.DeepEqual(actual, tc.expected) { |
| 205 | + t.Fatalf("expecting: %#v, actual: %#v", tc.expected, actual) |
| 206 | + } |
| 207 | + }) |
| 208 | + } |
| 209 | +} |
| 210 | + |
| 211 | +func TestHeaderJsonMarshal(t *testing.T) { |
| 212 | + testcases := map[string]struct { |
| 213 | + input Header |
| 214 | + expected []byte |
| 215 | + }{ |
| 216 | + "void": { |
| 217 | + input: nil, |
| 218 | + expected: []byte("null"), |
| 219 | + }, |
| 220 | + "simple": { |
| 221 | + input: Header{"single": []Secret{"a"}}, |
| 222 | + expected: []byte("{\"single\":[\"\\u003csecret\\u003e\"]}"), |
| 223 | + }, |
| 224 | + "multi": { |
| 225 | + input: Header{"multi": []Secret{"a", "b"}}, |
| 226 | + expected: []byte("{\"multi\":[\"\\u003csecret\\u003e\",\"\\u003csecret\\u003e\"]}"), |
| 227 | + }, |
| 228 | + "empty": { |
| 229 | + input: Header{"empty": nil}, |
| 230 | + expected: []byte(`{"empty":null}`), |
| 231 | + }, |
| 232 | + } |
| 233 | + |
| 234 | + for name, tc := range testcases { |
| 235 | + t.Run(name, func(t *testing.T) { |
| 236 | + actual, err := json.Marshal(tc.input) |
| 237 | + if err != nil { |
| 238 | + t.Fatalf("error marshaling %#v: %s", tc.input, err) |
| 239 | + } |
| 240 | + if !bytes.Equal(actual, tc.expected) { |
| 241 | + t.Fatalf("expecting: %q, actual: %q", tc.expected, actual) |
| 242 | + } |
| 243 | + }) |
| 244 | + } |
| 245 | +} |
0 commit comments