-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpayloads_test.go
67 lines (58 loc) · 1.82 KB
/
payloads_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
package cfgprofiles
import (
"io/ioutil"
"path/filepath"
"reflect"
"testing"
"github.com/micromdm/plist"
)
func Test_multiString_UnmarshalPlist_error(t *testing.T) {
plBytes, err := ioutil.ReadFile(filepath.Join("testdata", "multistring-error.mobileconfig"))
fatalIf(t, err)
p := &Profile{}
err = plist.Unmarshal(plBytes, p)
if err == nil {
t.Error("expected an error")
}
expectedErrorMessage := "plist: cannot unmarshal 42 into Go value of type cfgprofiles.multiString"
if err.Error() != expectedErrorMessage {
t.Errorf("have %q, want %q", err.Error(), expectedErrorMessage)
}
}
func Test_multipleNTPrincipalNames_UnmarshalPlist_error(t *testing.T) {
plBytes, err := ioutil.ReadFile(filepath.Join("testdata", "multiple-nt-principals-error.mobileconfig"))
fatalIf(t, err)
p := &Profile{}
err = plist.Unmarshal(plBytes, p)
if err == nil {
t.Error("expected an error")
}
expectedErrorMessage := "plist: cannot unmarshal array into Go value of type string"
if err.Error() != expectedErrorMessage {
t.Errorf("have %q, want %q", err.Error(), expectedErrorMessage)
}
}
func Test_multiString_MarshalPlist(t *testing.T) {
tests := []struct {
name string
m *multiString
want interface{}
wantErr bool
}{
{"zero", &multiString{}, nil, true},
{"one", &multiString{"test.example.com"}, "test.example.com", false},
{"multiple", &multiString{"test1.example.com", "test2.example.com"}, []string{"test1.example.com", "test2.example.com"}, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := tt.m.MarshalPlist()
if (err != nil) != tt.wantErr {
t.Errorf("multiString.MarshalPlist() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("multiString.MarshalPlist() = %v, want %v", got, tt.want)
}
})
}
}