-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Implement insecureEdgeTermination options for reencrypt and pasthrough routes #11953
Merged
openshift-bot
merged 1 commit into
openshift:master
from
JacobTanenbaum:v2Reencrypt-redirect
Dec 1, 2016
Merged
Changes from all commits
Commits
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 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 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 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 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 |
---|---|---|
|
@@ -1055,71 +1055,34 @@ func TestValidateTLS(t *testing.T) { | |
} | ||
} | ||
|
||
func TestValidateTLSInsecureEdgeTerminationPolicy(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
route *api.Route | ||
}{ | ||
{ | ||
name: "Passthrough termination", | ||
route: &api.Route{ | ||
Spec: api.RouteSpec{ | ||
TLS: &api.TLSConfig{ | ||
Termination: api.TLSTerminationPassthrough, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "Reencrypt termination", | ||
route: &api.Route{ | ||
Spec: api.RouteSpec{ | ||
TLS: &api.TLSConfig{ | ||
Termination: api.TLSTerminationReencrypt, | ||
DestinationCACertificate: "dca", | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "Reencrypt termination DestCACert", | ||
route: &api.Route{ | ||
Spec: api.RouteSpec{ | ||
TLS: &api.TLSConfig{ | ||
Termination: api.TLSTerminationReencrypt, | ||
DestinationCACertificate: testDestinationCACertificate, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
func TestValidatePassthroughInsecureEdgeTerminationPolicy(t *testing.T) { | ||
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. I think your intent is reasonable here, but I think it is confusing to use a test table to define the single route used in each iteration of the test loop. Consider creating the route in the loop instead and getting ride of |
||
|
||
insecureTypes := []api.InsecureEdgeTerminationPolicyType{ | ||
api.InsecureEdgeTerminationPolicyNone, | ||
api.InsecureEdgeTerminationPolicyAllow, | ||
api.InsecureEdgeTerminationPolicyRedirect, | ||
"support HTTPsec", | ||
"or maybe HSTS", | ||
insecureTypes := map[api.InsecureEdgeTerminationPolicyType]bool{ | ||
"": false, | ||
api.InsecureEdgeTerminationPolicyNone: false, | ||
api.InsecureEdgeTerminationPolicyAllow: true, | ||
api.InsecureEdgeTerminationPolicyRedirect: false, | ||
"support HTTPsec": true, | ||
"or maybe HSTS": true, | ||
} | ||
|
||
for _, tc := range tests { | ||
if errs := validateTLS(tc.route, nil); len(errs) != 0 { | ||
t.Errorf("Test case %s got %d errors where none were expected. %v", | ||
tc.name, len(errs), errs) | ||
for key, expected := range insecureTypes { | ||
route := &api.Route{ | ||
Spec: api.RouteSpec{ | ||
TLS: &api.TLSConfig{ | ||
Termination: api.TLSTerminationPassthrough, | ||
InsecureEdgeTerminationPolicy: key, | ||
}, | ||
}, | ||
} | ||
|
||
tc.route.Spec.TLS.InsecureEdgeTerminationPolicy = "" | ||
if errs := validateTLS(tc.route, nil); len(errs) != 0 { | ||
t.Errorf("Test case %s got %d errors where none were expected. %v", | ||
tc.name, len(errs), errs) | ||
route.Spec.TLS.InsecureEdgeTerminationPolicy = key | ||
errs := validateTLS(route, nil) | ||
if !expected && len(errs) != 0 { | ||
t.Errorf("Test case for Passthrough termination with insecure=%s got %d errors where none where expected. %v", | ||
key, len(errs), errs) | ||
} | ||
|
||
for _, val := range insecureTypes { | ||
tc.route.Spec.TLS.InsecureEdgeTerminationPolicy = val | ||
if errs := validateTLS(tc.route, nil); len(errs) != 1 { | ||
t.Errorf("Test case %s with insecure=%q got %d errors where one was expected. %v", | ||
tc.name, val, len(errs), errs) | ||
} | ||
if expected && len(errs) == 0 { | ||
t.Errorf("Test case for Passthrough termination with insecure=%s got no errors where some where expected.", key) | ||
} | ||
} | ||
} | ||
|
@@ -1258,7 +1221,45 @@ func TestValidateInsecureEdgeTerminationPolicy(t *testing.T) { | |
} | ||
} | ||
|
||
func TestValidateNoTLSInsecureEdgeTerminationPolicy(t *testing.T) { | ||
func TestValidateEdgeReencryptInsecureEdgeTerminationPolicy(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
route *api.Route | ||
}{ | ||
{ | ||
name: "Reencrypt termination", | ||
route: &api.Route{ | ||
Spec: api.RouteSpec{ | ||
TLS: &api.TLSConfig{ | ||
Termination: api.TLSTerminationReencrypt, | ||
DestinationCACertificate: "dca", | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "Reencrypt termination DestCACert", | ||
route: &api.Route{ | ||
Spec: api.RouteSpec{ | ||
TLS: &api.TLSConfig{ | ||
Termination: api.TLSTerminationReencrypt, | ||
DestinationCACertificate: testDestinationCACertificate, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "Edge termination", | ||
route: &api.Route{ | ||
Spec: api.RouteSpec{ | ||
TLS: &api.TLSConfig{ | ||
Termination: api.TLSTerminationEdge, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
insecureTypes := map[api.InsecureEdgeTerminationPolicyType]bool{ | ||
api.InsecureEdgeTerminationPolicyNone: false, | ||
api.InsecureEdgeTerminationPolicyAllow: false, | ||
|
@@ -1267,22 +1268,17 @@ func TestValidateNoTLSInsecureEdgeTerminationPolicy(t *testing.T) { | |
"or maybe HSTS": true, | ||
} | ||
|
||
for key, expected := range insecureTypes { | ||
route := &api.Route{ | ||
Spec: api.RouteSpec{ | ||
TLS: &api.TLSConfig{ | ||
Termination: api.TLSTerminationEdge, | ||
InsecureEdgeTerminationPolicy: key, | ||
}, | ||
}, | ||
} | ||
errs := validateTLS(route, nil) | ||
if !expected && len(errs) != 0 { | ||
t.Errorf("Test case for edge termination with insecure=%s got %d errors where none were expected. %v", | ||
key, len(errs), errs) | ||
} | ||
if expected && len(errs) == 0 { | ||
t.Errorf("Test case for edge termination with insecure=%s got no errors where some were expected.", key) | ||
for _, tc := range tests { | ||
for key, expected := range insecureTypes { | ||
tc.route.Spec.TLS.InsecureEdgeTerminationPolicy = key | ||
errs := validateTLS(tc.route, nil) | ||
if !expected && len(errs) != 0 { | ||
t.Errorf("Test case %s with insecure=%s got %d errors where none were expected. %v", | ||
tc.name, key, len(errs), errs) | ||
} | ||
if expected && len(errs) == 0 { | ||
t.Errorf("Test case %s with insecure=%s got no errors where some were expected.", tc.name, key) | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains 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 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
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.
Consider updating the unit test for this function to ensure against regression.
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.
@marun updated the unit test