avoid Arbitrary generating excessivly long lists
Turns what it was doing often generated too long lists, or spun with suchThat rejecting too large numbers. Limit lists to 10.
This commit is contained in:
parent
e15d18058b
commit
f76c4a0973
2 changed files with 5 additions and 6 deletions
|
@ -337,9 +337,8 @@ fromRemoteMetaData (RemoteMetaData u (MetaData m)) = MetaData $
|
|||
- the seriaization test slow due to the sheer amount of data.
|
||||
- It's unlikely that more than 100 fields of metadata will be used. -}
|
||||
instance Arbitrary MetaData where
|
||||
arbitrary = do
|
||||
size <- arbitrarySizedBoundedIntegral `suchThat` (< 500)
|
||||
MetaData . M.filterWithKey legal . M.fromList <$> vector size
|
||||
arbitrary = MetaData . M.filterWithKey legal . M.fromList
|
||||
<$> resize 10 (listOf arbitrary)
|
||||
where
|
||||
legal k _v = legalField $ fromMetaField k
|
||||
|
||||
|
|
|
@ -23,7 +23,8 @@ data View = View
|
|||
deriving (Eq, Read, Show)
|
||||
|
||||
instance Arbitrary View where
|
||||
arbitrary = View <$> pure (Git.Ref "master") <*> arbitrary
|
||||
arbitrary = View (Git.Ref "master")
|
||||
<$> resize 10 (listOf arbitrary)
|
||||
|
||||
data ViewComponent = ViewComponent
|
||||
{ viewField :: MetaField
|
||||
|
@ -43,8 +44,7 @@ data ViewFilter
|
|||
|
||||
instance Arbitrary ViewFilter where
|
||||
arbitrary = do
|
||||
size <- arbitrarySizedBoundedIntegral `suchThat` (< 100)
|
||||
s <- S.fromList <$> vector size
|
||||
s <- S.fromList <$> resize 10 (listOf arbitrary)
|
||||
ifM arbitrary
|
||||
( return (FilterValues s)
|
||||
, return (ExcludeValues s)
|
||||
|
|
Loading…
Reference in a new issue