-
Notifications
You must be signed in to change notification settings - Fork 490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v0.6.2 #1814
Release v0.6.2 #1814
Changes from all commits
737dcc3
4977a5d
e45b4f0
4fa8fc5
de79495
71d7400
09a11ae
e8d3558
4c4c0d5
c1a1ae8
49fc7c6
2324c2c
b9d5351
abdc042
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
Copyright 2022 The Kubernetes Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package tests | ||
|
||
import ( | ||
"testing" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/types" | ||
|
||
"sigs.k8s.io/gateway-api/apis/v1beta1" | ||
"sigs.k8s.io/gateway-api/conformance/utils/kubernetes" | ||
"sigs.k8s.io/gateway-api/conformance/utils/suite" | ||
) | ||
|
||
func init() { | ||
ConformanceTests = append(ConformanceTests, GatewayWithAttachedRoutes) | ||
} | ||
|
||
var GatewayWithAttachedRoutes = suite.ConformanceTest{ | ||
ShortName: "GatewayWithAttachedRoutes", | ||
Description: "A Gateway in the gateway-conformance-infra namespace should be attached to routes.", | ||
Manifests: []string{"tests/gateway-with-attached-routes.yaml"}, | ||
Test: func(t *testing.T, s *suite.ConformanceTestSuite) { | ||
t.Run("Gateway listener should have one valid http routes attached", func(t *testing.T) { | ||
gwNN := types.NamespacedName{Name: "gateway-with-one-attached-route", Namespace: "gateway-conformance-infra"} | ||
listeners := []v1beta1.ListenerStatus{{ | ||
Name: v1beta1.SectionName("http"), | ||
SupportedKinds: []v1beta1.RouteGroupKind{{ | ||
Group: (*v1beta1.Group)(&v1beta1.GroupVersion.Group), | ||
Kind: v1beta1.Kind("HTTPRoute"), | ||
}}, | ||
Conditions: []metav1.Condition{{ | ||
Type: string(v1beta1.ListenerConditionAccepted), | ||
Status: metav1.ConditionTrue, | ||
Reason: "", //any reason | ||
}}, | ||
AttachedRoutes: 1, | ||
}} | ||
|
||
kubernetes.GatewayStatusMustHaveListeners(t, s.Client, s.TimeoutConfig, gwNN, listeners) | ||
}) | ||
|
||
t.Run("Gateway listener should have two valid http routes attached", func(t *testing.T) { | ||
gwNN := types.NamespacedName{Name: "gateway-with-two-attached-routes", Namespace: "gateway-conformance-infra"} | ||
listeners := []v1beta1.ListenerStatus{{ | ||
Name: v1beta1.SectionName("http"), | ||
SupportedKinds: []v1beta1.RouteGroupKind{{ | ||
Group: (*v1beta1.Group)(&v1beta1.GroupVersion.Group), | ||
Kind: v1beta1.Kind("HTTPRoute"), | ||
}}, | ||
Conditions: []metav1.Condition{{ | ||
Type: string(v1beta1.ListenerConditionAccepted), | ||
Status: metav1.ConditionTrue, | ||
Reason: "", //any reason | ||
}}, | ||
AttachedRoutes: 2, | ||
}} | ||
|
||
kubernetes.GatewayStatusMustHaveListeners(t, s.Client, s.TimeoutConfig, gwNN, listeners) | ||
}) | ||
}, | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
coincidentally this is the first conformance test that actually asserts on
ListenerConditionAccepted
so it might cause a little friction, there are a few tests usingProgrammed
for similar assertions (e.g.GatewaySecretReferenceGrantAllInNamespace
)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I understand it this is more of a calling out than a request for change. Let me know if I'm misunderstood, however.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah just a callout in case anyone else sees an issue with it