-
Notifications
You must be signed in to change notification settings - Fork 5.5k
admin: fix config dump order #4197
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
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 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 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 |
|---|---|---|
|
|
@@ -532,19 +532,72 @@ TEST_P(AdminInstanceTest, ConfigDump) { | |
| return msg; | ||
| }); | ||
| const std::string expected_json = R"EOF({ | ||
| "configs": { | ||
| "foo": { | ||
| "configs": [ | ||
| { | ||
| "@type": "type.googleapis.com/google.protobuf.StringValue", | ||
| "value": "bar" | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| )EOF"; | ||
| EXPECT_EQ(Http::Code::OK, getCallback("/config_dump", header_map, response)); | ||
| std::string output = response.toString(); | ||
| EXPECT_EQ(expected_json, output); | ||
| } | ||
|
|
||
| TEST_P(AdminInstanceTest, ConfigDumpMaintainsOrder) { | ||
| // Add configs in random order and validate config_dump dumps in the order. | ||
| auto bootstrap_entry = admin_.getConfigTracker().add("bootstrap", [] { | ||
| auto msg = std::make_unique<ProtobufWkt::StringValue>(); | ||
| msg->set_value("bootstrap_config"); | ||
| return msg; | ||
| }); | ||
| auto route_entry = admin_.getConfigTracker().add("routes", [] { | ||
| auto msg = std::make_unique<ProtobufWkt::StringValue>(); | ||
| msg->set_value("routes_config"); | ||
| return msg; | ||
| }); | ||
| auto listener_entry = admin_.getConfigTracker().add("listeners", [] { | ||
| auto msg = std::make_unique<ProtobufWkt::StringValue>(); | ||
| msg->set_value("listeners_config"); | ||
| return msg; | ||
| }); | ||
| auto cluster_entry = admin_.getConfigTracker().add("clusters", [] { | ||
| auto msg = std::make_unique<ProtobufWkt::StringValue>(); | ||
| msg->set_value("clusters_config"); | ||
| return msg; | ||
| }); | ||
| const std::string expected_json = R"EOF({ | ||
| "configs": [ | ||
| { | ||
| "@type": "type.googleapis.com/google.protobuf.StringValue", | ||
| "value": "bootstrap_config" | ||
| }, | ||
| { | ||
| "@type": "type.googleapis.com/google.protobuf.StringValue", | ||
| "value": "clusters_config" | ||
| }, | ||
| { | ||
| "@type": "type.googleapis.com/google.protobuf.StringValue", | ||
| "value": "listeners_config" | ||
| }, | ||
| { | ||
| "@type": "type.googleapis.com/google.protobuf.StringValue", | ||
| "value": "routes_config" | ||
| } | ||
| ] | ||
| } | ||
| )EOF"; | ||
| // Run it multiple times and validate that order is preserved. | ||
| for (size_t i = 0; i < 5; i++) { | ||
| Buffer::OwnedImpl response; | ||
| Http::HeaderMapImpl header_map; | ||
| EXPECT_EQ(Http::Code::OK, getCallback("/config_dump", header_map, response)); | ||
| std::string output = response.toString(); | ||
|
Member
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: |
||
| EXPECT_EQ(expected_json, output); | ||
| } | ||
| } | ||
|
|
||
| TEST_P(AdminInstanceTest, Runtime) { | ||
| Http::HeaderMapImpl header_map; | ||
| Buffer::OwnedImpl response; | ||
|
|
||
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.
Nit: you don't need to assign to a variable/retain results here, they aren't used below.
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.
With out that config_dump is not build as expected. Not sure why though. The test above this ConfigDump test also has the same issue. Could n't quite figure out why.
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.
Oh, maybe it's because these are smart pointers, RAII, got it.