File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
core/src/test/java/org/elasticsearch/xpack/core/security/authz/permission
security/src/test/java/org/elasticsearch/xpack/security/authz Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -377,9 +377,6 @@ tests:
377377- class : org.elasticsearch.search.basic.SearchWithRandomDisconnectsIT
378378 method : testSearchWithRandomDisconnects
379379 issue : https://github.com/elastic/elasticsearch/issues/122707
380- - class : org.elasticsearch.xpack.security.authz.RBACEngineTests
381- method : testBuildUserPrivilegeResponseCombinesIndexPrivileges
382- issue : https://github.com/elastic/elasticsearch/issues/126130
383380- class : org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
384381 method : test
385382 issue : https://github.com/elastic/elasticsearch/issues/126139
Original file line number Diff line number Diff line change 1414import org .elasticsearch .action .bulk .TransportBulkAction ;
1515import org .elasticsearch .action .search .TransportSearchAction ;
1616import org .elasticsearch .cluster .metadata .AliasMetadata ;
17+ import org .elasticsearch .cluster .metadata .DataStream ;
1718import org .elasticsearch .cluster .metadata .IndexAbstraction ;
1819import org .elasticsearch .cluster .metadata .IndexMetadata ;
1920import org .elasticsearch .cluster .metadata .Metadata ;
@@ -647,6 +648,7 @@ public void testAllowedActionsMatcher() {
647648 }
648649
649650 public void testAllowedActionsMatcherWithSelectors () {
651+ assumeTrue ("failure store feature must be enabled" , DataStream .isFailureStoreFeatureFlagEnabled ());
650652 Role fromRole = Role .builder (EMPTY_RESTRICTED_INDICES , "fromRole" )
651653 .add (IndexPrivilege .READ_FAILURE_STORE , "ind*" )
652654 .add (IndexPrivilege .READ , "ind*" )
Original file line number Diff line number Diff line change @@ -1416,6 +1416,7 @@ public void testBuildUserPrivilegeResponse() {
14161416 }
14171417
14181418 public void testBuildUserPrivilegeResponseCombinesIndexPrivileges () {
1419+ assumeTrue ("failure store feature must be enabled" , DataStream .isFailureStoreFeatureFlagEnabled ());
14191420 final BytesArray query = new BytesArray ("""
14201421 {"term":{"public":true}}""" );
14211422 final Role role = Role .builder (RESTRICTED_INDICES , "test" , "role" )
You can’t perform that action at this time.
0 commit comments