-
Notifications
You must be signed in to change notification settings - Fork 21
/
main_test.go
74 lines (72 loc) · 1.74 KB
/
main_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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// SPDX-FileCopyrightText: 2017 Comcast Cable Communications Management, LLC
// SPDX-License-Identifier: Apache-2.0
package main
// func TestPrintVersionInfo(t *testing.T) {
// testCases := []struct {
// name string
// expectedOutput []string
// overrideValues func()
// lineCount int
// }{
// {
// "default",
// []string{
// "talaria:",
// "version: \tundefined",
// "go version: \tgo",
// "built time: \tundefined",
// "git commit: \tundefined",
// "os/arch: \t",
// },
// func() {},
// 6,
// },
// {
// "set values",
// []string{
// "talaria:",
// "version: \t1.0.0\n",
// "go version: \tgo",
// "built time: \tsome time\n",
// "git commit: \tgit sha\n",
// "os/arch: \t",
// },
// func() {
// Version = "1.0.0"
// BuildTime = "some time"
// GitCommit = "git sha"
// },
// 6,
// },
// }
// for _, tc := range testCases {
// t.Run(tc.name, func(t *testing.T) {
// resetGlobals()
// tc.overrideValues()
// buf := &bytes.Buffer{}
// printVersionInfo(buf)
// count := 0
// for {
// line, err := buf.ReadString(byte('\n'))
// if err != nil {
// break
// }
// assert.Contains(t, line, tc.expectedOutput[count])
// if strings.Contains(line, "\t") {
// keyAndValue := strings.Split(line, "\t")
// // The value after the tab should have more than 2 characters
// // 1) the first character of the value and the new line
// assert.True(t, len(keyAndValue[1]) > 2)
// }
// count++
// }
// assert.Equal(t, tc.lineCount, count)
// resetGlobals()
// })
// }
// }
// func resetGlobals() {
// Version = "undefined"
// BuildTime = "undefined"
// GitCommit = "undefined"
// }