hackport-0.6.6: cabal/cabal-install/Distribution/Client/CmdTest.hs
{-# LANGUAGE RecordWildCards #-}
-- | cabal-install CLI command: test
--
module Distribution.Client.CmdTest (
-- * The @test@ CLI and action
testCommand,
testAction,
-- * Internals exposed for testing
isSubComponentProblem,
notTestProblem,
noTestsProblem,
selectPackageTargets,
selectComponentTarget
) where
import Distribution.Client.Compat.Prelude
import Prelude ()
import Distribution.Client.ProjectOrchestration
import Distribution.Client.CmdErrorMessages
( renderTargetSelector, showTargetSelector, targetSelectorFilter, plural,
renderTargetProblem,
renderTargetProblemNoTargets, targetSelectorPluralPkgs )
import Distribution.Client.TargetProblem
( TargetProblem (..) )
import Distribution.Client.NixStyleOptions
( NixStyleFlags (..), nixStyleOptions, defaultNixStyleFlags )
import Distribution.Client.Setup
( GlobalFlags(..), ConfigFlags(..) )
import Distribution.Simple.Setup
( TestFlags(..), fromFlagOrDefault )
import Distribution.Simple.Command
( CommandUI(..), usageAlternatives )
import Distribution.Simple.Flag
( Flag(..) )
import Distribution.Verbosity
( normal )
import Distribution.Simple.Utils
( notice, wrapText, die' )
import qualified System.Exit (exitSuccess)
testCommand :: CommandUI (NixStyleFlags ())
testCommand = CommandUI
{ commandName = "v2-test"
, commandSynopsis = "Run test-suites"
, commandUsage = usageAlternatives "v2-test" [ "[TARGETS] [FLAGS]" ]
, commandDescription = Just $ \_ -> wrapText $
"Runs the specified test-suites, first ensuring they are up to "
++ "date.\n\n"
++ "Any test-suite in any package in the project can be specified. "
++ "A package can be specified in which case all the test-suites in the "
++ "package are run. The default is to run all the test-suites in the "
++ "package in the current directory.\n\n"
++ "Dependencies are built or rebuilt as necessary. Additional "
++ "configuration flags can be specified on the command line and these "
++ "extend the project configuration from the 'cabal.project', "
++ "'cabal.project.local' and other files.\n\n"
++ "To pass command-line arguments to a test suite, see the "
++ "v2-run command."
, commandNotes = Just $ \pname ->
"Examples:\n"
++ " " ++ pname ++ " v2-test\n"
++ " Run all the test-suites in the package in the current directory\n"
++ " " ++ pname ++ " v2-test pkgname\n"
++ " Run all the test-suites in the package named pkgname\n"
++ " " ++ pname ++ " v2-test cname\n"
++ " Run the test-suite named cname\n"
++ " " ++ pname ++ " v2-test cname --enable-coverage\n"
++ " Run the test-suite built with code coverage (including local libs used)\n\n"
++ cmdCommonHelpTextNewBuildBeta
, commandDefaultFlags = defaultNixStyleFlags ()
, commandOptions = nixStyleOptions (const [])
}
-- | The @test@ command is very much like @build@. It brings the install plan
-- up to date, selects that part of the plan needed by the given or implicit
-- test target(s) and then executes the plan.
--
-- Compared to @build@ the difference is that there's also test targets
-- which are ephemeral.
--
-- For more details on how this works, see the module
-- "Distribution.Client.ProjectOrchestration"
--
testAction :: NixStyleFlags () -> [String] -> GlobalFlags -> IO ()
testAction flags@NixStyleFlags {..} targetStrings globalFlags = do
baseCtx <- establishProjectBaseContext verbosity cliConfig OtherCommand
targetSelectors <- either (reportTargetSelectorProblems verbosity) return
=<< readTargetSelectors (localPackages baseCtx) (Just TestKind) targetStrings
buildCtx <-
runProjectPreBuildPhase verbosity baseCtx $ \elaboratedPlan -> do
when (buildSettingOnlyDeps (buildSettings baseCtx)) $
die' verbosity $
"The test command does not support '--only-dependencies'. "
++ "You may wish to use 'build --only-dependencies' and then "
++ "use 'test'."
-- Interpret the targets on the command line as test targets
-- (as opposed to say build or haddock targets).
targets <- either (reportTargetProblems verbosity failWhenNoTestSuites) return
$ resolveTargets
selectPackageTargets
selectComponentTarget
elaboratedPlan
Nothing
targetSelectors
let elaboratedPlan' = pruneInstallPlanToTargets
TargetActionTest
targets
elaboratedPlan
return (elaboratedPlan', targets)
printPlan verbosity baseCtx buildCtx
buildOutcomes <- runProjectBuildPhase verbosity baseCtx buildCtx
runProjectPostBuildPhase verbosity baseCtx buildCtx buildOutcomes
where
failWhenNoTestSuites = testFailWhenNoTestSuites testFlags
verbosity = fromFlagOrDefault normal (configVerbosity configFlags)
cliConfig = commandLineFlagsToProjectConfig globalFlags flags mempty -- ClientInstallFlags
-- | This defines what a 'TargetSelector' means for the @test@ command.
-- It selects the 'AvailableTarget's that the 'TargetSelector' refers to,
-- or otherwise classifies the problem.
--
-- For the @test@ command we select all buildable test-suites,
-- or fail if there are no test-suites or no buildable test-suites.
--
selectPackageTargets :: TargetSelector
-> [AvailableTarget k] -> Either TestTargetProblem [k]
selectPackageTargets targetSelector targets
-- If there are any buildable test-suite targets then we select those
| not (null targetsTestsBuildable)
= Right targetsTestsBuildable
-- If there are test-suites but none are buildable then we report those
| not (null targetsTests)
= Left (TargetProblemNoneEnabled targetSelector targetsTests)
-- If there are no test-suite but some other targets then we report that
| not (null targets)
= Left (noTestsProblem targetSelector)
-- If there are no targets at all then we report that
| otherwise
= Left (TargetProblemNoTargets targetSelector)
where
targetsTestsBuildable = selectBuildableTargets
. filterTargetsKind TestKind
$ targets
targetsTests = forgetTargetsDetail
. filterTargetsKind TestKind
$ targets
-- | For a 'TargetComponent' 'TargetSelector', check if the component can be
-- selected.
--
-- For the @test@ command we just need to check it is a test-suite, in addition
-- to the basic checks on being buildable etc.
--
selectComponentTarget :: SubComponentTarget
-> AvailableTarget k -> Either TestTargetProblem k
selectComponentTarget subtarget@WholeComponent t
| CTestName _ <- availableTargetComponentName t
= either Left return $
selectComponentTargetBasic subtarget t
| otherwise
= Left (notTestProblem
(availableTargetPackageId t)
(availableTargetComponentName t))
selectComponentTarget subtarget t
= Left (isSubComponentProblem
(availableTargetPackageId t)
(availableTargetComponentName t)
subtarget)
-- | The various error conditions that can occur when matching a
-- 'TargetSelector' against 'AvailableTarget's for the @test@ command.
--
data TestProblem =
-- | The 'TargetSelector' matches targets but no test-suites
TargetProblemNoTests TargetSelector
-- | The 'TargetSelector' refers to a component that is not a test-suite
| TargetProblemComponentNotTest PackageId ComponentName
-- | Asking to test an individual file or module is not supported
| TargetProblemIsSubComponent PackageId ComponentName SubComponentTarget
deriving (Eq, Show)
type TestTargetProblem = TargetProblem TestProblem
noTestsProblem :: TargetSelector -> TargetProblem TestProblem
noTestsProblem = CustomTargetProblem . TargetProblemNoTests
notTestProblem :: PackageId -> ComponentName -> TargetProblem TestProblem
notTestProblem pkgid name = CustomTargetProblem $ TargetProblemComponentNotTest pkgid name
isSubComponentProblem
:: PackageId
-> ComponentName
-> SubComponentTarget
-> TargetProblem TestProblem
isSubComponentProblem pkgid name subcomponent = CustomTargetProblem $
TargetProblemIsSubComponent pkgid name subcomponent
reportTargetProblems :: Verbosity -> Flag Bool -> [TestTargetProblem] -> IO a
reportTargetProblems verbosity failWhenNoTestSuites problems =
case (failWhenNoTestSuites, problems) of
(Flag True, [CustomTargetProblem (TargetProblemNoTests _)]) ->
die' verbosity problemsMessage
(_, [CustomTargetProblem (TargetProblemNoTests selector)]) -> do
notice verbosity (renderAllowedNoTestsProblem selector)
System.Exit.exitSuccess
(_, _) -> die' verbosity problemsMessage
where
problemsMessage = unlines . map renderTestTargetProblem $ problems
-- | Unless @--test-fail-when-no-test-suites@ flag is passed, we don't
-- @die@ when the target problem is 'TargetProblemNoTests'.
-- Instead, we display a notice saying that no tests have run and
-- indicate how this behaviour was enabled.
renderAllowedNoTestsProblem :: TargetSelector -> String
renderAllowedNoTestsProblem selector =
"No tests to run for " ++ renderTargetSelector selector
renderTestTargetProblem :: TestTargetProblem -> String
renderTestTargetProblem (TargetProblemNoTargets targetSelector) =
case targetSelectorFilter targetSelector of
Just kind | kind /= TestKind
-> "The test command is for running test suites, but the target '"
++ showTargetSelector targetSelector ++ "' refers to "
++ renderTargetSelector targetSelector ++ "."
++ "\n" ++ show targetSelector
_ -> renderTargetProblemNoTargets "test" targetSelector
renderTestTargetProblem problem =
renderTargetProblem "test" renderTestProblem problem
renderTestProblem :: TestProblem -> String
renderTestProblem (TargetProblemNoTests targetSelector) =
"Cannot run tests for the target '" ++ showTargetSelector targetSelector
++ "' which refers to " ++ renderTargetSelector targetSelector
++ " because "
++ plural (targetSelectorPluralPkgs targetSelector) "it does" "they do"
++ " not contain any test suites."
renderTestProblem (TargetProblemComponentNotTest pkgid cname) =
"The test command is for running test suites, but the target '"
++ showTargetSelector targetSelector ++ "' refers to "
++ renderTargetSelector targetSelector ++ " from the package "
++ prettyShow pkgid ++ "."
where
targetSelector = TargetComponent pkgid cname WholeComponent
renderTestProblem (TargetProblemIsSubComponent pkgid cname subtarget) =
"The test command can only run test suites as a whole, "
++ "not files or modules within them, but the target '"
++ showTargetSelector targetSelector ++ "' refers to "
++ renderTargetSelector targetSelector ++ "."
where
targetSelector = TargetComponent pkgid cname subtarget