-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move deprecation flags to path section. Add deprecation warning tests…
… for _upgrade API. Ref #47678
- Loading branch information
1 parent
635c7c8
commit 76bd135
Showing
4 changed files
with
163 additions
and
13 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
102 changes: 102 additions & 0 deletions
102
rest-api-spec/src/main/resources/rest-api-spec/test/indices.upgrade/20_deprecated.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,102 @@ | ||
--- | ||
"Basic test for upgrade indices < 8.0.0": | ||
- skip: | ||
version: "8.0.0 - " | ||
reason: "_upgrade api has deprecation header since 8.0.0" | ||
features: "node_selector" | ||
|
||
- do: | ||
indices.create: | ||
index: test_index | ||
body: | ||
settings: | ||
index: | ||
number_of_replicas: 0 | ||
|
||
- do: | ||
indices.upgrade: | ||
index: test_index | ||
node_selector: | ||
version: " - 7.99.99" | ||
|
||
- match: {upgraded_indices.test_index.oldest_lucene_segment_version: '/(\d\.)+\d/'} | ||
- is_true: upgraded_indices.test_index.upgrade_version | ||
|
||
--- | ||
"Upgrade indices ignore unavailable < 8.0.0": | ||
- skip: | ||
version: "8.0.0 - " | ||
reason: "_upgrade api has deprecation header since 8.0.0" | ||
features: "node_selector" | ||
|
||
- do: | ||
indices.create: | ||
index: test_index | ||
body: | ||
settings: | ||
index: | ||
number_of_shards: 1 | ||
number_of_replicas: 0 | ||
|
||
- do: | ||
indices.upgrade: | ||
index: ["does_not_exist", "test_index"] | ||
ignore_unavailable: true | ||
node_selector: | ||
version: " - 7.99.99" | ||
|
||
- match: {_shards.total: 1} | ||
- is_true: upgraded_indices.test_index.upgrade_version | ||
- is_false: upgraded_indices.does_not_exist | ||
|
||
--- | ||
"Upgrade indices allow no indices < 8.0.0": | ||
- skip: | ||
version: "8.0.0 - " | ||
reason: "_upgrade api has deprecation header since 8.0.0" | ||
features: "node_selector" | ||
|
||
- do: | ||
indices.upgrade: | ||
index: test_index | ||
ignore_unavailable: true | ||
allow_no_indices: true | ||
node_selector: | ||
version: " - 7.99.99" | ||
|
||
- match: {_shards.total: 0} | ||
|
||
--- | ||
"Upgrade indices disallow no indices < 8.0.0": | ||
- skip: | ||
version: "8.0.0 - " | ||
reason: "_upgrade api has deprecation header since 8.0.0" | ||
features: "node_selector" | ||
|
||
- do: | ||
catch: missing | ||
indices.upgrade: | ||
index: test_index | ||
ignore_unavailable: true | ||
allow_no_indices: false | ||
node_selector: | ||
version: " - 7.99.99" | ||
|
||
--- | ||
"Upgrade indices disallow unavailable < 8.0.0": | ||
- skip: | ||
version: "8.0.0 - " | ||
reason: "_upgrade api has deprecation header since 8.0.0" | ||
features: "node_selector" | ||
|
||
- do: | ||
indices.create: | ||
index: test_index | ||
|
||
- do: | ||
catch: missing | ||
indices.upgrade: | ||
index: ["test_index", "does_not_exist"] | ||
ignore_unavailable: false | ||
node_selector: | ||
version: " - 7.99.99" |