/* * Copyright 2000-2011 JetBrains s.r.o. * * Licensed 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 jetbrains.buildServer.agent.rakerunner.utils; import com.intellij.openapi.util.Pair; import java.io.File; import java.util.Map; import jetbrains.buildServer.RunBuildException; import jetbrains.buildServer.agent.rakerunner.RakeTasksBuildService; import jetbrains.buildServer.agent.rakerunner.RubySdk; import jetbrains.buildServer.rakerunner.RakeRunnerConstants; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import static com.intellij.openapi.util.io.FileUtil.toSystemIndependentName; import static jetbrains.buildServer.rakerunner.RakeRunnerConstants.TEST_UNIT_GEM_VERSION_PROPERTY; /** * @author Roman.Chernyatchik */ public class TestUnitUtil { @NonNls public static final String AUTORUNNER_SCRIPT_PATH = "test/unit/autorunner.rb"; @NonNls public static final String TESTRUNNERMEDIATOR_SCRIPT_PATH = "test/unit/ui/testrunnermediator.rb"; public static final String TEST_UNIT_GEM_NAME = "test-unit"; @NotNull public static String getSDKTestUnitAutoRunnerScriptPath(@NotNull final RubySdk sdk, @NotNull final Map runParams, @NotNull final Map buildParameters, @NotNull final Map runnerEnvParams, @NotNull final String checkoutDirPath) throws RakeTasksBuildService.MyBuildFailureException, RunBuildException { return findTestUnitScript(sdk, AUTORUNNER_SCRIPT_PATH, runParams, buildParameters, runnerEnvParams, checkoutDirPath); } @NotNull public static String getSDKTestUnitTestRunnerMediatorScriptPath(@NotNull final RubySdk sdk, @NotNull final Map runParams, @NotNull final Map buildParameters, @NotNull final Map runnerEnvParams, @NotNull final String checkoutDirPath) throws RakeTasksBuildService.MyBuildFailureException, RunBuildException { return findTestUnitScript(sdk, TESTRUNNERMEDIATOR_SCRIPT_PATH, runParams, buildParameters, runnerEnvParams, checkoutDirPath); } /** * Finds script with given relative path in test-unit gem or Test::Unit framework bundled in SDK * * @param scriptPath Path of given script * @param buildParameters Build params * @return Full path of given script * @throws jetbrains.buildServer.agent.rakerunner.RakeTasksBuildService.MyBuildFailureException If script will not be found * @throws jetbrains.buildServer.RunBuildException Other error */ public static String findTestUnitScript(@NotNull final RubySdk sdk, final String scriptPath, @NotNull final Map runParams, final Map buildParameters, @NotNull final Map runnerEnvParams, @NotNull final String checkoutDirPath) throws RakeTasksBuildService.MyBuildFailureException, RunBuildException { // At first let's try to find script in "test-unit" gem // then in sdk load path final String forcedTestUnitGemVersion = RubySDKUtil.getForcedGemVersion(TEST_UNIT_GEM_VERSION_PROPERTY, buildParameters); // if option is "built-in" let's use built-in Test::Unit in Ruby 1.8.x sdk // else use custom gem version final boolean forceUseBuiltInTestUnit = RakeRunnerConstants.TEST_UNIT_USE_BUILTIN_VERSION_PARAM.equals(forcedTestUnitGemVersion); if (!forceUseBuiltInTestUnit) { // use bundler gems root if it is defined! (i.e. we use bundle exec emulation with custom gem paths) final String bundlerGemRoot = BundlerUtil.determineGemsRootsAccordingToBundlerSettings(sdk, runParams, buildParameters, runnerEnvParams, checkoutDirPath); final String[] gemPaths = bundlerGemRoot == null ? sdk.getGemPaths() : new String[]{bundlerGemRoot}; // If user overrides bundler.path sys var or uses project custom bundle.. // we need to look for test-unit gems in "frozen" paths final Pair pathAndVersion = RubySDKUtil.findGemRootFolderAndVersion(TEST_UNIT_GEM_NAME, gemPaths, forcedTestUnitGemVersion); final String testUnitGemPath = pathAndVersion.first; final String testUnitGemVersion = pathAndVersion.second; if (testUnitGemPath != null) { final String fullScriptPath = testUnitGemPath + File.separatorChar + "lib" + File.separatorChar + scriptPath; if (FileUtil.checkIfExists(fullScriptPath)) { return fullScriptPath; } else { // Error: Script wasn't found in test-unit gem final String msg = "Rake runner isn't compatible with your'" + TEST_UNIT_GEM_NAME + "-" + testUnitGemVersion + "'(" + testUnitGemPath + ") gem. Please submit a feature request."; throw new RakeTasksBuildService.MyBuildFailureException(msg); } } else { // test-unit gem not found if (forcedTestUnitGemVersion != null) { // not "built-in", but something specifed final String msg = "test-unit gem with version '" + forcedTestUnitGemVersion + "' wasn't found in Gem paths of Ruby SDK with interpreter: '" + sdk.getPresentableName() + "'.\n" + "Gem paths:\n" + (bundlerGemRoot == null ? sdk.getGemPathsFetchLog().getStdout() : bundlerGemRoot); throw new RakeTasksBuildService.MyBuildFailureException(msg); } } } // find test-unit in load path final String[] loadPaths = sdk.getLoadPath(); for (String path : loadPaths) { final String fullScriptPath = toSystemIndependentName(path + File.separatorChar + scriptPath); if (FileUtil.checkIfExists(fullScriptPath)) { return fullScriptPath; } } // If stderr isn't empty / JAVA_HOME error final RubyScriptRunner.Output gemPathsLog = sdk.getGemPathsFetchLog(); RubySDKUtil.failIfWithErrors(gemPathsLog); final RubyScriptRunner.Output loadPathsLog = sdk.getLoadPathsFetchLog(); RubySDKUtil.failIfWithErrors(loadPathsLog); // General error message final boolean isRuby19 = sdk.isRuby19(); final String msg = (forceUseBuiltInTestUnit? "You asked TC to use built-in Test::Unit test framework, but file '" : "File '") + scriptPath + "' wasn't found in Gem paths and in $LOAD_PATH of Ruby SDK with interpreter: '" + sdk.getPresentableName() + "'.\n" + (isRuby19 ? "Rake runner detected that your are using Ruby 1.9. So please install 'test-unit' gem because simplified Test::Unit framework, which is bundled in Ruby 1.9, doesn't support pluggable test reporters.\n" : "") + "\n" + "Gem paths:\n" + gemPathsLog.getStdout() + "\n" + "\n" + "$LOAD_PATH:\n" + loadPathsLog.getStdout(); throw new RakeTasksBuildService.MyBuildFailureException(msg); } }