packages feed

cabal-install-3.12.1.0: tests/UnitTests/Distribution/Client/Init/Utils.hs

module UnitTests.Distribution.Client.Init.Utils
  ( dummyFlags
  , emptyFlags
  , mkLicense
  , baseVersion
  , mangleBaseDep
  , (@?!)
  , (@!?)
  ) where

import Distribution.Client.Init.Types

import qualified Distribution.SPDX as SPDX

import Distribution.CabalSpecVersion
import Distribution.FieldGrammar.Newtypes
import Distribution.Pretty
import Distribution.Simple.Compiler
import Distribution.Simple.Setup
import Distribution.Types.Dependency
import Distribution.Types.PackageName
import Distribution.Types.Version
import Distribution.Types.VersionRange
import Language.Haskell.Extension
import Test.Tasty.HUnit

-- -------------------------------------------------------------------- --
-- Test flags

dummyFlags :: InitFlags
dummyFlags =
  emptyFlags
    { noComments = Flag True
    , packageName = Flag (mkPackageName "QuxPackage")
    , version = Flag (mkVersion [4, 2, 6])
    , cabalVersion = Flag CabalSpecV2_2
    , license = Flag $ SpecLicense $ Left $ SPDX.License $ SPDX.ELicense (SPDX.ELicenseId SPDX.MIT) Nothing
    , author = Flag "Foobar"
    , email = Flag "foobar@qux.com"
    , homepage = Flag "qux.com"
    , synopsis = Flag "We are Qux, and this is our package"
    , category = Flag "Control"
    , language = Flag Haskell98
    , initializeTestSuite = Flag True
    , sourceDirs = Flag ["quxSrc"]
    , testDirs = Flag ["quxTest"]
    , applicationDirs = Flag ["quxApp"]
    }

emptyFlags :: InitFlags
emptyFlags = mempty

-- | Retrieves the proper base version based on the GHC version
baseVersion :: Compiler -> VersionRange
baseVersion Compiler{compilerId = CompilerId GHC ver} =
  let ghcToBase = baseVersion' . prettyShow $ ver
   in if null ghcToBase
        then anyVersion
        else majorBoundVersion $ mkVersion ghcToBase
baseVersion _ = anyVersion

baseVersion' :: String -> [Int]
baseVersion' "9.0.1" = [4, 15, 0, 0]
baseVersion' "8.10.4" = [4, 14, 1, 0]
baseVersion' "8.8.4" = [4, 13, 0, 0]
baseVersion' "8.6.5" = [4, 12, 0, 0]
baseVersion' "8.4.4" = [4, 11, 1, 0]
baseVersion' "8.2.2" = [4, 10, 1, 0]
baseVersion' "7.10.3" = [4, 9, 0, 0]
baseVersion' "7.8.4" = [4, 8, 0, 0]
baseVersion' "7.6.3" = [4, 7, 0, 0]
baseVersion' _ = []

-- -------------------------------------------------------------------- --
-- Test utils

mkLicense :: SPDX.LicenseId -> SPDX.License
mkLicense lid = SPDX.License (SPDX.ELicense (SPDX.ELicenseId lid) Nothing)

mangleBaseDep :: a -> (a -> [Dependency]) -> [Dependency]
mangleBaseDep target f =
  [ if unPackageName x == "base"
    then Dependency x anyVersion z
    else dep
  | dep@(Dependency x _ z) <- f target
  ]

infix 1 @?!, @!?

-- | Just like @'@?='@, except it checks for difference rather than equality.
(@?!)
  :: (Eq a, Show a, HasCallStack)
  => a
  -> a
  -> Assertion
actual @?! unexpected =
  assertBool
    ("unexpected: " ++ show unexpected)
    (actual /= unexpected)

-- | Just like @'@=?'@, except it checks for difference rather than equality.
(@!?)
  :: (Eq a, Show a, HasCallStack)
  => a
  -> a
  -> Assertion
(@!?) = flip (@?!)