-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefresh_test.go
60 lines (51 loc) · 1.47 KB
/
refresh_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
package cmd
import (
"bytes"
"os"
"testing"
"github.com/cacoco/codemetagenerator/internal/utils"
"github.com/ohler55/ojg/oj"
"github.com/onsi/gomega"
"github.com/spf13/cobra"
)
func Test_ExecuteRefreshCmd(t *testing.T) {
g := gomega.NewWithT(t)
temp := t.TempDir()
// setup
os.Mkdir(utils.GetHomeDir(temp), 0755)
file, err := os.ReadFile("../testdata/spdx-full-licenses.json")
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
var stack utils.Stack[string]
stack.Push(string(file))
httpClient := utils.NewTestHttpClient(&stack)
writer := utils.TestWriter{}
refreshCmd := &cobra.Command{Use: "refresh", RunE: func(cmd *cobra.Command, args []string) error {
return refresh(writer, temp, httpClient)
},
}
buf := bytes.NewBufferString("")
refreshCmd.SetOut(buf)
refreshCmd.SetErr(buf)
refreshCmd.SetArgs([]string{})
err = refreshCmd.Execute()
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
// read converted test file
var expected map[string]string = make(map[string]string)
file, err = os.ReadFile("../testdata/spdx-licenses.json")
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
oj.Unmarshal(file, &expected)
var actual map[string]string = make(map[string]string)
fileBytes, err := utils.LoadFile(utils.GetLicensesFilePath(temp))
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
oj.Unmarshal(fileBytes, &actual)
// check "downloaded" file against converted test file
g.Ω(actual).Should(gomega.Equal(expected))
}