-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds test to verify that index-template update is a cluster level per…
…mission and fixes existing broken tests Signed-off-by: Darshit Chanpura <[email protected]>
- Loading branch information
1 parent
786454c
commit 260f7bb
Showing
5 changed files
with
120 additions
and
2 deletions.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
src/test/java/org/opensearch/security/IndexTemplateClusterPermissionsCheckTest.java
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,64 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
package org.opensearch.security; | ||
|
||
import org.apache.http.HttpStatus; | ||
import org.junit.Assert; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
import org.opensearch.security.test.SingleClusterTest; | ||
import org.opensearch.security.test.helper.rest.RestHelper; | ||
import org.opensearch.security.test.helper.rest.RestHelper.HttpResponse; | ||
|
||
public class IndexTemplateClusterPermissionsCheckTest extends SingleClusterTest{ | ||
private RestHelper rh; | ||
|
||
final static String indexTemplateBody = "{ \"index_patterns\": [\"sem1234*\"], \"template\": { \"settings\": { \"number_of_shards\": 2, \"number_of_replicas\": 1 }, \"mappings\": { \"properties\": { \"timestamp\": { \"type\": \"date\", \"format\": \"yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis\" }, \"value\": { \"type\": \"double\" } } } } }"; | ||
|
||
private String getFailureResponseReason(String user) { | ||
return "no permissions for [indices:admin/index_template/put] and User [name=" + user + ", backend_roles=[], requestedTenant=null]"; | ||
} | ||
|
||
@Before | ||
public void setupRestHelper() throws Exception{ | ||
setup(); | ||
rh = nonSslRestHelper(); | ||
} | ||
@Test | ||
public void testPutIndexTemplateByNonPrivilegedUser() throws Exception { | ||
String expectedFailureResponse = getFailureResponseReason("ds3"); | ||
|
||
// should fail, as `ds3` user doesn't have correct permissions | ||
HttpResponse response = rh.executePutRequest("/_index_template/sem1234", indexTemplateBody, encodeBasicHeader("ds3", "nagilum")); | ||
Assert.assertEquals(HttpStatus.SC_FORBIDDEN, response.getStatusCode()); | ||
Assert.assertEquals(expectedFailureResponse, response.findValueInJson("error.root_cause[0].reason")); | ||
} | ||
|
||
@Test | ||
public void testPutIndexTemplateByPrivilegedUser() throws Exception { | ||
// should pass, as `sem-user` user has correct permissions | ||
HttpResponse response = rh.executePutRequest("/_index_template/sem1234", indexTemplateBody, encodeBasicHeader("sem-user", "nagilum")); | ||
Assert.assertEquals(HttpStatus.SC_OK, response.getStatusCode()); | ||
} | ||
|
||
@Test | ||
public void testPutIndexTemplateAsIndexLevelPermission() throws Exception { | ||
String expectedFailureResponse = getFailureResponseReason("sem-user2"); | ||
|
||
// should fail, as `sem-user2` is assigned `put-template` permission as index-level, not cluster-level | ||
HttpResponse response = rh.executePutRequest("/_index_template/sem1234", indexTemplateBody, encodeBasicHeader("sem-user2", "nagilum")); | ||
Assert.assertEquals(HttpStatus.SC_FORBIDDEN, response.getStatusCode()); | ||
Assert.assertEquals(expectedFailureResponse, response.findValueInJson("error.root_cause[0].reason")); | ||
} | ||
|
||
} |
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
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