blob: dad8e05f428d72195d253ae782be4682e3b0d59f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.cache.lucene;
import static org.apache.geode.cache.lucene.test.LuceneTestUtilities.INDEX_NAME;
import static org.apache.geode.cache.lucene.test.LuceneTestUtilities.REGION_NAME;
import static org.apache.geode.distributed.ConfigurationProperties.SECURITY_CLIENT_AUTH_INIT;
import static org.apache.geode.distributed.ConfigurationProperties.SECURITY_MANAGER;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import java.io.IOException;
import java.util.List;
import java.util.Properties;
import java.util.concurrent.TimeUnit;
import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.Region;
import org.apache.geode.cache.RegionShortcut;
import org.apache.geode.cache.client.ClientCache;
import org.apache.geode.cache.client.ClientCacheFactory;
import org.apache.geode.cache.client.ClientRegionShortcut;
import org.apache.geode.cache.client.ServerOperationException;
import org.apache.geode.cache.server.CacheServer;
import org.apache.geode.distributed.ConfigurationProperties;
import org.apache.geode.examples.SimpleSecurityManager;
import org.apache.geode.security.NotAuthorizedException;
import org.apache.geode.security.templates.UserPasswordAuthInit;
import org.apache.geode.test.junit.categories.LuceneTest;
import org.apache.geode.test.junit.categories.SecurityTest;
@Category({SecurityTest.class, LuceneTest.class})
@RunWith(JUnitParamsRunner.class)
public class LuceneClientSecurityDUnitTest extends LuceneQueriesAccessorBase {
@Test
@Parameters(method = "getSearchIndexUserNameAndExpectedResponses")
public void verifySearchIndexPermissions(
LuceneCommandsSecurityDUnitTest.UserNameAndExpectedResponse user) {
// Start server
int serverPort = dataStore1.invoke(() -> startCacheServer());
dataStore1.invoke(() -> createRegionIndexAndData());
// Start client
accessor.invoke(() -> startClient(user.getUserName(), serverPort));
// Attempt query
accessor.invoke(
() -> executeTextSearch(user.getExpectAuthorizationError(), user.getExpectedResponse()));
}
protected void createRegionIndexAndData() {
Cache cache = getCache();
LuceneService luceneService = LuceneServiceProvider.get(cache);
luceneService.createIndexFactory().addField("field1").create(INDEX_NAME, REGION_NAME);
Region region = cache.createRegionFactory(RegionShortcut.PARTITION).create(REGION_NAME);
region.put("key", new org.apache.geode.cache.lucene.test.TestObject("hello", "world"));
}
private int startCacheServer() throws IOException {
Properties props = getDistributedSystemProperties();
props.setProperty(SECURITY_MANAGER, SimpleSecurityManager.class.getName());
final Cache cache = getCache(props);
final CacheServer server = cache.addCacheServer();
server.setPort(0);
server.start();
return server.getPort();
}
private void startClient(String userName, int serverPort) {
Properties props = new Properties();
props.put(ConfigurationProperties.SERIALIZABLE_OBJECT_FILTER,
"org.apache.geode.cache.lucene.test.TestObject");
props.setProperty("security-username", userName);
props.setProperty("security-password", userName);
props.setProperty(SECURITY_CLIENT_AUTH_INIT, UserPasswordAuthInit.class.getName());
ClientCacheFactory clientCacheFactory = new ClientCacheFactory(props);
clientCacheFactory.addPoolServer("localhost", serverPort);
ClientCache clientCache = getClientCache(clientCacheFactory);
clientCache.createClientRegionFactory(ClientRegionShortcut.CACHING_PROXY).create(REGION_NAME);
}
private void executeTextSearch(boolean expectAuthorizationError, String expectedResponse)
throws LuceneQueryException, InterruptedException {
LuceneService service = LuceneServiceProvider.get(getCache());
LuceneQuery<Integer, TestObject> query =
service.createLuceneQueryFactory().create(INDEX_NAME, REGION_NAME, "hello", "field1");
try {
service.waitUntilFlushed(INDEX_NAME, REGION_NAME, 5, TimeUnit.MINUTES);
assertFalse(expectAuthorizationError);
} catch (Exception e) {
if (!expectAuthorizationError) {
throw e;
}
assertThat(e).hasCauseInstanceOf(ServerOperationException.class);
assertThat(e.getCause()).hasCauseInstanceOf(NotAuthorizedException.class);
}
try {
List<LuceneResultStruct<Integer, TestObject>> results = query.findResults();
assertEquals(1, results.size());
assertEquals("key", results.get(0).getKey());
assertFalse(expectAuthorizationError);
} catch (Exception e) {
if (!expectAuthorizationError) {
throw e;
}
assertThat(e).hasCauseInstanceOf(NotAuthorizedException.class);
assertThat(e.getLocalizedMessage()).contains(expectedResponse);
}
}
protected LuceneCommandsSecurityDUnitTest.UserNameAndExpectedResponse[] getSearchIndexUserNameAndExpectedResponses() {
return new LuceneCommandsSecurityDUnitTest.UserNameAndExpectedResponse[] {
new LuceneCommandsSecurityDUnitTest.UserNameAndExpectedResponse("nopermissions", true,
"nopermissions not authorized for DATA:READ"),
new LuceneCommandsSecurityDUnitTest.UserNameAndExpectedResponse("DATAREAD", false, null)};
}
}