-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
rds: expose path match criterion via route entry #2531
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
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 |
---|---|---|
|
@@ -3773,13 +3773,27 @@ name: foo | |
EnvoyException, "response body size is 4097 bytes; maximum is 4096"); | ||
} | ||
|
||
void checkPathMatchCriterion(const Route* route, const std::string& expected_matcher, | ||
PathMatchType expected_type) { | ||
ASSERT_NE(nullptr, route); | ||
auto route_entry = route->routeEntry(); | ||
ASSERT_NE(nullptr, route_entry); | ||
auto& match_criterion = route_entry->pathMatchCriterion(); | ||
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. Nit: const etc. |
||
EXPECT_EQ(expected_matcher, match_criterion.matcher()); | ||
EXPECT_EQ(expected_type, match_criterion.matchType()); | ||
} | ||
|
||
TEST(RouteConfigurationV2, RouteConfigGetters) { | ||
std::string yaml = R"EOF( | ||
name: foo | ||
virtual_hosts: | ||
- name: bar | ||
domains: ["*"] | ||
routes: | ||
- match: { regex: "/rege[xy]" } | ||
route: { cluster: ww2 } | ||
- match: { path: "/exact-path" } | ||
route: { cluster: ww2 } | ||
- match: { prefix: "/"} | ||
route: { cluster: www2 } | ||
metadata: { filter_metadata: { com.bar.foo: { baz: test_value } } } | ||
|
@@ -3789,8 +3803,14 @@ name: foo | |
NiceMock<Upstream::MockClusterManager> cm; | ||
ConfigImpl config(parseRouteConfigurationFromV2Yaml(yaml), runtime, cm, true); | ||
|
||
auto* route_entry = config.route(genHeaders("www.foo.com", "/", "GET"), 0)->routeEntry(); | ||
checkPathMatchCriterion(config.route(genHeaders("www.foo.com", "/regex", "GET"), 0).get(), | ||
"/rege[xy]", PathMatchType::Regex); | ||
checkPathMatchCriterion(config.route(genHeaders("www.foo.com", "/exact-path", "GET"), 0).get(), | ||
"/exact-path", PathMatchType::Exact); | ||
auto route = config.route(genHeaders("www.foo.com", "/", "GET"), 0); | ||
checkPathMatchCriterion(route.get(), "/", PathMatchType::Prefix); | ||
|
||
auto route_entry = route->routeEntry(); | ||
const auto& metadata = route_entry->metadata(); | ||
|
||
EXPECT_EQ("test_value", | ||
|
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.
I'm wondering if I've forgotten how to read C++ :) Can you explain why this is needed (or even how it passes type checking?).
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, so the inheritance structure is a little convoluted here.
RouteEntryImplBase
inherits fromRouteEntry
,Matchable
, and nowPathMatchCriterion
(among others). It has three derived classes (PrefixRouteEntryImpl
,PathRouteEntryImpl
, andRegexRouteEntryImpl
) that implement theMatchable
andPathMatchCriterion
abstract methods since they implement all of the match-type specific logic. So, for thepathMatchCriterion()
method (part of theRouteEntry
interface), it just returns itself as thePathMatchCriterion
since it implements that interface. Does that help clarify things?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.
Does it ever need to be directly instantiated (i.e. be concrete)? Or do we only use derived classes? If the latter, it seems we don't need to define it.
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.
The intent of the class was to group the idea of a route match type and a matcher since one is needed to interpret the other (like a virtualized POD struct) - as opposed to polluting the RouteEntry interface (which is already starting to feel a little big) with a
routeMatchType()
method and arouteMatchString()
method or something. I'm happy to promote them to the RouteEntry interface if that seems like a net gain, though.