1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module UnitTests.Distribution.Client.ArbitraryInstances (
adjustSize,
shortListOf,
shortListOf1,
arbitraryFlag,
ShortToken(..),
arbitraryShortToken,
NonMEmpty(..),
NoShrink(..),
-- * Shrinker
Shrinker,
runShrinker,
shrinker,
shrinkerPP,
shrinkerAla,
) where
import Distribution.Client.Compat.Prelude
import Prelude ()
import Data.Char (isLetter)
import Data.List ((\\))
import Distribution.Simple.Setup
import Distribution.Types.Flag (mkFlagAssignment)
import Distribution.Client.BuildReports.Types (BuildReport, InstallOutcome, Outcome, ReportLevel (..))
import Distribution.Client.CmdInstall.ClientInstallFlags (InstallMethod)
import Distribution.Client.Glob (FilePathGlob (..), FilePathGlobRel (..), FilePathRoot (..), GlobPiece (..))
import Distribution.Client.IndexUtils.ActiveRepos (ActiveRepoEntry (..), ActiveRepos (..), CombineStrategy (..))
import Distribution.Client.IndexUtils.IndexState (RepoIndexState (..), TotalIndexState, makeTotalIndexState)
import Distribution.Client.IndexUtils.Timestamp (Timestamp, epochTimeToTimestamp)
import Distribution.Client.Targets
import Distribution.Client.Types (RepoName (..), WriteGhcEnvironmentFilesPolicy)
import Distribution.Client.Types.AllowNewer
import Distribution.Client.Types.OverwritePolicy (OverwritePolicy)
import Distribution.Solver.Types.OptionalStanza (OptionalStanza (..), OptionalStanzaMap, OptionalStanzaSet, optStanzaSetFromList, optStanzaTabulate)
import Distribution.Solver.Types.PackageConstraint (PackageProperty (..))
import Data.Coerce (Coercible, coerce)
import Network.URI (URI (..), URIAuth (..), isUnreserved)
import Test.QuickCheck
import Test.QuickCheck.GenericArbitrary (genericArbitrary)
import Test.QuickCheck.Instances.Cabal ()
-- note: there are plenty of instances defined in ProjectConfig test file.
-- they should be moved here or into Cabal-quickcheck
-------------------------------------------------------------------------------
-- Utilities
-------------------------------------------------------------------------------
data Shrinker a = Shrinker a [a]
instance Functor Shrinker where
fmap f (Shrinker x xs) = Shrinker (f x) (map f xs)
instance Applicative Shrinker where
pure x = Shrinker x []
Shrinker f fs <*> Shrinker x xs = Shrinker (f x) (map f xs ++ map ($ x) fs)
runShrinker :: Shrinker a -> [a]
runShrinker (Shrinker _ xs) = xs
shrinker :: Arbitrary a => a -> Shrinker a
shrinker x = Shrinker x (shrink x)
shrinkerAla :: (Coercible a b, Arbitrary b) => (a -> b) -> a -> Shrinker a
shrinkerAla pack = shrinkerPP pack coerce
-- | shrinker with pre and post functions.
shrinkerPP :: Arbitrary b => (a -> b) -> (b -> a) -> a -> Shrinker a
shrinkerPP pack unpack x = Shrinker x (map unpack (shrink (pack x)))
-------------------------------------------------------------------------------
-- Non-Cabal instances
-------------------------------------------------------------------------------
instance Arbitrary URI where
arbitrary =
URI <$> elements ["file:", "http:", "https:"]
<*> (Just <$> arbitrary)
<*> (('/':) <$> arbitraryURIToken)
<*> (('?':) <$> arbitraryURIToken)
<*> pure ""
instance Arbitrary URIAuth where
arbitrary =
URIAuth <$> pure "" -- no password as this does not roundtrip
<*> arbitraryURIToken
<*> arbitraryURIPort
arbitraryURIToken :: Gen String
arbitraryURIToken =
shortListOf1 6 (elements (filter isUnreserved ['\0'..'\255']))
arbitraryURIPort :: Gen String
arbitraryURIPort =
oneof [ pure "", (':':) <$> shortListOf1 4 (choose ('0','9')) ]
-------------------------------------------------------------------------------
-- cabal-install (and Cabal) types
-------------------------------------------------------------------------------
adjustSize :: (Int -> Int) -> Gen a -> Gen a
adjustSize adjust gen = sized (\n -> resize (adjust n) gen)
shortListOf :: Int -> Gen a -> Gen [a]
shortListOf bound gen =
sized $ \n -> do
k <- choose (0, (n `div` 2) `min` bound)
vectorOf k gen
shortListOf1 :: Int -> Gen a -> Gen [a]
shortListOf1 bound gen =
sized $ \n -> do
k <- choose (1, 1 `max` ((n `div` 2) `min` bound))
vectorOf k gen
newtype ShortToken = ShortToken { getShortToken :: String }
deriving Show
instance Arbitrary ShortToken where
arbitrary =
ShortToken <$>
(shortListOf1 5 (choose ('#', '~'))
`suchThat` (all (`notElem` "{}"))
`suchThat` (not . ("[]" `isPrefixOf`)))
--TODO: [code cleanup] need to replace parseHaskellString impl to stop
-- accepting Haskell list syntax [], ['a'] etc, just allow String syntax.
-- Workaround, don't generate [] as this does not round trip.
shrink (ShortToken cs) =
[ ShortToken cs' | cs' <- shrink cs, not (null cs') ]
arbitraryShortToken :: Gen String
arbitraryShortToken = getShortToken <$> arbitrary
newtype NonMEmpty a = NonMEmpty { getNonMEmpty :: a }
deriving (Eq, Ord, Show)
instance (Arbitrary a, Monoid a, Eq a) => Arbitrary (NonMEmpty a) where
arbitrary = NonMEmpty <$> (arbitrary `suchThat` (/= mempty))
shrink (NonMEmpty x) = [ NonMEmpty x' | x' <- shrink x, x' /= mempty ]
newtype NoShrink a = NoShrink { getNoShrink :: a }
deriving (Eq, Ord, Show)
instance Arbitrary a => Arbitrary (NoShrink a) where
arbitrary = NoShrink <$> arbitrary
shrink _ = []
instance Arbitrary Timestamp where
-- note: no negative timestamps
--
-- >>> utcTimeToPOSIXSeconds $ UTCTime (fromGregorian 100000 01 01) 0
-- >>> 3093527980800s
--
arbitrary = maybe (toEnum 0) id . epochTimeToTimestamp . (`mod` 3093527980800) . abs <$> arbitrary
instance Arbitrary RepoIndexState where
arbitrary = frequency [ (1, pure IndexStateHead)
, (50, IndexStateTime <$> arbitrary)
]
instance Arbitrary TotalIndexState where
arbitrary = makeTotalIndexState <$> arbitrary <*> arbitrary
instance Arbitrary WriteGhcEnvironmentFilesPolicy where
arbitrary = arbitraryBoundedEnum
arbitraryFlag :: Gen a -> Gen (Flag a)
arbitraryFlag = liftArbitrary
instance Arbitrary RepoName where
-- TODO: rename refinement?
arbitrary = RepoName <$> (mk `suchThat` \x -> not $ "--" `isPrefixOf` x) where
mk = (:) <$> lead <*> rest
lead = elements
[ c | c <- [ '\NUL' .. '\255' ], isAlpha c || c `elem` "_-."]
rest = listOf (elements
[ c | c <- [ '\NUL' .. '\255' ], isAlphaNum c || c `elem` "_-."])
instance Arbitrary ReportLevel where
arbitrary = arbitraryBoundedEnum
instance Arbitrary OverwritePolicy where
arbitrary = arbitraryBoundedEnum
instance Arbitrary InstallMethod where
arbitrary = arbitraryBoundedEnum
-------------------------------------------------------------------------------
-- ActiveRepos
-------------------------------------------------------------------------------
instance Arbitrary ActiveRepos where
arbitrary = ActiveRepos <$> shortListOf 5 arbitrary
instance Arbitrary ActiveRepoEntry where
arbitrary = frequency
[ (10, ActiveRepo <$> arbitrary <*> arbitrary)
, (1, ActiveRepoRest <$> arbitrary)
]
instance Arbitrary CombineStrategy where
arbitrary = arbitraryBoundedEnum
shrink = shrinkBoundedEnum
-------------------------------------------------------------------------------
-- AllowNewer
-------------------------------------------------------------------------------
instance Arbitrary AllowNewer where
arbitrary = AllowNewer <$> arbitrary
instance Arbitrary AllowOlder where
arbitrary = AllowOlder <$> arbitrary
instance Arbitrary RelaxDeps where
arbitrary = oneof [ pure mempty
, mkRelaxDepSome <$> shortListOf1 3 arbitrary
, pure RelaxDepsAll
]
instance Arbitrary RelaxDepMod where
arbitrary = elements [RelaxDepModNone, RelaxDepModCaret]
shrink RelaxDepModCaret = [RelaxDepModNone]
shrink _ = []
instance Arbitrary RelaxDepScope where
arbitrary = genericArbitrary
shrink = genericShrink
instance Arbitrary RelaxDepSubject where
arbitrary = genericArbitrary
shrink = genericShrink
instance Arbitrary RelaxedDep where
arbitrary = genericArbitrary
shrink = genericShrink
-------------------------------------------------------------------------------
-- UserConstraint
-------------------------------------------------------------------------------
instance Arbitrary UserConstraintScope where
arbitrary = genericArbitrary
shrink = genericShrink
instance Arbitrary UserQualifier where
arbitrary = oneof [ pure UserQualToplevel
, UserQualSetup <$> arbitrary
-- -- TODO: Re-enable UserQualExe tests once we decide on a syntax.
-- , UserQualExe <$> arbitrary <*> arbitrary
]
instance Arbitrary UserConstraint where
arbitrary = genericArbitrary
shrink = genericShrink
instance Arbitrary PackageProperty where
arbitrary = oneof [ PackagePropertyVersion <$> arbitrary
, pure PackagePropertyInstalled
, pure PackagePropertySource
, PackagePropertyFlags . mkFlagAssignment <$> shortListOf1 3 arbitrary
, PackagePropertyStanzas . (\x->[x]) <$> arbitrary
]
instance Arbitrary OptionalStanza where
arbitrary = elements [minBound..maxBound]
instance Arbitrary OptionalStanzaSet where
arbitrary = fmap optStanzaSetFromList arbitrary
instance Arbitrary a => Arbitrary (OptionalStanzaMap a) where
arbitrary = do
x1 <- arbitrary
x2 <- arbitrary
return $ optStanzaTabulate $ \x -> case x of
TestStanzas -> x1
BenchStanzas -> x2
-------------------------------------------------------------------------------
-- BuildReport
-------------------------------------------------------------------------------
instance Arbitrary BuildReport where
arbitrary = genericArbitrary
shrink = genericShrink
instance Arbitrary InstallOutcome where
arbitrary = genericArbitrary
shrink = genericShrink
instance Arbitrary Outcome where
arbitrary = genericArbitrary
shrink = genericShrink
-------------------------------------------------------------------------------
-- Glob
-------------------------------------------------------------------------------
instance Arbitrary FilePathGlob where
arbitrary = (FilePathGlob <$> arbitrary <*> arbitrary)
`suchThat` validFilePathGlob
shrink (FilePathGlob root pathglob) =
[ FilePathGlob root' pathglob'
| (root', pathglob') <- shrink (root, pathglob)
, validFilePathGlob (FilePathGlob root' pathglob') ]
validFilePathGlob :: FilePathGlob -> Bool
validFilePathGlob (FilePathGlob FilePathRelative pathglob) =
case pathglob of
GlobDirTrailing -> False
GlobDir [Literal "~"] _ -> False
GlobDir [Literal (d:":")] _
| isLetter d -> False
_ -> True
validFilePathGlob _ = True
instance Arbitrary FilePathRoot where
arbitrary =
frequency
[ (3, pure FilePathRelative)
, (1, pure (FilePathRoot unixroot))
, (1, FilePathRoot <$> windrive)
, (1, pure FilePathHomeDir)
]
where
unixroot = "/"
windrive = do d <- choose ('A', 'Z'); return (d : ":\\")
shrink FilePathRelative = []
shrink (FilePathRoot _) = [FilePathRelative]
shrink FilePathHomeDir = [FilePathRelative]
instance Arbitrary FilePathGlobRel where
arbitrary = sized $ \sz ->
oneof $ take (max 1 sz)
[ pure GlobDirTrailing
, GlobFile <$> (getGlobPieces <$> arbitrary)
, GlobDir <$> (getGlobPieces <$> arbitrary)
<*> resize (sz `div` 2) arbitrary
]
shrink GlobDirTrailing = []
shrink (GlobFile glob) =
GlobDirTrailing
: [ GlobFile (getGlobPieces glob') | glob' <- shrink (GlobPieces glob) ]
shrink (GlobDir glob pathglob) =
pathglob
: GlobFile glob
: [ GlobDir (getGlobPieces glob') pathglob'
| (glob', pathglob') <- shrink (GlobPieces glob, pathglob) ]
newtype GlobPieces = GlobPieces { getGlobPieces :: [GlobPiece] }
deriving Eq
instance Arbitrary GlobPieces where
arbitrary = GlobPieces . mergeLiterals <$> shortListOf1 5 arbitrary
shrink (GlobPieces glob) =
[ GlobPieces (mergeLiterals (getNonEmpty glob'))
| glob' <- shrink (NonEmpty glob) ]
mergeLiterals :: [GlobPiece] -> [GlobPiece]
mergeLiterals (Literal a : Literal b : ps) = mergeLiterals (Literal (a++b) : ps)
mergeLiterals (Union as : ps) = Union (map mergeLiterals as) : mergeLiterals ps
mergeLiterals (p:ps) = p : mergeLiterals ps
mergeLiterals [] = []
instance Arbitrary GlobPiece where
arbitrary = sized $ \sz ->
frequency
[ (3, Literal <$> shortListOf1 10 (elements globLiteralChars))
, (1, pure WildCard)
, (1, Union <$> resize (sz `div` 2) (shortListOf1 5 (shortListOf1 5 arbitrary)))
]
shrink (Literal str) = [ Literal str'
| str' <- shrink str
, not (null str')
, all (`elem` globLiteralChars) str' ]
shrink WildCard = []
shrink (Union as) = [ Union (map getGlobPieces (getNonEmpty as'))
| as' <- shrink (NonEmpty (map GlobPieces as)) ]
globLiteralChars :: [Char]
globLiteralChars = ['\0'..'\128'] \\ "*{},/\\"
|