Added ExecuteFunction test
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/b782b6be Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/b782b6be Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/b782b6be Branch: refs/heads/feature/GEODE-1571 Commit: b782b6beccc4c04f5bd72b6c237d3ffe997b2eee Parents: dbcdf33 Author: Kevin J. Duling <kdul...@pivotal.io> Authored: Tue Jun 28 13:27:53 2016 -0700 Committer: Kevin J. Duling <kdul...@pivotal.io> Committed: Tue Jun 28 13:27:53 2016 -0700 ---------------------------------------------------------------------- ...lientExecuteFunctionAuthDistributedTest.java | 60 ++++++++++++++++++++ 1 file changed, 60 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/b782b6be/geode-core/src/test/java/com/gemstone/gemfire/security/IntegratedClientExecuteFunctionAuthDistributedTest.java ---------------------------------------------------------------------- diff --git a/geode-core/src/test/java/com/gemstone/gemfire/security/IntegratedClientExecuteFunctionAuthDistributedTest.java b/geode-core/src/test/java/com/gemstone/gemfire/security/IntegratedClientExecuteFunctionAuthDistributedTest.java new file mode 100644 index 0000000..089517a --- /dev/null +++ b/geode-core/src/test/java/com/gemstone/gemfire/security/IntegratedClientExecuteFunctionAuthDistributedTest.java @@ -0,0 +1,60 @@ +/* + * 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 com.gemstone.gemfire.security; + +import org.junit.Test; +import org.junit.experimental.categories.Category; + +import com.gemstone.gemfire.cache.client.ClientCache; +import com.gemstone.gemfire.cache.execute.Function; +import com.gemstone.gemfire.cache.execute.FunctionService; +import com.gemstone.gemfire.cache.execute.ResultCollector; +import com.gemstone.gemfire.internal.cache.functions.TestFunction; +import com.gemstone.gemfire.test.junit.categories.DistributedTest; + +@Category(DistributedTest.class) +public class IntegratedClientExecuteFunctionAuthDistributedTest extends AbstractIntegratedClientAuthDistributedTest { + + private final static Function function = new TestFunction(true, TestFunction.TEST_FUNCTION1); + + @Test + public void testExecuteRegionFunction() { + + FunctionService.registerFunction(function); + + client1.invoke("logging in with dataReader", () -> { + ClientCache cache = createClientCache("dataReader", "1234567", serverPort); + + FunctionService.registerFunction(function); + assertNotAuthorized(() -> FunctionService.onServer(cache.getDefaultPool()) + .withArgs(Boolean.TRUE) + .execute(function.getId()), "DATA:WRITE"); + }); + + client2.invoke("logging in with super-user", () -> { + ClientCache cache = createClientCache("super-user", "1234567", serverPort); + + FunctionService.registerFunction(function); + ResultCollector rc = FunctionService.onServer(cache.getDefaultPool()) + .withArgs(Boolean.TRUE) + .execute(function.getId()); + rc.getResult(); + }); + } +} + +