-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_test.go
73 lines (68 loc) · 1.45 KB
/
add_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
package workutils
import (
"testing"
"github.com/stretchr/testify/assert"
appsv1 "k8s.io/api/apps/v1"
"k8s.io/client-go/kubernetes/scheme"
workapiv1 "open-cluster-management.io/api/work/v1"
)
func TestAdd(t *testing.T) {
nsStr := `
apiVersion: v1
kind: Namespace
metadata:
name: test-namespace
`
deploymentStr := `
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
`
namespace, err := stringToRawExtension(nsStr)
assert.Nil(t, err)
deployment, err := stringToRawExtension(deploymentStr)
assert.Nil(t, err)
work := workapiv1.ManifestWork{
Spec: workapiv1.ManifestWorkSpec{
Workload: workapiv1.ManifestsTemplate{
Manifests: []workapiv1.Manifest{
{
RawExtension: namespace,
},
},
},
},
}
client := NewWorkUtilsClient(scheme.Scheme)
updatedWork, err := client.Add(work, deployment.Object)
assert.Nil(t, err)
assert.Equal(t, len(updatedWork.Spec.Workload.Manifests), 2)
obj, err := client.Get(updatedWork, Resource{
Group: "apps",
Version: "v1",
Kind: "Deployment",
Name: "nginx-deployment",
})
assert.Nil(t, err)
d, ok := obj.(*appsv1.Deployment)
assert.Equal(t, true, ok)
assert.Equal(t, "nginx-deployment", d.Name)
}