Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 65CD218747 for ; Tue, 29 Sep 2015 06:35:47 +0000 (UTC) Received: (qmail 8696 invoked by uid 500); 29 Sep 2015 06:35:47 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 8549 invoked by uid 500); 29 Sep 2015 06:35:47 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 8320 invoked by uid 99); 29 Sep 2015 06:35:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Sep 2015 06:35:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D2FB8E091A; Tue, 29 Sep 2015 06:35:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Tue, 29 Sep 2015 06:35:55 -0000 Message-Id: <1fab8e9c6e61404ca56340ce593c51a3@git.apache.org> In-Reply-To: <3479958462924f40a3a4c20286649742@git.apache.org> References: <3479958462924f40a3a4c20286649742@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [10/18] ignite git commit: Added test. Added test. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/2575cf33 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/2575cf33 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/2575cf33 Branch: refs/heads/ignite-1329 Commit: 2575cf33a4b8389aa84e9cf0ee68d48c3a48bfa7 Parents: 8fea96e Author: sboikov Authored: Mon Sep 28 13:07:59 2015 +0300 Committer: sboikov Committed: Mon Sep 28 13:07:59 2015 +0300 ---------------------------------------------------------------------- .../cache/IgniteDynamicCacheFilterTest.java | 150 +++++++++++++++++++ .../testsuites/IgniteCacheTestSuite4.java | 3 + 2 files changed, 153 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/2575cf33/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteDynamicCacheFilterTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteDynamicCacheFilterTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteDynamicCacheFilterTest.java new file mode 100644 index 0000000..4d543e0 --- /dev/null +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteDynamicCacheFilterTest.java @@ -0,0 +1,150 @@ +/* + * 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.ignite.internal.processors.cache; + +import java.util.HashMap; +import java.util.Map; +import org.apache.ignite.Ignite; +import org.apache.ignite.IgniteCache; +import org.apache.ignite.cluster.ClusterNode; +import org.apache.ignite.configuration.CacheConfiguration; +import org.apache.ignite.configuration.IgniteConfiguration; +import org.apache.ignite.lang.IgnitePredicate; +import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi; +import org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder; +import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder; +import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; + +import static org.apache.ignite.cache.CacheMode.REPLICATED; +import static org.apache.ignite.cache.CacheRebalanceMode.SYNC; +import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC; + +/** + * + */ +public class IgniteDynamicCacheFilterTest extends GridCommonAbstractTest { + /** */ + private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true); + + /** */ + private static final String ATTR_NAME = "cacheAttr"; + + /** */ + private String attrVal; + + /** {@inheritDoc} */ + @Override protected IgniteConfiguration getConfiguration(String gridName) throws Exception { + IgniteConfiguration cfg = super.getConfiguration(gridName); + + ((TcpDiscoverySpi)cfg.getDiscoverySpi()).setIpFinder(IP_FINDER); + + CacheConfiguration ccfg = new CacheConfiguration(); + + ccfg.setWriteSynchronizationMode(FULL_SYNC); + ccfg.setCacheMode(REPLICATED); + ccfg.setRebalanceMode(SYNC); + + ccfg.setNodeFilter(new TestNodeFilter("A")); + + if (attrVal != null) { + Map attrs = new HashMap<>(); + + attrs.put(ATTR_NAME, attrVal); + + cfg.setUserAttributes(attrs); + } + + cfg.setCacheConfiguration(ccfg); + + return cfg; + } + + /** {@inheritDoc} */ + @Override protected void afterTest() throws Exception { + super.afterTest(); + + stopAllGrids(); + } + + /** + * @throws Exception If failed. + */ + public void testCofiguredCacheFilter() throws Exception { + attrVal = "A"; + + Ignite ignite0 = startGrid(0); + + IgniteCache cache0 = ignite0.cache(null); + + assertNotNull(cache0); + + cache0.put(1, 1); + + attrVal = null; + + Ignite ignite1 = startGrid(1); + + IgniteCache cache1 = ignite1.cache(null); + + assertNotNull(cache1); + + attrVal = "B"; + + Ignite ignite2 = startGrid(2); + + IgniteCache cache2 = ignite2.cache(null); + + assertNotNull(cache2); + + attrVal = "A"; + + Ignite ignite3 = startGrid(3); + + IgniteCache cache3 = ignite3.cache(null); + + assertNotNull(cache3); + + assertNotNull(cache0.localPeek(1)); + assertNotNull(cache3.localPeek(1)); + + assertNull(cache1.localPeek(1)); + assertNull(cache2.localPeek(1)); + } + + /** + * + */ + private static class TestNodeFilter implements IgnitePredicate { + /** */ + private String val; + + /** + * @param val Attribute value. + */ + public TestNodeFilter(String val) { + assert val != null; + + this.val = val; + } + + /** {@inheritDoc} */ + @Override public boolean apply(ClusterNode node) { + return val.equals(node.attribute(ATTR_NAME)); + } + } +} http://git-wip-us.apache.org/repos/asf/ignite/blob/2575cf33/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite4.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite4.java b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite4.java index 0ebcc81..959ceb1 100644 --- a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite4.java +++ b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite4.java @@ -65,6 +65,7 @@ import org.apache.ignite.internal.processors.cache.IgniteCacheTxPeekModesTest; import org.apache.ignite.internal.processors.cache.IgniteCacheTxPreloadNoWriteTest; import org.apache.ignite.internal.processors.cache.IgniteCacheTxReplicatedPeekModesTest; import org.apache.ignite.internal.processors.cache.IgniteCacheTxStoreValueTest; +import org.apache.ignite.internal.processors.cache.IgniteDynamicCacheFilterTest; import org.apache.ignite.internal.processors.cache.IgniteDynamicCacheStartNoExchangeTimeoutTest; import org.apache.ignite.internal.processors.cache.IgniteDynamicCacheStartSelfTest; import org.apache.ignite.internal.processors.cache.IgniteDynamicCacheWithConfigStartSelfTest; @@ -268,6 +269,8 @@ public class IgniteCacheTestSuite4 extends TestSuite { suite.addTestSuite(GridCacheNearTxPreloadSelfTest.class); suite.addTestSuite(GridReplicatedTxPreloadTest.class); + suite.addTestSuite(IgniteDynamicCacheFilterTest.class); + return suite; } } \ No newline at end of file