Skip to content

Commit

Permalink
Add skip for newly-added test
Browse files Browse the repository at this point in the history
The test fails on MixedClusterClientYamlTestSuiteIT because 2.x still
has the infinite loop until backport.

Signed-off-by: Michael Froh <froh@amazon.com>
  • Loading branch information
msfroh committed Sep 20, 2024
1 parent dff498d commit 6ddd18b
Showing 1 changed file with 17 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,22 @@ setup:
},
"required_matches": 1
}
# Do index refresh
- do:
indices.refresh:
index: test

---
# Delete Index when connection is teardown
teardown:
- do:
indices.delete:
index: test
---
"Invalid docs":
- skip:
version: "- 2.99.99"
reason: "parsing of these objects would infinite loop prior to 2.18"
# The following documents are invalid.
- do:
catch: /parsing_exception/
Expand All @@ -70,7 +86,7 @@ setup:
id: 3
body: {
"ISBN13": "V12154942123242",
"catalog": ["Arrays in Action"],
"catalog": [ "Arrays in Action" ],
"required_matches": 1
}
- do:
Expand Down Expand Up @@ -103,18 +119,6 @@ setup:
"catalog": [ 12345 ],
"required_matches": 1
}
# Do index refresh
- do:
indices.refresh:
index: test

---
# Delete Index when connection is teardown
teardown:
- do:
indices.delete:
index: test

---
# Verify that mappings under the catalog field did not expand
# and no dynamic fields were created.
Expand Down

0 comments on commit 6ddd18b

Please sign in to comment.