You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2016/02/16 11:17:58 UTC

ignite git commit: ignite-1232 Fixed IgniteSqlSchemaIndexingTest

Repository: ignite
Updated Branches:
  refs/heads/ignite-1232 3f6d0c9a6 -> 55f39e4a6


ignite-1232 Fixed IgniteSqlSchemaIndexingTest


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/55f39e4a
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/55f39e4a
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/55f39e4a

Branch: refs/heads/ignite-1232
Commit: 55f39e4a69fb1c5b24efaabdfe38a228ef86c6f8
Parents: 3f6d0c9
Author: sboikov <sb...@gridgain.com>
Authored: Tue Feb 16 13:17:46 2016 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Tue Feb 16 13:17:46 2016 +0300

----------------------------------------------------------------------
 .../cache/IgniteCacheJoinQueryTest.java         | 135 +++++++++++++++++++
 .../query/IgniteSqlSchemaIndexingTest.java      |   2 +-
 2 files changed, 136 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/55f39e4a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheJoinQueryTest.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheJoinQueryTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheJoinQueryTest.java
new file mode 100644
index 0000000..5a86da9
--- /dev/null
+++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheJoinQueryTest.java
@@ -0,0 +1,135 @@
+/*
+ * 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 org.apache.ignite.Ignite;
+import org.apache.ignite.IgniteCache;
+import org.apache.ignite.cache.CacheKeyConfiguration;
+import org.apache.ignite.cache.QueryEntity;
+import org.apache.ignite.configuration.CacheConfiguration;
+import org.apache.ignite.configuration.IgniteConfiguration;
+import org.apache.ignite.internal.util.typedef.F;
+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;
+
+/**
+ * TODO IGNITE-1232.
+ */
+public class IgniteCacheJoinQueryTest extends GridCommonAbstractTest {
+    /** */
+    private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true);
+
+    /** */
+    private static final int NODES = 1;
+
+    /** {@inheritDoc} */
+    @Override protected IgniteConfiguration getConfiguration(String gridName) throws Exception {
+        IgniteConfiguration cfg = super.getConfiguration(gridName);
+
+        ((TcpDiscoverySpi)cfg.getDiscoverySpi()).setIpFinder(IP_FINDER);
+
+        CacheKeyConfiguration keyCfg = new CacheKeyConfiguration();
+
+        keyCfg.setTypeName(TestKey1.class.getName());
+        keyCfg.setAffinityKeyFieldName("affKey");
+
+        cfg.setCacheKeyConfiguration(keyCfg);
+
+        cfg.setMarshaller(null);
+
+        return cfg;
+    }
+
+    /** {@inheritDoc} */
+    @Override protected void beforeTestsStarted() throws Exception {
+        super.beforeTestsStarted();
+
+        startGridsMultiThreaded(NODES);
+    }
+
+    /** {@inheritDoc} */
+    @Override protected void afterTestsStopped() throws Exception {
+        stopAllGrids();
+
+        super.afterTestsStopped();
+    }
+
+    /**
+     * @throws Exception If failed.
+     */
+    public void testAffinityKey() throws Exception {
+        CacheConfiguration ccfg = new CacheConfiguration();
+
+        QueryEntity qryEntity = new QueryEntity();
+        qryEntity.setKeyType(TestKey1.class.getName());
+        qryEntity.setValueType(Integer.class.getName());
+
+        ccfg.setQueryEntities(F.asList(qryEntity));
+
+        Ignite ignite = ignite(0);
+
+        IgniteCache cache = ignite.createCache(ccfg);
+
+        try {
+
+        }
+        finally {
+            ignite.destroyCache(ccfg.getName());
+        }
+    }
+
+    /**
+     *
+     */
+    public static class TestKey1 {
+        /** */
+        private int key;
+
+        /** */
+        private int affKey;
+
+        /**
+         * @param key Key.
+         */
+        public TestKey1(int key) {
+            this.key = key;
+
+            affKey = key + 1;
+        }
+
+        /** {@inheritDoc} */
+        @Override public boolean equals(Object o) {
+            if (this == o)
+                return true;
+
+            if (o == null || getClass() != o.getClass())
+                return false;
+
+            TestKey1 testKey1 = (TestKey1)o;
+
+            return key == testKey1.key;
+        }
+
+        /** {@inheritDoc} */
+        @Override public int hashCode() {
+            return key;
+        }
+    }
+}

http://git-wip-us.apache.org/repos/asf/ignite/blob/55f39e4a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSchemaIndexingTest.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSchemaIndexingTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSchemaIndexingTest.java
index 5c9acb5..0cd8d13 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSchemaIndexingTest.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSchemaIndexingTest.java
@@ -102,7 +102,7 @@ public class IgniteSqlSchemaIndexingTest extends GridCommonAbstractTest {
 
                 return null;
             }
-        }, IgniteException.class, "Schema for cache already registered");
+        }, IgniteException.class, "Cache already registered: ");
     }
 
     /**