@@ -17,7 +17,6 @@ import (
17
17
oapi "github.com/openshift/origin/pkg/api"
18
18
projectapi "github.com/openshift/origin/pkg/project/apis/project"
19
19
exutil "github.com/openshift/origin/test/extended/util"
20
- testutil "github.com/openshift/origin/test/util"
21
20
)
22
21
23
22
const deploymentRunTimeout = 5 * time .Minute
@@ -59,6 +58,7 @@ var _ = g.Describe("[Feature:Performance][Serial][Slow] Load cluster", func() {
59
58
g .It ("should load the cluster" , func () {
60
59
project := ConfigContext .ClusterLoader .Projects
61
60
tuningSets := ConfigContext .ClusterLoader .TuningSets
61
+ sync := ConfigContext .ClusterLoader .Sync
62
62
if project == nil {
63
63
e2e .Failf ("Invalid config file.\n File: %v" , project )
64
64
}
@@ -81,30 +81,26 @@ var _ = g.Describe("[Feature:Performance][Serial][Slow] Load cluster", func() {
81
81
e2e .Logf ("%d/%d : Created new namespace: %v" , j + 1 , p .Number , nsName )
82
82
namespaces = append (namespaces , nsName )
83
83
84
- // Create templates as defined
85
- for _ , template := range p .Templates {
86
- var allArgs []string
87
- templateFile := mkPath (template .File )
88
- e2e .Logf ("We're loading file %v: " , templateFile )
89
- templateObj , err := testutil .GetTemplateFixture (templateFile )
90
- if err != nil {
91
- e2e .Failf ("Cant read template config file. Error: %v" , err )
92
- }
93
- allArgs = append (allArgs , templateObj .Name )
94
-
95
- if template .Parameters == nil {
96
- e2e .Logf ("Template environment variables will not be modified." )
97
- } else {
98
- params := convertVariablesToString (template .Parameters )
99
- allArgs = append (allArgs , params ... )
100
- }
84
+ // Create config maps
85
+ if p .Configmaps != nil {
86
+ // Configmaps defined, create them
87
+ err := CreateConfigmaps (oc , c , nsName , p .Configmaps )
88
+ o .Expect (err ).NotTo (o .HaveOccurred ())
89
+ }
101
90
102
- config , err := oc .AdminTemplateClient ().Template ().Templates (nsName ).Create (templateObj )
103
- e2e .Logf ("Template %v created, arguments: %v, config: %+v" , templateObj .Name , allArgs , config )
91
+ // Create secrets
92
+ if p .Secrets != nil {
93
+ // Secrets defined, create them
94
+ err := CreateSecrets (oc , c , nsName , p .Secrets )
95
+ o .Expect (err ).NotTo (o .HaveOccurred ())
96
+ }
104
97
105
- err = oc .SetNamespace (nsName ).Run ("new-app" ).Args (allArgs ... ).Execute ()
98
+ // Create templates as defined
99
+ for _ , template := range p .Templates {
100
+ err := CreateTemplates (oc , c , nsName , template , template .Number , tuning )
106
101
o .Expect (err ).NotTo (o .HaveOccurred ())
107
102
}
103
+
108
104
// This is too familiar, create pods
109
105
for _ , pod := range p .Pods {
110
106
// Parse Pod file into struct
@@ -122,11 +118,36 @@ var _ = g.Describe("[Feature:Performance][Serial][Slow] Load cluster", func() {
122
118
}
123
119
// TODO sjug: pass label via config
124
120
labels := map [string ]string {"purpose" : "test" }
125
- CreatePods (c , pod .Basename , nsName , labels , config .Spec , pod .Number , tuning )
121
+ err := CreatePods (c , pod .Basename , nsName , labels , config .Spec , pod .Number , tuning , & pod .Sync )
122
+ o .Expect (err ).NotTo (o .HaveOccurred ())
126
123
}
127
124
}
128
125
}
129
126
127
+ if sync .Running {
128
+ timeout , err := time .ParseDuration (sync .Timeout )
129
+ o .Expect (err ).NotTo (o .HaveOccurred ())
130
+ for _ , ns := range namespaces {
131
+ err := SyncRunningPods (c , ns , sync .Selectors , timeout )
132
+ o .Expect (err ).NotTo (o .HaveOccurred ())
133
+ }
134
+ }
135
+
136
+ if sync .Server .Enabled {
137
+ var podCount PodCount
138
+ err := Server (& podCount , sync .Server .Port , false )
139
+ o .Expect (err ).NotTo (o .HaveOccurred ())
140
+ }
141
+
142
+ if sync .Succeeded {
143
+ timeout , err := time .ParseDuration (sync .Timeout )
144
+ o .Expect (err ).NotTo (o .HaveOccurred ())
145
+ for _ , ns := range namespaces {
146
+ err := SyncSucceededPods (c , ns , sync .Selectors , timeout )
147
+ o .Expect (err ).NotTo (o .HaveOccurred ())
148
+ }
149
+ }
150
+
130
151
// Wait for builds and deployments to complete
131
152
for _ , ns := range namespaces {
132
153
buildList , err := oc .BuildClient ().Build ().Builds (ns ).List (metav1.ListOptions {})
@@ -158,17 +179,6 @@ var _ = g.Describe("[Feature:Performance][Serial][Slow] Load cluster", func() {
158
179
err := writeJSONToDisk (TestResult {testDuration }, testResultFile )
159
180
o .Expect (err ).NotTo (o .HaveOccurred ())
160
181
161
- // Wait for pods to be running
162
- //for _, ns := range namespaces {
163
- // label := labels.SelectorFromSet(labels.Set(map[string]string{"purpose": "test"}))
164
- // err := testutils.WaitForPodsWithLabelRunning(c, ns, label)
165
- // if err != nil {
166
- // e2e.Failf("Got %v when trying to wait for the pods to start", err)
167
- // }
168
- // o.Expect(err).NotTo(o.HaveOccurred())
169
- // e2e.Logf("All pods running in namespace %s.", ns)
170
- //}
171
-
172
182
// If config context set to cleanup on completion
173
183
if ConfigContext .ClusterLoader .Cleanup == true {
174
184
for _ , ns := range namespaces {
0 commit comments