-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into flip-assertequal-allowlist-setting
Signed-off-by: Tianli Feng <ftianli@amazon.com>
- Loading branch information
Showing
101 changed files
with
1,212 additions
and
236 deletions.
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
26 changes: 22 additions & 4 deletions
26
distribution/docker/src/test/resources/rest-api-spec/test/11_nodes.yml
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
46 changes: 46 additions & 0 deletions
46
rest-api-spec/src/main/resources/rest-api-spec/test/cat.cluster_manager/10_basic.yml
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
setup: | ||
- skip: | ||
features: allowed_warnings | ||
|
||
--- | ||
"Help": | ||
- skip: | ||
version: " - 1.4.99" | ||
reason: "path _cat/cluster_manager is introduced in 2.0.0" | ||
|
||
- do: | ||
cat.cluster_manager: | ||
help: true | ||
allowed_warnings: | ||
- '[GET /_cat/master] is deprecated! Use [GET /_cat/cluster_manager] instead.' | ||
|
||
- match: | ||
$body: | | ||
/^ id .+ \n | ||
host .+ \n | ||
ip .+ \n | ||
node .+ \n | ||
$/ | ||
--- | ||
"Test cat cluster_manager output": | ||
- skip: | ||
version: " - 1.4.99" | ||
reason: "path _cat/cluster_manager is introduced in 2.0.0" | ||
|
||
- do: | ||
cat.cluster_manager: {} | ||
allowed_warnings: | ||
- '[GET /_cat/master] is deprecated! Use [GET /_cat/cluster_manager] instead.' | ||
|
||
- match: | ||
$body: | | ||
/^ | ||
( \S+ \s+ # node id | ||
[-\w.]+ \s+ # host name | ||
(\d{1,3}\.){3}\d{1,3} \s+ # ip address | ||
[-\w.]+ # node name | ||
\n | ||
) | ||
$/ |
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
34 changes: 30 additions & 4 deletions
34
rest-api-spec/src/main/resources/rest-api-spec/test/cat.nodes/10_basic.yml
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
Oops, something went wrong.