-
Notifications
You must be signed in to change notification settings - Fork 113
/
context_test.go
63 lines (51 loc) · 1.32 KB
/
context_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
package diagnostics_test
import (
"bytes"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/chef/automate/components/automate-cli/pkg/diagnostics"
)
type Person struct {
Name string `json:"name"`
Age int `json:"age"`
}
const jsonData = `
{
"components": {
"componentA": {
"name": "bob",
"age": 99
}
}
}
`
var structValue = Person{Name: "bob", Age: 99}
func TestReadTestContext(t *testing.T) {
tstCtx, err := diagnostics.LoadTestContext(nil, strings.NewReader(jsonData))
require.NoError(t, err)
person := Person{}
err = tstCtx.GetValue("componentA", &person)
require.NoError(t, err)
assert.Equal(t, structValue, person)
}
func TestReadTestContextNoKey(t *testing.T) {
tstCtx := diagnostics.NewTestContext(nil)
person := Person{}
err := tstCtx.GetValue("foo", &person)
assert.Equal(t, diagnostics.ErrKeyNotFound, err)
}
func TestRoundTripTestContext(t *testing.T) {
tstCtx := diagnostics.NewTestContext(nil)
tstCtx.SetValue("componentB", structValue)
buf := bytes.NewBufferString("")
err := tstCtx.WriteJSON(buf)
require.NoError(t, err)
tstCtx, err = diagnostics.LoadTestContext(nil, buf)
require.NoError(t, err)
person := Person{}
err = tstCtx.GetValue("componentB", &person)
require.NoError(t, err)
assert.Equal(t, structValue, person)
}