@@ -43,6 +43,10 @@ const MAX_FILE_TIME = 1000 * 30
4343const MAX_TEST_TIME = 1000 * 3
4444
4545const freeSkips = {
46+ // not supported yet
47+ '/free/cluster.desired_nodes/10_basic.yml' : [ '*' ] ,
48+ '/free/health/30_feature.yml' : [ '*' ] ,
49+ '/free/health/40_useractions.yml' : [ '*' ] ,
4650 // the v8 client never sends the scroll_id in querystgring,
4751 // the way the test is structured causes a security exception
4852 'free/scroll/10_basic.yml' : [ 'Body params override query string' ] ,
@@ -63,13 +67,17 @@ const freeSkips = {
6367 // the expected error is returning a 503,
6468 // which triggers a retry and the node to be marked as dead
6569 'search.aggregation/240_max_buckets.yml' : [ '*' ] ,
70+ // long values and json do not play nicely together
71+ 'search.aggregation/40_range.yml' : [ 'Min and max long range bounds' ] ,
6672 // the yaml runner assumes that null means "does not exists",
6773 // while null is a valid json value, so the check will fail
6874 'search/320_disallow_queries.yml' : [ 'Test disallow expensive queries' ] ,
6975 'free/tsdb/90_unsupported_operations.yml' : [ 'noop update' ]
7076}
7177const platinumBlackList = {
78+ 'api_key/10_basic.yml' : [ 'Test get api key' ] ,
7279 'api_key/20_query.yml' : [ '*' ] ,
80+ 'api_key/11_invalidation.yml' : [ 'Test invalidate api key by realm name' ] ,
7381 'analytics/histogram.yml' : [ 'Histogram requires values in increasing order' ] ,
7482 // this two test cases are broken, we should
7583 // return on those in the future.
@@ -107,6 +115,7 @@ const platinumBlackList = {
107115 // Investigate why is failing
108116 'ml/inference_crud.yml' : [ '*' ] ,
109117 'ml/categorization_agg.yml' : [ 'Test categorization aggregation with poor settings' ] ,
118+ 'ml/filter_crud.yml' : [ '*' ] ,
110119 // investigate why this is failing
111120 'monitoring/bulk/10_basic.yml' : [ '*' ] ,
112121 'monitoring/bulk/20_privileges.yml' : [ '*' ] ,
@@ -119,6 +128,8 @@ const platinumBlackList = {
119128 'service_accounts/10_basic.yml' : [ '*' ] ,
120129 // we are setting two certificates in the docker config
121130 'ssl/10_basic.yml' : [ '*' ] ,
131+ 'token/10_basic.yml' : [ '*' ] ,
132+ 'token/11_invalidation.yml' : [ '*' ] ,
122133 // very likely, the index template has not been loaded yet.
123134 // we should run a indices.existsTemplate, but the name of the
124135 // template may vary during time.
0 commit comments