forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pod.go
86 lines (73 loc) · 1.94 KB
/
pod.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
75
76
77
78
79
80
81
82
83
84
85
86
package test
import (
"testing"
"k8s.io/kubernetes/pkg/admission"
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/unversioned"
"k8s.io/kubernetes/pkg/runtime"
buildapi "github.com/openshift/origin/pkg/build/api"
)
type TestPod kapi.Pod
func Pod() *TestPod {
return (*TestPod)(&kapi.Pod{})
}
func (p *TestPod) WithAnnotation(name, value string) *TestPod {
if p.Annotations == nil {
p.Annotations = map[string]string{}
}
p.Annotations[name] = value
return p
}
func (p *TestPod) WithEnvVar(name, value string) *TestPod {
if len(p.Spec.Containers) == 0 {
p.Spec.Containers = append(p.Spec.Containers, kapi.Container{})
}
p.Spec.Containers[0].Env = append(p.Spec.Containers[0].Env, kapi.EnvVar{Name: name, Value: value})
return p
}
func (p *TestPod) WithBuild(t *testing.T, build *buildapi.Build, version string) *TestPod {
gv, err := unversioned.ParseGroupVersion(version)
if err != nil {
t.Fatalf("%v", err)
}
encodedBuild, err := runtime.Encode(kapi.Codecs.LegacyCodec(gv), build)
if err != nil {
t.Fatalf("%v", err)
}
return p.WithAnnotation(buildapi.BuildAnnotation, build.Name).WithEnvVar("BUILD", string(encodedBuild))
}
func (p *TestPod) EnvValue(name string) string {
if len(p.Spec.Containers) == 0 {
return ""
}
for _, ev := range p.Spec.Containers[0].Env {
if ev.Name == name {
return ev.Value
}
}
return ""
}
func (p *TestPod) GetBuild(t *testing.T) *buildapi.Build {
obj, err := runtime.Decode(kapi.Codecs.UniversalDecoder(), []byte(p.EnvValue("BUILD")))
if err != nil {
t.Fatalf("Could not decode build: %v", err)
}
build, ok := obj.(*buildapi.Build)
if !ok {
t.Fatalf("Not a build object: %#v", obj)
}
return build
}
func (p *TestPod) ToAttributes() admission.Attributes {
return admission.NewAttributesRecord((*kapi.Pod)(p),
kapi.Kind("Pod"),
"default",
"TestPod",
kapi.Resource("pods"),
"",
admission.Create,
nil)
}
func (p *TestPod) AsPod() *kapi.Pod {
return (*kapi.Pod)(p)
}