[Rest Api Compatibility] Enable tests that are already fixed (#74174)

With types removal changes being available under rest api compatibility I have removed the block entries for tests which are already fixed
relates #51816
This commit is contained in:
Przemyslaw Gomulka 2021-06-29 09:11:31 +02:00 committed by GitHub
parent dc70bd6092
commit 5ac94b5263
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 16 deletions

View file

@ -26,7 +26,6 @@ testClusters.all {
tasks.named("yamlRestCompatTest").configure {
systemProperty 'tests.rest.blacklist', [
'ingest-useragent/30_custom_regex/Test user agent processor with custom regex file',
'ingest-useragent/20_useragent_processor/Test user agent processor with defaults',
'ingest-useragent/20_useragent_processor/Test user agent processor with parameters'
].join(',')
}

View file

@ -51,18 +51,6 @@ tasks.named("test").configure {
tasks.named("yamlRestCompatTest").configure {
systemProperty 'tests.rest.blacklist', [
'painless/70_execute_painless_scripts/Execute with date field context (single-value)',
'painless/70_execute_painless_scripts/Execute with date field context (multi-value)',
'painless/70_execute_painless_scripts/Execute with double field context (single-value)',
'painless/70_execute_painless_scripts/Execute with double field context (multi-value)',
'painless/70_execute_painless_scripts/Execute with geo point field context (single-value)',
'painless/70_execute_painless_scripts/Execute with geo point field context (multi-value)',
'painless/70_execute_painless_scripts/Execute with ip field context (single-value)',
'painless/70_execute_painless_scripts/Execute with ip field context (multi-value)',
'painless/70_execute_painless_scripts/Execute with long field context (single-value)',
'painless/70_execute_painless_scripts/Execute with long field context (multi-value)',
'painless/70_execute_painless_scripts/Execute with keyword field context (single-value)',
'painless/70_execute_painless_scripts/Execute with keyword field context (multi-value)',
].join(',')
}

View file

@ -22,8 +22,6 @@ restResources {
tasks.named("yamlRestCompatTest").configure {
systemProperty 'tests.rest.blacklist', [
'/20_parent_join/Test parent_id query',
'/20_parent_join/Test basic',
'/30_inner_hits/Test two sub-queries with only one having inner_hits'
].join(',')
}

View file

@ -106,11 +106,12 @@ tasks.named("yamlRestCompatTest").configure {
'mtermvectors/11_basic_with_types/Basic tests for multi termvector get',
'mtermvectors/21_deprecated_with_types/Deprecated camel case and _ parameters should fail in Term Vectors query',
'mtermvectors/30_mix_typeless_typeful/mtermvectors without types on an index that has types',
'search/150_rewrite_on_coordinator/Ensure that we fetch the document only once', //terms_lookup
'search/171_terms_query_with_types/Terms Query with No.of terms exceeding index.max_terms_count should FAIL', //bulk
'search/260_parameter_validation/test size=-1 is deprecated', //size=-1 change
'search/310_match_bool_prefix/multi_match multiple fields with cutoff_frequency throws exception', //cutoff_frequency
'search/340_type_query/type query', // type_query - probably should behave like match_all
'search_shards/10_basic/Search shards aliases with and without filters',
'suggest/20_completion/Suggestions with source should work'
] + v7compatiblityNotSupportedTests())
.join(',')
}