[exo-jcr-commits] exo-jcr SVN: r4802 - in jcr/trunk/exo.jcr.component.core/src: test/java/org/exoplatform/services/jcr/impl/core/query and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Aug 26 09:49:44 EDT 2011


Author: nzamosenchuk
Date: 2011-08-26 09:49:43 -0400 (Fri, 26 Aug 2011)
New Revision: 4802

Added:
   jcr/trunk/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/core/query/TestFuzzySearch.java
Modified:
   jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/DescendantSelfAxisQuery.java
Log:
EXOJCR-1474 : Test and the fix added.

Modified: jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/DescendantSelfAxisQuery.java
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/DescendantSelfAxisQuery.java	2011-08-26 12:07:28 UTC (rev 4801)
+++ jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/DescendantSelfAxisQuery.java	2011-08-26 13:49:43 UTC (rev 4802)
@@ -454,6 +454,10 @@
       {
          contextScorer = contextQuery.weight(searcher).scorer(reader, scoreDocsInOrder, topScorer);
          subScorer = subQuery.weight(searcher).scorer(reader, scoreDocsInOrder, topScorer);
+         if (subScorer == null)
+         {
+            return null;
+         }
          HierarchyResolver resolver = (HierarchyResolver)reader;
          return new DescendantSelfAxisScorer(searcher.getSimilarity(), reader, resolver);
       }

Added: jcr/trunk/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/core/query/TestFuzzySearch.java
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/core/query/TestFuzzySearch.java	                        (rev 0)
+++ jcr/trunk/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/core/query/TestFuzzySearch.java	2011-08-26 13:49:43 UTC (rev 4802)
@@ -0,0 +1,132 @@
+/*
+ * Copyright (C) 2003-2008 eXo Platform SAS.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Affero General Public License
+ * as published by the Free Software Foundation; either version 3
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see<http://www.gnu.org/licenses/>.
+ */
+package org.exoplatform.services.jcr.impl.core.query;
+
+import org.exoplatform.services.jcr.JcrImplBaseTest;
+import org.exoplatform.services.log.ExoLogger;
+import org.exoplatform.services.log.Log;
+
+import javax.jcr.Node;
+import javax.jcr.RepositoryException;
+import javax.jcr.query.Query;
+import javax.jcr.query.QueryManager;
+import javax.jcr.query.QueryResult;
+
+/**
+ * Created by The eXo Platform SAS. Originally came from https://issues.jboss.org/browse/EXOJCR-1474
+ * 
+ * @author dongpd at exoplatform.com
+ * @version $Id: $
+ */
+public class TestFuzzySearch extends JcrImplBaseTest
+{
+   private final Log log = ExoLogger.getLogger("exo.jcr.component.core.TestFuzzySearch");
+
+   public void testFuzzySearch1() throws Exception
+   {
+      try
+      {
+         executeSQL("select * from nt:base where contains(.,'aaaaa~0.8')  and jcr:path like '/%'", 1);
+      }
+      catch (Exception e)
+      {
+         log.error(e);
+         fail("Exception thrown.");
+      }
+   }
+
+   public void testFuzzySearch2() throws Exception
+   {
+      try
+      {
+         executeSQL("select * from nt:base where contains(.,'user~0.8')  and jcr:path like '/%'", 0);
+      }
+      catch (Exception e)
+      {
+         log.error(e);
+         fail("Exception thrown.");
+      }
+   }
+
+   public void testFuzzySearch3() throws Exception
+   {
+      try
+      {
+         executeSQL("select * from nt:base where contains(.,'pharse~0.8') and jcr:path like '/%'", 0);
+      }
+      catch (Exception e)
+      {
+         log.error(e);
+         fail("Exception thrown.");
+      }
+   }
+
+   public void testFuzzySearch4() throws Exception
+   {
+      try
+      {
+         executeSQL("select * from nt:base where contains(.,'recherce~0.8') and jcr:path like '/%'", 0);
+      }
+      catch (Exception e)
+      {
+         log.error(e);
+         fail("Exception thrown.");
+      }
+   }
+
+   /**
+    * Execute a Jcr SQL and show node names of resultset
+    * 
+    * @param param
+    * @throws RepositoryException
+    */
+   private void executeSQL(String sql, int expectedCount) throws RepositoryException
+   {
+      // Build Jcr Query
+      QueryManager qManager = session.getWorkspace().getQueryManager();
+      Query query = qManager.createQuery(sql, Query.SQL);
+
+      // Execute Jcr Query
+      QueryResult result = query.execute();
+      long totalCount = result.getNodes().getSize();
+      assertEquals("Wrong result set size.", expectedCount, totalCount);
+   }
+
+   @Override
+   public void setUp() throws Exception
+   {
+      super.setUp();
+
+      Node testRoot = root.addNode("testRooot");
+      Node testNode1 = testRoot.addNode("testNode1");
+      testNode1.setProperty("field", "aaaaa");
+      Node testNode2 = testRoot.addNode("testNode2");
+      testNode2.setProperty("field", "aaaab");
+      Node testNode3 = testRoot.addNode("testNode3");
+      testNode3.setProperty("field", "aaabb");
+      Node testNode4 = testRoot.addNode("testNode4");
+      testNode4.setProperty("field", "aabbb");
+      Node testNode5 = testRoot.addNode("testNode5");
+      testNode5.setProperty("field", "abbbb");
+      Node testNode6 = testRoot.addNode("testNode6");
+      testNode6.setProperty("field", "bbbbb");
+      Node testNode7 = testRoot.addNode("testNode7");
+      testNode7.setProperty("field", "ddddd");
+      root.save();
+   }
+
+}
\ No newline at end of file


Property changes on: jcr/trunk/exo.jcr.component.core/src/test/java/org/exoplatform/services/jcr/impl/core/query/TestFuzzySearch.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain



More information about the exo-jcr-commits mailing list