This repository was archived by the owner on Dec 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 521
Fix validation of references to CA certificate in TLS config #1119
Merged
slaskawi
merged 5 commits into
mongodb:master
from
adamliesko:adamliesko/stricter-tls-config-validations-#1114
Oct 21, 2022
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a6a973b
Fix validation of references to CA certificate in TLS config
adamliesko eb8711f
convert tests to table driven
adamliesko 883995a
Merge branch 'master' of https://github.com/mongodb/mongodb-kubernete…
adamliesko ad7e21e
Fix incorrect test fixtures without CAcert values
adamliesko a4d6508
reuse mgr in reconciler
adamliesko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -87,6 +87,15 @@ func newScramReplicaSet(users ...mdbv1.MongoDBUser) mdbv1.MongoDBCommunity { | |
| } | ||
|
|
||
| func newTestReplicaSetWithTLS() mdbv1.MongoDBCommunity { | ||
| return newTestReplicaSetWithTLSCaCertificateReferences(&mdbv1.LocalObjectReference{ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please help me understand what this change bring to the table? I'm not sure if it changes anything?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It allows us to create test fixtures, where the caller passes custom arguments.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, understood. Thanks |
||
| Name: "caConfigMap", | ||
| }, | ||
| &mdbv1.LocalObjectReference{ | ||
| Name: "certificateKeySecret", | ||
| }) | ||
| } | ||
|
|
||
| func newTestReplicaSetWithTLSCaCertificateReferences(caConfigMap, caCertificateSecret *mdbv1.LocalObjectReference) mdbv1.MongoDBCommunity { | ||
| return mdbv1.MongoDBCommunity{ | ||
| ObjectMeta: metav1.ObjectMeta{ | ||
| Name: "my-rs", | ||
|
|
@@ -101,10 +110,9 @@ func newTestReplicaSetWithTLS() mdbv1.MongoDBCommunity { | |
| Modes: []mdbv1.AuthMode{"SCRAM"}, | ||
| }, | ||
| TLS: mdbv1.TLS{ | ||
| Enabled: true, | ||
| CaConfigMap: &mdbv1.LocalObjectReference{ | ||
| Name: "caConfigMap", | ||
| }, | ||
| Enabled: true, | ||
| CaConfigMap: caConfigMap, | ||
| CaCertificateSecret: caCertificateSecret, | ||
| CertificateKeySecret: mdbv1.LocalObjectReference{ | ||
| Name: "certificateKeySecret", | ||
| }, | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
There's quite a lot of code duplication within this test. Can I ask you to re-implement it to the parameters-driven test, like https://github.com/mongodb/mongodb-kubernetes-operator/blob/master/test/e2e/replica_set_arbiter/replica_set_arbiter_test.go#L28 ?
Uh oh!
There was an error while loading. Please reload this page.
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.
Yes sure. I initially started it as a table-driven test, but skimming through the codebase it didn't seem to me like a prevalent pattern.