Package org.eclipse.php.core.tests.searchEngine

Source Code of org.eclipse.php.core.tests.searchEngine.SearchFieldTests

/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*     Zend Technologies
*******************************************************************************/
package org.eclipse.php.core.tests.searchEngine;

import java.io.ByteArrayInputStream;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IncrementalProjectBuilder;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.dltk.core.DLTKCore;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.core.ISourceModule;
import org.eclipse.dltk.core.index2.search.ISearchEngine;
import org.eclipse.dltk.core.index2.search.ISearchEngine.MatchRule;
import org.eclipse.dltk.core.index2.search.ISearchEngine.SearchFor;
import org.eclipse.dltk.core.index2.search.ISearchRequestor;
import org.eclipse.dltk.core.index2.search.ModelAccess;
import org.eclipse.dltk.core.search.IDLTKSearchScope;
import org.eclipse.dltk.core.search.SearchEngine;
import org.eclipse.php.core.tests.AbstractPDTTTest;
import org.eclipse.php.core.tests.PHPCoreTests;
import org.eclipse.php.core.tests.PdttFile;
import org.eclipse.php.internal.core.PHPVersion;
import org.eclipse.php.internal.core.project.PHPNature;

public class SearchFieldTests extends AbstractPDTTTest {

  // protected static final char SELECTION_CsHAR = '|';
  protected static final Map<PHPVersion, String[]> TESTS = new LinkedHashMap<PHPVersion, String[]>();
  static {
    TESTS.put(PHPVersion.PHP5,
        new String[] { "/workspace/searchEngine/php5" });
    // TESTS.put(PHPVersion.PHP5_3, new String[] {
    // "/workspace/searchEngine/php5",
    // "/workspace/searchEngine/php53" });
  };

  protected static IProject project;
  protected static IFile testFile;

  public static void setUpSuite() throws Exception {
    project = ResourcesPlugin.getWorkspace().getRoot()
        .getProject("AutoSelectionEngine");
    if (project.exists()) {
      return;
    }

    project.create(null);
    project.open(null);

    // configure nature
    IProjectDescription desc = project.getDescription();
    desc.setNatureIds(new String[] { PHPNature.ID });
    project.setDescription(desc, null);
  }

  public static void tearDownSuite() throws Exception {
    project.close(null);
    project.delete(true, true, null);
    project = null;
  }

  public SearchFieldTests(String description) {
    super(description);
  }

  public static Test suite() {

    TestSuite suite = new TestSuite("Search Field Tests");

    for (final PHPVersion phpVersion : TESTS.keySet()) {
      TestSuite phpVerSuite = new TestSuite(phpVersion.getAlias());

      for (String testsDirectory : TESTS.get(phpVersion)) {

        for (final String fileName : getPDTTFiles(testsDirectory)) {
          try {
            final PdttFile pdttFile = new PdttFile(fileName);
            phpVerSuite.addTest(new SearchFieldTests(phpVersion
                .getAlias() + " - /" + fileName) {

              protected void setUp() throws Exception {
                PHPCoreTests.setProjectPhpVersion(project,
                    phpVersion);
              }

              protected void tearDown() throws Exception {
                if (testFile != null) {
                  testFile.delete(true, null);
                  testFile = null;
                }
              }

              protected void runTest() throws Throwable {
                List<String> paths = getSelection(pdttFile
                    .getFile());
                int occurrences = Integer.parseInt(pdttFile
                    .getExpected().trim());

                boolean proposalsEqual = true;
                if (paths.size() == occurrences) {
                } else {
                  proposalsEqual = false;
                }

                if (!proposalsEqual) {
                  StringBuilder errorBuf = new StringBuilder();
                  errorBuf.append("\nEXPECTED OCCURRENCE TIMES:\n-----------------------------\n");
                  errorBuf.append(pdttFile.getExpected());
                  errorBuf.append("\nACTUAL OCCURRENCE TIMES:\n-----------------------------\n");
                  errorBuf.append(paths.size());
                  fail(errorBuf.toString());
                }
              }
            });
          } catch (final Exception e) {
            phpVerSuite.addTest(new TestCase(fileName) { // dummy
                  // test
                  // indicating
                  // PDTT
                  // file
                  // parsing
                  // failure
                  protected void runTest() throws Throwable {
                    throw e;
                  }
                });
          }
        }
      }
      suite.addTest(phpVerSuite);
    }

    // Create a setup wrapper
    TestSetup setup = new TestSetup(suite) {
      protected void setUp() throws Exception {
        setUpSuite();
      }

      protected void tearDown() throws Exception {
        tearDownSuite();
      }
    };
    return setup;
  }

  /**
   * Creates test file with the specified content and calculates the source
   * range for the selection. Selection characters themself are stripped off.
   *
   * @param data
   *            File data
   * @return offset where's the offset character set.
   * @throws Exception
   */
  protected static void createFile(String data) throws Exception {

    testFile = project.getFile("test.php");
    testFile.create(new ByteArrayInputStream(data.getBytes()), true, null);
    project.refreshLocal(IResource.DEPTH_INFINITE, null);

    project.build(IncrementalProjectBuilder.FULL_BUILD, null);
    PHPCoreTests.waitForIndexer();
    // PHPCoreTests.waitForAutoBuild();
  }

  protected static ISourceModule getSourceModule() {
    return DLTKCore.createSourceModuleFrom(testFile);
  }

  protected static int getSearchFlags(boolean includeInterp) {
    int flags = IDLTKSearchScope.SOURCES
        | IDLTKSearchScope.APPLICATION_LIBRARIES;
    if (includeInterp)
      flags |= IDLTKSearchScope.SYSTEM_LIBRARIES;
    return flags;
  }

  protected static List<String> getSelection(String data) throws Exception {
    createFile(data);
    ISourceModule sourceModule = DLTKCore.createSourceModuleFrom(testFile);

    IDLTKSearchScope scope = SearchEngine.createSearchScope(sourceModule,
        getSearchFlags(false));
    ISearchEngine searchEngine = ModelAccess.getSearchEngine(scope
        .getLanguageToolkit());
    final List<String> paths = new ArrayList<String>();
    if (searchEngine != null) {
      ISearchRequestor requestor = new ISearchRequestor() {
        public void match(int elementType, int flags, int offset,
            int length, int nameOffset, int nameLength,
            String elementName, String metadata, String doc,
            String qualifier, String parent,
            ISourceModule sourceModule, boolean isReference) {

          paths.add(sourceModule.getPath().toString());
        }
      };

      searchEngine.search(IModelElement.FIELD, null, "$testField", 0, 0,
          0, SearchFor.ALL_OCCURENCES, MatchRule.EXACT, scope,
          requestor, new NullProgressMonitor());

    }
    return paths;
  }
}
TOP

Related Classes of org.eclipse.php.core.tests.searchEngine.SearchFieldTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.