forked from opensearch-project/security
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backport 1.x] When excluding fields also exclude the term + `.keywor…
…d` (opensearch-project#2378) * [Backport 2.x] When excluding fields also exclude the term + `.keyword` (opensearch-project#2377) (cherry picked from commit b9652fe) * Switch to transport client for 1.x Signed-off-by: Peter Nied <[email protected]> Signed-off-by: Peter Nied <[email protected]> Co-authored-by: opensearch-trigger-bot[bot] <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Co-authored-by: Peter Nied <[email protected]>
- Loading branch information
1 parent
6112667
commit aa37a42
Showing
4 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
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
87 changes: 87 additions & 0 deletions
87
src/test/java/org/opensearch/security/dlic/dlsfls/FlsKeywordTests.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,87 @@ | ||
/* | ||
* 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.dlic.dlsfls; | ||
|
||
import java.util.Arrays; | ||
|
||
import org.apache.http.Header; | ||
import org.apache.http.HttpStatus; | ||
import org.junit.Test; | ||
|
||
import org.opensearch.action.index.IndexRequest; | ||
import org.opensearch.action.support.WriteRequest.RefreshPolicy; | ||
import org.opensearch.client.Client; | ||
import org.opensearch.client.transport.TransportClient; | ||
import org.opensearch.common.xcontent.XContentType; | ||
import org.opensearch.security.test.DynamicSecurityConfig; | ||
import org.opensearch.security.test.helper.rest.RestHelper.HttpResponse; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.core.IsEqual.equalTo; | ||
import static org.hamcrest.core.IsNot.not; | ||
import static org.hamcrest.core.StringContains.containsString; | ||
|
||
public class FlsKeywordTests extends AbstractDlsFlsTest { | ||
|
||
protected void populateData(TransportClient tc) { | ||
tc.index(new IndexRequest("movies").id("0").setRefreshPolicy(RefreshPolicy.IMMEDIATE) | ||
.source("{\"year\": 2013, \"title\": \"Rush\", \"actors\": [\"Daniel Br\u00FChl\", \"Chris Hemsworth\", \"Olivia Wilde\"]}", XContentType.JSON)).actionGet(); | ||
} | ||
|
||
private Header movieUser = encodeBasicHeader("user_aaa", "password"); | ||
private Header movieNoActorUser = encodeBasicHeader("user_bbb", "password"); | ||
|
||
private String[] actors = new String[] {"Daniel Br\u00FChl", "Chris Hemsworth", "Olivia Wilde"}; | ||
|
||
@Test | ||
public void testKeywordsAreAutomaticallyFiltered() throws Exception { | ||
setup(new DynamicSecurityConfig() | ||
.setSecurityRoles("roles_keyword.yml") | ||
.setSecurityRolesMapping("roles_mappings_keyword.yml")); | ||
|
||
final String searchQuery = "/movies/_search?filter_path=hits.hits._source"; | ||
final String aggQuery = "/movies/_search?filter_path=aggregations.actors.buckets.key"; | ||
final String aggByActorKeyword = "{\"aggs\":{\"actors\":{\"terms\":{\"field\":\"actors.keyword\",\"size\":10}}}}"; | ||
|
||
// At document level, the user should see actors | ||
final HttpResponse searchMovieUser = rh.executeGetRequest(searchQuery, movieUser); | ||
assertThat(searchMovieUser.getStatusCode(), equalTo(HttpStatus.SC_OK)); | ||
assertActorsPresent(searchMovieUser); | ||
|
||
// In aggregate search, the user should see actors | ||
final HttpResponse searchAggregateMovieUser = rh.executePostRequest(aggQuery, aggByActorKeyword, movieUser); | ||
assertThat(searchAggregateMovieUser.getStatusCode(), equalTo(HttpStatus.SC_OK)); | ||
assertActorsPresent(searchAggregateMovieUser); | ||
|
||
// At document level, the user should see no actors | ||
final HttpResponse searchMovieNoActorUser = rh.executeGetRequest(searchQuery, movieNoActorUser); | ||
assertThat(searchMovieNoActorUser.getStatusCode(), equalTo(HttpStatus.SC_OK)); | ||
assertActorsNotPresent(searchMovieNoActorUser); | ||
|
||
// In aggregate search, the user should see no actors | ||
final HttpResponse searchAggregateMovieNoActorUser = rh.executePostRequest(aggQuery, aggByActorKeyword, movieNoActorUser); | ||
assertThat(searchAggregateMovieNoActorUser.getStatusCode(), equalTo(HttpStatus.SC_OK)); | ||
assertActorsNotPresent(searchAggregateMovieNoActorUser); | ||
} | ||
|
||
private void assertActorsPresent(final HttpResponse response) { | ||
Arrays.stream(actors).forEach(actor -> { | ||
assertThat(response.getBody(), containsString(actor)); | ||
}); | ||
} | ||
|
||
private void assertActorsNotPresent(final HttpResponse response) { | ||
Arrays.stream(actors).forEach(actor -> { | ||
assertThat(response.getBody(), not(containsString(actor))); | ||
}); | ||
} | ||
} |
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,18 @@ | ||
--- | ||
_meta: | ||
type: "roles" | ||
config_version: 2 | ||
movies: | ||
index_permissions: | ||
- index_patterns: | ||
- "movies*" | ||
allowed_actions: | ||
- "read" | ||
movies_no_actors: | ||
index_permissions: | ||
- index_patterns: | ||
- "movies*" | ||
fls: | ||
- "~actors" | ||
allowed_actions: | ||
- "read" |
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,22 @@ | ||
--- | ||
_meta: | ||
type: "rolesmapping" | ||
config_version: 2 | ||
movies: | ||
reserved: false | ||
hidden: false | ||
backend_roles: [] | ||
hosts: [] | ||
users: | ||
- "user_aaa" | ||
and_backend_roles: [] | ||
description: "Movies with all fields" | ||
movies_no_actors: | ||
reserved: false | ||
hidden: false | ||
backend_roles: [] | ||
hosts: [] | ||
users: | ||
- "user_bbb" | ||
and_backend_roles: [] | ||
description: "Movies without actors" |