@@ -10,12 +10,12 @@ import (
10
10
buildapi "github.com/openshift/origin/pkg/build/apis/build"
11
11
)
12
12
13
- func TestBuildConfigStrategy (t * testing.T ) {
13
+ func TestBuildConfigGroupStrategy (t * testing.T ) {
14
14
ctx := apirequest .NewDefaultContext ()
15
- if ! Strategy .NamespaceScoped () {
15
+ if ! GroupStrategy .NamespaceScoped () {
16
16
t .Errorf ("BuildConfig is namespace scoped" )
17
17
}
18
- if Strategy .AllowCreateOnUpdate () {
18
+ if GroupStrategy .AllowCreateOnUpdate () {
19
19
t .Errorf ("BuildConfig should not allow create on update" )
20
20
}
21
21
buildConfig := & buildapi.BuildConfig {
@@ -88,34 +88,163 @@ func TestBuildConfigStrategy(t *testing.T) {
88
88
LastVersion : 9 ,
89
89
},
90
90
}
91
- Strategy .PrepareForCreate (ctx , buildConfig )
92
- errs := Strategy .Validate (ctx , buildConfig )
91
+ GroupStrategy .PrepareForCreate (ctx , buildConfig )
92
+ errs := GroupStrategy .Validate (ctx , buildConfig )
93
93
if len (errs ) != 0 {
94
94
t .Errorf ("Unexpected error validating %v" , errs )
95
95
}
96
+ if buildConfig .Spec .SuccessfulBuildsHistoryLimit == nil {
97
+ t .Errorf ("Expected successful limit %d, got nil" , buildapi .DefaultSuccessfulBuildsHistoryLimit )
98
+ }
99
+ if * buildConfig .Spec .SuccessfulBuildsHistoryLimit != buildapi .DefaultSuccessfulBuildsHistoryLimit {
100
+ t .Errorf ("Expected successful limit %d, got %d" , buildapi .DefaultSuccessfulBuildsHistoryLimit , * buildConfig .Spec .SuccessfulBuildsHistoryLimit )
101
+ }
102
+ if buildConfig .Spec .FailedBuildsHistoryLimit == nil {
103
+ t .Errorf ("Expected failed limit %d, got nil" , buildapi .DefaultFailedBuildsHistoryLimit )
104
+ }
105
+ if * buildConfig .Spec .FailedBuildsHistoryLimit != buildapi .DefaultFailedBuildsHistoryLimit {
106
+ t .Errorf ("Expected failed limit %d, got %d" , buildapi .DefaultFailedBuildsHistoryLimit , * buildConfig .Spec .FailedBuildsHistoryLimit )
107
+ }
108
+
109
+ // lastversion cannot go backwards
110
+ newBC .Status .LastVersion = 9
111
+ GroupStrategy .PrepareForUpdate (ctx , newBC , buildConfig )
112
+ if newBC .Status .LastVersion != buildConfig .Status .LastVersion {
113
+ t .Errorf ("Expected version=%d, got %d" , buildConfig .Status .LastVersion , newBC .Status .LastVersion )
114
+ }
115
+
116
+ // lastversion can go forwards
117
+ newBC .Status .LastVersion = 11
118
+ GroupStrategy .PrepareForUpdate (ctx , newBC , buildConfig )
119
+ if newBC .Status .LastVersion != 11 {
120
+ t .Errorf ("Expected version=%d, got %d" , 11 , newBC .Status .LastVersion )
121
+ }
122
+
123
+ GroupStrategy .PrepareForCreate (ctx , buildConfig )
124
+ errs = GroupStrategy .Validate (ctx , buildConfig )
125
+ if len (errs ) != 0 {
126
+ t .Errorf ("Unexpected error validating %v" , errs )
127
+ }
128
+
129
+ invalidBuildConfig := & buildapi.BuildConfig {}
130
+ errs = GroupStrategy .Validate (ctx , invalidBuildConfig )
131
+ if len (errs ) == 0 {
132
+ t .Errorf ("Expected error validating" )
133
+ }
134
+ }
135
+
136
+ func TestBuildConfigLegacyStrategy (t * testing.T ) {
137
+ ctx := apirequest .NewDefaultContext ()
138
+ if ! LegacyStrategy .NamespaceScoped () {
139
+ t .Errorf ("BuildConfig is namespace scoped" )
140
+ }
141
+ if LegacyStrategy .AllowCreateOnUpdate () {
142
+ t .Errorf ("BuildConfig should not allow create on update" )
143
+ }
144
+ buildConfig := & buildapi.BuildConfig {
145
+ ObjectMeta : metav1.ObjectMeta {Name : "config-id" , Namespace : "namespace" },
146
+ Spec : buildapi.BuildConfigSpec {
147
+ RunPolicy : buildapi .BuildRunPolicySerial ,
148
+ Triggers : []buildapi.BuildTriggerPolicy {
149
+ {
150
+ GitHubWebHook : & buildapi.WebHookTrigger {Secret : "12345" },
151
+ Type : buildapi .GitHubWebHookBuildTriggerType ,
152
+ },
153
+ {
154
+ Type : "unknown" ,
155
+ },
156
+ },
157
+ CommonSpec : buildapi.CommonSpec {
158
+ Source : buildapi.BuildSource {
159
+ Git : & buildapi.GitBuildSource {
160
+ URI : "http://github.com/my/repository" ,
161
+ },
162
+ ContextDir : "context" ,
163
+ },
164
+ Strategy : buildapi.BuildStrategy {
165
+ DockerStrategy : & buildapi.DockerBuildStrategy {},
166
+ },
167
+ Output : buildapi.BuildOutput {
168
+ To : & kapi.ObjectReference {
169
+ Kind : "DockerImage" ,
170
+ Name : "repository/data" ,
171
+ },
172
+ },
173
+ },
174
+ },
175
+ Status : buildapi.BuildConfigStatus {
176
+ LastVersion : 10 ,
177
+ },
178
+ }
179
+ newBC := & buildapi.BuildConfig {
180
+ ObjectMeta : metav1.ObjectMeta {Name : "config-id" , Namespace : "namespace" },
181
+ Spec : buildapi.BuildConfigSpec {
182
+ RunPolicy : buildapi .BuildRunPolicySerial ,
183
+ Triggers : []buildapi.BuildTriggerPolicy {
184
+ {
185
+ GitHubWebHook : & buildapi.WebHookTrigger {Secret : "12345" },
186
+ Type : buildapi .GitHubWebHookBuildTriggerType ,
187
+ },
188
+ {
189
+ Type : "unknown" ,
190
+ },
191
+ },
192
+ CommonSpec : buildapi.CommonSpec {
193
+ Source : buildapi.BuildSource {
194
+ Git : & buildapi.GitBuildSource {
195
+ URI : "http://github.com/my/repository" ,
196
+ },
197
+ ContextDir : "context" ,
198
+ },
199
+ Strategy : buildapi.BuildStrategy {
200
+ DockerStrategy : & buildapi.DockerBuildStrategy {},
201
+ },
202
+ Output : buildapi.BuildOutput {
203
+ To : & kapi.ObjectReference {
204
+ Kind : "DockerImage" ,
205
+ Name : "repository/data" ,
206
+ },
207
+ },
208
+ },
209
+ },
210
+ Status : buildapi.BuildConfigStatus {
211
+ LastVersion : 9 ,
212
+ },
213
+ }
214
+ LegacyStrategy .PrepareForCreate (ctx , buildConfig )
215
+ errs := LegacyStrategy .Validate (ctx , buildConfig )
216
+ if len (errs ) != 0 {
217
+ t .Errorf ("Unexpected error validating %v" , errs )
218
+ }
219
+ if buildConfig .Spec .SuccessfulBuildsHistoryLimit != nil {
220
+ t .Errorf ("Expected successful limit to be nil, got %d" , * buildConfig .Spec .SuccessfulBuildsHistoryLimit )
221
+ }
222
+ if buildConfig .Spec .FailedBuildsHistoryLimit != nil {
223
+ t .Errorf ("Expected failed limit to be nil, got %d" , * buildConfig .Spec .FailedBuildsHistoryLimit )
224
+ }
96
225
97
226
// lastversion cannot go backwards
98
227
newBC .Status .LastVersion = 9
99
- Strategy .PrepareForUpdate (ctx , newBC , buildConfig )
228
+ LegacyStrategy .PrepareForUpdate (ctx , newBC , buildConfig )
100
229
if newBC .Status .LastVersion != buildConfig .Status .LastVersion {
101
230
t .Errorf ("Expected version=%d, got %d" , buildConfig .Status .LastVersion , newBC .Status .LastVersion )
102
231
}
103
232
104
233
// lastversion can go forwards
105
234
newBC .Status .LastVersion = 11
106
- Strategy .PrepareForUpdate (ctx , newBC , buildConfig )
235
+ LegacyStrategy .PrepareForUpdate (ctx , newBC , buildConfig )
107
236
if newBC .Status .LastVersion != 11 {
108
237
t .Errorf ("Expected version=%d, got %d" , 11 , newBC .Status .LastVersion )
109
238
}
110
239
111
- Strategy .PrepareForCreate (ctx , buildConfig )
112
- errs = Strategy .Validate (ctx , buildConfig )
240
+ LegacyStrategy .PrepareForCreate (ctx , buildConfig )
241
+ errs = LegacyStrategy .Validate (ctx , buildConfig )
113
242
if len (errs ) != 0 {
114
243
t .Errorf ("Unexpected error validating %v" , errs )
115
244
}
116
245
117
246
invalidBuildConfig := & buildapi.BuildConfig {}
118
- errs = Strategy .Validate (ctx , invalidBuildConfig )
247
+ errs = LegacyStrategy .Validate (ctx , invalidBuildConfig )
119
248
if len (errs ) == 0 {
120
249
t .Errorf ("Expected error validating" )
121
250
}
0 commit comments