Package mmrnmhrm.core.engine_client

Source Code of mmrnmhrm.core.engine_client.SearchCompilersTask_Test

/*******************************************************************************
* Copyright (c) 2014, 2014 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:
*     Bruno Medeiros - initial API and implementation
*******************************************************************************/
package mmrnmhrm.core.engine_client;

import static dtool.engine.CompilerInstallDetector_Test.MULTIPLE_IN_ONE_PATH;
import static melnorme.utilbox.core.Assert.AssertNamespace.assertTrue;

import java.util.List;

import mmrnmhrm.core.engine_client.SearchAndAddCompilersTask;
import mmrnmhrm.tests.CommonDeeWorkspaceTest;

import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.dltk.launching.InterpreterStandin;
import org.junit.Test;

public class SearchCompilersTask_Test extends CommonDeeWorkspaceTest {
 
  @Test
  public void testBasic() throws Exception { testBasic$(); }
  public void testBasic$() throws Exception {
    testWithPathVar(MULTIPLE_IN_ONE_PATH.toString());
   
    String PATH_SEP = SearchAndAddCompilersTask.getPathsSeparator();
    testWithPathVar(workingDirPath("__NON_EXISTING___###__").toString() + PATH_SEP +
      MULTIPLE_IN_ONE_PATH.toString());
  }
 
  protected void testWithPathVar(String pathsString) {
    SearchAndAddCompilersTask compilerSearchTask = new SearchAndAddCompilersTask(
      new NullProgressMonitor());
    compilerSearchTask.searchPathsString(pathsString, "_dummy_");
   
    List<InterpreterStandin> foundInstalls = compilerSearchTask.getFoundInstalls();
    assertTrue(foundInstalls.size() == 2);
    assertEquals(foundInstalls.get(0).getInstallLocation().getPath(),
      epath(MULTIPLE_IN_ONE_PATH).append("gdc"));
    assertEquals(foundInstalls.get(1).getInstallLocation().getPath(),
      epath(MULTIPLE_IN_ONE_PATH).append("ldc2"));
  }
 
}
TOP

Related Classes of mmrnmhrm.core.engine_client.SearchCompilersTask_Test

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.