Skip to content
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

Add tests for CRD CEL validation #2984

Open
bjee19 opened this issue Jan 7, 2025 · 2 comments
Open

Add tests for CRD CEL validation #2984

bjee19 opened this issue Jan 7, 2025 · 2 comments
Labels
good first issue Good for newcomers refined Requirements are refined and the issue is ready to be implemented. size/medium Estimated to be completed within a week tests Pull requests that update tests
Milestone

Comments

@bjee19
Copy link
Contributor

bjee19 commented Jan 7, 2025

The gateway-api repository has tests for their CEL validation on CRDs found here: https://github.com/kubernetes-sigs/gateway-api/tree/main/pkg/test/cel.

Currently we manually test our CEL validation on CRDs, however it could be beneficial to follow the standard set in the gateway-api repository and create functional tests for them.

Acceptance

  • Verify that all CEL statements work as expected for the CRDs we own.
@bjee19 bjee19 added enhancement New feature or request tests Pull requests that update tests and removed enhancement New feature or request labels Jan 7, 2025
@mpstefan mpstefan added refined Requirements are refined and the issue is ready to be implemented. size/medium Estimated to be completed within a week labels Jan 7, 2025
@mpstefan mpstefan added this to the v2.0.0 milestone Jan 7, 2025
@kate-osborn kate-osborn added the good first issue Good for newcomers label Jan 28, 2025
@iaiw3br
Copy link

iaiw3br commented Feb 21, 2025

@bjee19 hi! I want to help you with this issue. Can you describe what I need to do ?
It's will be my the first contribute in this project, or maybe you have a smaller problem I could start with ?

@bjee19
Copy link
Contributor Author

bjee19 commented Feb 21, 2025

Hey @iaiw3br, thanks for your interest in our project!

This issue has to do with some Common expression language validation we put on our CRDs. This is the kubebuilder explanation of various possible CRD validations, and here's what it looks like in our code:

// NginxGatewayStatus defines the state of the NginxGateway.
type NginxGatewayStatus struct {
// +optional
// +listType=map
// +listMapKey=type
// +kubebuilder:validation:MaxItems=8
Conditions []metav1.Condition `json:"conditions,omitempty"`
}

We currently don't have any tests for these CEL validation statements, so we have to do it all manually by creating the resource and ensuring it throws an error when we create a CRD which breaks the CEL validation.

We'd like to add tests for all our CRDs so we can avoid having to rely on our manual testing. Here's an example test of what we're looking for from the gateway api repo. Where you can see how thoroughly they test their CEL validation on the HTTPRoute resource .

We don't have as much CEL validation so it will be much smaller, but let me know if you have any more questions or if you'd like to choose something smaller. Here's another story #1939 which probably is smaller if that interests you more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers refined Requirements are refined and the issue is ready to be implemented. size/medium Estimated to be completed within a week tests Pull requests that update tests
Projects
Status: 🆕 New
Development

No branches or pull requests

4 participants