@@ -18,20 +18,25 @@ package v1
18
18
19
19
import (
20
20
"context"
21
+ "strconv"
21
22
"testing"
22
23
23
24
"github.com/google/go-cmp/cmp"
25
+ "go.uber.org/zap"
24
26
authv1 "k8s.io/api/authentication/v1"
25
27
corev1 "k8s.io/api/core/v1"
26
28
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
27
29
28
30
"knative.dev/pkg/apis"
31
+ logtesting "knative.dev/pkg/logging/testing"
29
32
"knative.dev/pkg/ptr"
30
-
31
33
"knative.dev/serving/pkg/apis/config"
32
34
"knative.dev/serving/pkg/apis/serving"
35
+ cconfig "knative.dev/serving/pkg/reconciler/configuration/config"
33
36
)
34
37
38
+ const someTimeoutSeconds = 400
39
+
35
40
func TestConfigurationDefaulting (t * testing.T ) {
36
41
tests := []struct {
37
42
name string
@@ -156,6 +161,53 @@ func TestConfigurationDefaulting(t *testing.T) {
156
161
},
157
162
},
158
163
},
164
+ }, {
165
+ name : "run latest with identical timeout defaults" ,
166
+ in : & Configuration {
167
+ Spec : ConfigurationSpec {
168
+ Template : RevisionTemplateSpec {
169
+ Spec : RevisionSpec {
170
+ PodSpec : corev1.PodSpec {
171
+ EnableServiceLinks : ptr .Bool (true ),
172
+ Containers : []corev1.Container {{
173
+ Image : "busybox" ,
174
+ }},
175
+ },
176
+ ContainerConcurrency : ptr .Int64 (config .DefaultContainerConcurrency ),
177
+ },
178
+ },
179
+ },
180
+ },
181
+ want : & Configuration {
182
+ Spec : ConfigurationSpec {
183
+ Template : RevisionTemplateSpec {
184
+ Spec : RevisionSpec {
185
+ PodSpec : corev1.PodSpec {
186
+ EnableServiceLinks : ptr .Bool (true ),
187
+ Containers : []corev1.Container {{
188
+ Name : config .DefaultUserContainerName ,
189
+ Image : "busybox" ,
190
+ Resources : defaultResources ,
191
+ ReadinessProbe : defaultProbe ,
192
+ }},
193
+ },
194
+ TimeoutSeconds : ptr .Int64 (someTimeoutSeconds ),
195
+ ContainerConcurrency : ptr .Int64 (config .DefaultContainerConcurrency ),
196
+ },
197
+ },
198
+ },
199
+ },
200
+ ctx : defaultConfigurationContextWithStore (logtesting .TestLogger (t ), corev1.ConfigMap {ObjectMeta : metav1.ObjectMeta {Name : config .FeaturesConfigName }},
201
+ corev1.ConfigMap {
202
+ ObjectMeta : metav1.ObjectMeta {
203
+ Name : config .DefaultsConfigName ,
204
+ },
205
+ Data : map [string ]string {
206
+ "revision-timeout-seconds" : strconv .Itoa (someTimeoutSeconds ),
207
+ "revision-response-start-timeout-seconds" : strconv .Itoa (someTimeoutSeconds ),
208
+ "revision-idle-timeout-seconds" : strconv .Itoa (someTimeoutSeconds ),
209
+ },
210
+ })(context .Background ()),
159
211
}}
160
212
161
213
for _ , test := range tests {
@@ -328,3 +380,13 @@ func TestConfigurationUserInfo(t *testing.T) {
328
380
})
329
381
}
330
382
}
383
+
384
+ func defaultConfigurationContextWithStore (logger * zap.SugaredLogger , cms ... corev1.ConfigMap ) func (ctx context.Context ) context.Context {
385
+ return func (ctx context.Context ) context.Context {
386
+ s := cconfig .NewStore (logger )
387
+ for _ , cm := range cms {
388
+ s .OnConfigChanged (& cm )
389
+ }
390
+ return s .ToContext (ctx )
391
+ }
392
+ }
0 commit comments