forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion_test.go
55 lines (49 loc) · 1.29 KB
/
version_test.go
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
53
54
55
package endpoints
import (
"io"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
)
func TestVersion(t *testing.T) {
var testCases = []struct {
description string
version string
revision string
expected string
}{
{
description: "Empty",
version: "",
revision: "",
expected: `{"revision":"not-set","version":"not-set"}`,
},
{
description: "Version Only",
version: "1.2.3",
revision: "",
expected: `{"revision":"not-set","version":"1.2.3"}`,
},
{
description: "Revision Only",
version: "",
revision: "d6cd1e2bd19e03a81132a23b2025920577f84e37",
expected: `{"revision":"d6cd1e2bd19e03a81132a23b2025920577f84e37","version":"not-set"}`,
},
{
description: "Fully Populated",
version: "1.2.3",
revision: "d6cd1e2bd19e03a81132a23b2025920577f84e37",
expected: `{"revision":"d6cd1e2bd19e03a81132a23b2025920577f84e37","version":"1.2.3"}`,
},
}
for _, test := range testCases {
handler := NewVersionEndpoint(test.version, test.revision)
w := httptest.NewRecorder()
handler(w, nil)
response, err := io.ReadAll(w.Result().Body)
if assert.NoError(t, err, test.description+":read") {
assert.JSONEq(t, test.expected, string(response), test.description+":response")
}
}
}