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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
|
module CPM.Resolution
( ResolutionResult
, showResult
, resolutionSuccess
, resolvedPackages
, showDependencies
, showConflict
, allTransitiveDependencies
, transitiveDependencies
, resolve
, resolveDependenciesFromLookupSet
, isCompatibleToCompiler
) where
import Either
import List
import Pretty
import Sort
import Maybe
import Test.EasyCheck
import CPM.Config (Config, defaultConfig, compilerVersion)
import CPM.ErrorLogger
import CPM.LookupSet
import CPM.Package
resolveDependenciesFromLookupSet :: Config -> Package -> LookupSet
-> IO (ErrorLogger ResolutionResult)
resolveDependenciesFromLookupSet cfg pkg lookupSet =
let result = resolve cfg pkg lookupSet in if resolutionSuccess result
then succeedIO result
else failIO $ showResult result
resolve :: Config -> Package -> LookupSet -> ResolutionResult
resolve cfg pkg ls = case resolvedPkgs of
Just pkgs -> ResolutionSuccess pkg pkgs
Nothing -> ResolutionFailure labeledTree
where
labeledTree = labelConflicts cfg $ candidateTree pkg ls
noConflicts = prune ((/= Nothing) . clConflict) labeledTree
resolvedPkgs = maybeHead . map stPackages . filter stComplete . leaves . mapTree clState $ noConflicts
resolvedPackages :: ResolutionResult -> [Package]
resolvedPackages (ResolutionSuccess pkg deps) = delete pkg deps
resolvedPackages (ResolutionFailure _) = error "resolvedPackages called on failure"
maybeResolvedPackages :: ResolutionResult -> Maybe [Package]
maybeResolvedPackages (ResolutionSuccess _ deps) = Just deps
maybeResolvedPackages (ResolutionFailure _) = Nothing
resolutionSuccess :: ResolutionResult -> Bool
resolutionSuccess (ResolutionSuccess _ _) = True
resolutionSuccess (ResolutionFailure _) = False
showDependencies :: ResolutionResult -> String
showDependencies (ResolutionSuccess pkg deps) = showTree . mapTree (text . packageId) $ dependencyTree deps pkg
showDependencies (ResolutionFailure _) = "Resolution failed."
showConflict :: ResolutionResult -> String
showConflict (ResolutionSuccess _ _) = "Resolution succeeded."
showConflict (ResolutionFailure t) = case findRelevantConflict t of
Just c -> showConflictState c
Nothing -> case missingPackages $ clState $ findDeepestNode t of
[] -> "It failed for an unknown reason :("
(d@(Dependency p _):_) -> "There seems to be no version of package " ++ p ++ " that can satisfy the constraint " ++ showDependency d
showConflictTree :: ResolutionResult -> String
showConflictTree (ResolutionSuccess _ _) = "Resolution succeeded."
showConflictTree (ResolutionFailure t) = showTree $ mapTree labeler $ cutBelowConflict t
where
pkgId = text . packageId . actPackage
actChain a@(InitialA _) = pkgId a
actChain a@(ChildA _ _ p) = pkgId a <+> text "->" <+> actChain p
labeler ((a, _), Nothing) = pkgId a
labeler ((a, _), Just (CompilerConflict _)) = red $ text "C" <+> actChain a
labeler ((a, _), Just (PrimaryConflict _)) = red $ text "P" <+> actChain a
labeler ((a, _), Just (SecondaryConflict a' a'')) =
red $ text "S" <+> actChain a <+> parens (pkgId a') <+> parens (pkgId a'')
cutBelowConflict (Node (a, Nothing) cs) = Node (a, Nothing) $ map cutBelowConflict cs
cutBelowConflict (Node (a, Just c) _) = Node (a, Just c) []
showCandidateTree :: Tree State -> String
showCandidateTree = showTree . mapTree (text . packageId . actPackage . stActivation)
showLabelTree :: Config -> Tree State -> String
showLabelTree cfg =
showTree . mapTree labeler . cutBelowConflict . labelConflicts cfg
where
pkgId = text . packageId . actPackage . stActivation
actId = text . packageId . actPackage
labeler (s, Nothing) = pkgId s
labeler (s, Just (CompilerConflict _)) = red $ text "C" <+> pkgId s
labeler (s, Just (PrimaryConflict _)) = red $ text "P" <+> pkgId s
labeler (s, Just (SecondaryConflict a1 a2)) = red $ text "S" <+> pkgId s <+> actId a1 <+> actId a2
cutBelowConflict (Node (a, Nothing) cs) = Node (a, Nothing) $ map cutBelowConflict cs
cutBelowConflict (Node (a, Just c) _) = Node (a, Just c) []
resultConflict :: ResolutionResult -> Maybe Conflict
resultConflict (ResolutionSuccess _ _) = Nothing
resultConflict (ResolutionFailure t) = case findRelevantConflict t of
Nothing -> Nothing
Just cs -> clConflict cs
showResult :: ResolutionResult -> String
showResult r@(ResolutionSuccess _ _) = showDependencies r
showResult r@(ResolutionFailure _) = showConflict r
data ResolutionResult = ResolutionSuccess Package [Package]
| ResolutionFailure (Tree ConflictState)
data Activation = InitialA Package
| ChildA Package Dependency Activation
type State = (Activation, [Activation])
data Conflict = SecondaryConflict Activation Activation
| PrimaryConflict Activation
| CompilerConflict Activation
type ConflictState = (State, Maybe Conflict)
stPackage :: State -> Package
stPackage (a, _) = actPackage a
stPackages :: State -> [Package]
stPackages (_, as) = map actPackage as
stActivation :: State -> Activation
stActivation = fst
stActivations :: State -> [Activation]
stActivations = snd
stDependencies :: State -> [(Activation, Dependency)]
stDependencies = concatMap zippedDeps . stActivations
where
zippedDeps a = zip (repeat a) $ dependencies $ actPackage a
stAllDependencies :: State -> [Dependency]
stAllDependencies = concatMap dependencies . stPackages
actPackage :: Activation -> Package
actPackage (InitialA p) = p
actPackage (ChildA p _ _) = p
actDependency :: Activation -> Dependency
actDependency (InitialA _) = error "Called on initialA"
actDependency (ChildA _ d _) = d
actParent :: Activation -> Activation
actParent a@(InitialA _) = a
actParent (ChildA _ _ p) = p
clConflict :: ConflictState -> Maybe Conflict
clConflict = snd
clState :: ConflictState -> State
clState = fst
data Tree a = Node a [Tree a]
mapTree :: (a -> b) -> Tree a -> Tree b
mapTree f (Node a cs) = Node (f a) $ map (mapTree f) cs
label :: Tree a -> a
label (Node a _) = a
leaves :: Tree a -> [a]
leaves (Node a []) = [a]
leaves (Node _ cs@(_:_)) = concatMap leaves cs
foldTree :: (a -> [b] -> b) -> Tree a -> b
foldTree f (Node a cs) = f a (map (foldTree f) cs)
filterTree :: (a -> Bool) -> Tree a -> Tree a
filterTree p = foldTree f
where f a cs = Node a (filter (p . label) cs)
prune :: (a -> Bool) -> Tree a -> Tree a
prune p = filterTree (not . p)
showTree :: Tree Doc -> String
showTree = pPrint . ppTree
ppTree :: Tree Doc -> Doc
ppTree (Node l cs) = l <$$> vcat children
where
children = map (\t -> indent 2 $ text "|-" <+> ppTree t) cs
extendTree :: Tree a -> Tree a -> Tree a
extendTree (Node a []) n = Node a [n]
extendTree (Node a (c:cs)) n = Node a $ (extendTree c n):cs
dotifyTree :: Tree String -> String
dotifyTree t = "digraph tree {\n" ++ full ++ "\n}"
where
(_, _, full) = dotify' (0, [], "") t
dotify' (n, acc, s) (Node l cs) =
let
(n', children, str) = foldl (dotify') (n + 1, [], "") cs
in
(n', n:acc, s ++ intercalate "\n" ([node n l] ++ map (edge n) children) ++ str)
node n l = "n" ++ (show n) ++ " [label=\"" ++ l ++ "\"];\n"
edge a b = "n" ++ (show a) ++ " -> " ++ "n" ++ (show b) ++ ";\n"
candidateTree :: Package -> LookupSet -> Tree State
candidateTree pkg ls = let s = InitialA pkg in
Node (s, [s]) $ tree' [s] (zip (repeat s) (dependencies pkg))
where
tree' acts ((act, d@(Dependency p _)):ds) =
if p `elem` (map (name . actPackage) acts)
then tree' acts ds
else map (nodesForDep act d ds acts) $ findAllVersions ls p True
tree' _ [] = []
nodesForDep act d ds acts p' =
let
act' = ChildA p' d act
acts' = act':acts
nextDeps = zip (repeat act') (dependencies p') ++ ds
in Node (act', acts') $ tree' acts' nextDeps
labelConflicts :: Config -> Tree State -> Tree ConflictState
labelConflicts cfg = mapTree f
where
f s = (s, firstConflict cfg s (reverse $ stDependencies s))
stComplete :: State -> Bool
stComplete s = missingPackages s == []
stCompleteness :: State -> Int
stCompleteness s = length $ missingPackages s
missingPackages :: State -> [Dependency]
missingPackages s = missing' (stPackages s) (stAllDependencies s)
where
missing' pkgs ds = filter (noPackage pkgs) ds
noPackage pkgs (Dependency p _) = find ((== p) . name) pkgs == Nothing
firstConflict :: Config -> State -> [(Activation, Dependency)] -> Maybe Conflict
firstConflict _ _ [] = Nothing
firstConflict cfg s@(act, acts) ((depAct, Dependency p disj):ds) =
if not $ isCompatibleToCompiler cfg (actPackage act)
then Just $ CompilerConflict act
else case findPkg of
Nothing -> firstConflict cfg s ds
Just a -> if isDisjunctionCompatible (version $ actPackage a) disj
then firstConflict cfg s ds
else if actParent a == depAct
then Just $ PrimaryConflict a
else Just $ SecondaryConflict a depAct
where
findPkg = find ((== p) . name . actPackage) acts
findDeepestNode :: Tree a -> a
findDeepestNode = snd . maxNode . leaves . depthTree
where
maxNode ls = foldl maxN (head ls) ls
maxN (na, a) (nb, b) = if nb >= na
then (nb, b)
else (na, a)
depthTree = relabel 0
relabel n (Node a cs) = Node (n, a) (map (relabel (n + 1)) cs)
findRelevantConflict :: Tree ConflictState -> Maybe ConflictState
findRelevantConflict = maybeMostRelevant . map mostRelevant . map snd . minGroups . filter ((/= []) . snd) . findGroups . cutBelowConflict . relabel
where
maybeMostRelevant [] = Nothing
maybeMostRelevant cs@(_:_) = Just $ mostRelevant cs
mostRelevant cs = case find (isSecondary . fromJust . clConflict) cs of
Just s -> s
Nothing -> case find (isCompiler . fromJust . clConflict) cs of
Just c -> c
Nothing -> head cs
minGroups gs = let minG = foldl (\m g -> min m (fst g)) 99999 gs in
filter ((== minG) . fst) gs
isSecondary (SecondaryConflict _ _) = True
isSecondary (PrimaryConflict _) = False
isSecondary (CompilerConflict _) = False
isCompiler (SecondaryConflict _ _) = False
isCompiler (PrimaryConflict _) = False
isCompiler (CompilerConflict _) = True
findGroups (Node (d, (_, Nothing)) []) = [(d, [])]
findGroups (Node (d, (_, Nothing)) cs@(_:_)) = if containsOnlyConflicts cs
then [(d, map (snd . label) cs)]
else concatMap findGroups cs
findGroups (Node (d, (_, Just _)) _) = [(d, [])]
containsOnlyConflicts = all (isJust . clConflict . snd) . map label
cutBelowConflict (Node (d, (a, Nothing)) cs) = Node (d, (a, Nothing)) $ map cutBelowConflict cs
cutBelowConflict (Node (d, (a, Just c)) _) = Node (d, (a, Just c)) []
relabel = mapTree (\a -> (stCompleteness $ clState a, a))
showRealConflictInfo :: Activation -> Activation -> String
showRealConflictInfo originalAct confAct =
let
mkLabel pkg dep = (text $ name pkg) <+> (parens $ text $ showDependency dep)
triedPkg = actPackage originalAct
actLabeler (InitialA p) = text $ name p
actLabeler (ChildA p dep _) = mkLabel p dep
originalTree = mapTree actLabeler $ activationTree originalAct
confTree = mapTree actLabeler $ activationTree confAct
confDepLabel = mkLabel triedPkg (findDependencyOn triedPkg confAct)
confTree' = extendTree confTree (Node confDepLabel [])
findDependencyOn pkg act = case find ((== name pkg) . depPkg) $ dependencies $ actPackage act of
Just a -> a
Nothing -> error "Hey!"
depPkg (Dependency p _) = p
in
pPrint $ (text $ "There was a conflict for package " ++ name triedPkg)
<$$> ppTree originalTree <$$> ppTree confTree'
showSamePackageConflictInfo :: Activation -> String
showSamePackageConflictInfo act =
let
triedPkg = actPackage act
in
"There seems to be no version of package " ++ name triedPkg ++ " that can satisfy the constraint " ++ showDependency (actDependency act)
showCompilerConflictInfo :: Activation -> String
showCompilerConflictInfo act =
"The package " ++ (packageId $ actPackage act) ++ ", dependency constraint " ++ showDependency (actDependency act) ++ ", is not compatible to the current compiler. It was activated because:\n" ++ showTree actTree
where
mkLabel pkg dep = (text $ name pkg) <+> (parens $ text $ showDependency dep)
actLabeler (InitialA p) = text $ name p
actLabeler (ChildA p dep _) = mkLabel p dep
actTree = mapTree actLabeler $ activationTree act
showConflictState :: ConflictState -> String
showConflictState ((InitialA _, _), Nothing) = "No Conflict!"
showConflictState ((InitialA pkg, _), Just _) = "Initial Conflict! " ++ packageId pkg
showConflictState ((ChildA _ _ _, _), Nothing) = "No Conflict!"
showConflictState ((ChildA _ _ _, _), Just (PrimaryConflict originalAct)) =
showSamePackageConflictInfo originalAct
showConflictState ((ChildA _ _ _, _), Just (SecondaryConflict originalAct confAct)) =
showRealConflictInfo originalAct confAct
showConflictState ((ChildA _ _ _, _), Just (CompilerConflict act)) =
showCompilerConflictInfo act
activationTree :: Activation -> Tree Activation
activationTree = head . foldl (\acc f -> f acc) [] . actTree'
where
actTree' x@(InitialA _) = [\cs -> [Node x cs]]
actTree' x@(ChildA _ _ parent) = (\cs -> [Node x cs]):(actTree' parent)
dependencyTree :: [Package] -> Package -> Tree Package
dependencyTree chosen pkg = Node pkg $ map (dependencyTree chosen) childPkgs
where
justs = map fromJust . filter (/= Nothing)
childPkgs = justs $ map findPkg (dependencies pkg)
findPkg (Dependency p _) = find ((== p) . name) chosen
maybeHead :: [a] -> Maybe a
maybeHead [] = Nothing
maybeHead (x:_) = Just x
packageSource :: Package -> LookupSet -> Maybe LookupSource
packageSource p ls = lookupSource ls p
allTransitiveDependencies' :: [String] -> LookupSet -> String -> [String]
allTransitiveDependencies' seen ls pkg = nub $ allDeps
where
allVersions = findAllVersions ls pkg True
allDeps = foldl (\s d -> transitiveDependencies' s ls d) seen allVersions
allTransitiveDependencies :: LookupSet -> String -> [String]
allTransitiveDependencies = allTransitiveDependencies' []
transitiveDependencies' :: [String] -> LookupSet -> Package -> [String]
transitiveDependencies' seen ls pkg = foldl (\s d -> if d `elem` s then s else (nub (s ++ allTransitiveDependencies' (d:s) ls d))) seen deps
where
deps = map dependencyName $ dependencies pkg
dependencyName (Dependency n _) = n
transitiveDependencies :: LookupSet -> Package -> [String]
transitiveDependencies = transitiveDependencies' []
test_transitiveDependencies_simpleCase :: Test.EasyCheck.Prop
test_transitiveDependencies_simpleCase = transitiveDependencies db pkg -=- ["B", "C"]
where pkg = cPackage "A" (0, 0, 1, Nothing) [cDep "B" ">= 1.0.0", cDep "C" "= 1.2.0"]
b = cPackage "B" (1, 0, 9, Nothing) []
c = cPackage "C" (1, 2, 0, Nothing) []
db = cDB [b, c]
test_transitiveDependencies_loop :: Test.EasyCheck.Prop
test_transitiveDependencies_loop = transitiveDependencies db pkg -=- ["B", "C"]
where pkg = cPackage "A" (0, 0, 1, Nothing) [cDep "B" ">= 1.0.0", cDep "C" "= 1.2.0"]
b = cPackage "B" (1, 0, 0, Nothing) [cDep "C" "= 1.2.0"]
c = cPackage "C" (1, 2, 0, Nothing) [cDep "B" ">= 1.0.0"]
db = cDB [b, c]
test_transitiveDependencies_multipleVersions :: Test.EasyCheck.Prop
test_transitiveDependencies_multipleVersions = transitiveDependencies db pkg -=- ["B", "D", "C"]
where pkg = cPackage "A" (0, 0, 1, Nothing) [cDep "B" ">= 1.0.0"]
b100 = cPackage "B" (1, 0, 0, Nothing) [cDep "C" "= 1.0.0"]
b110 = cPackage "B" (1, 1, 0, Nothing) [cDep "D" "= 1.0.0"]
c = cPackage "C" (1, 0, 0, Nothing) []
d = cPackage "D" (1, 0, 0, Nothing) []
db = cDB [b100, b110, c, d]
isCompatibleToCompiler :: Config -> Package -> Bool
isCompatibleToCompiler cfg p = case compats of
[] -> True
(_:_) -> case constraintForCompiler of
Nothing -> False
Just (CompilerCompatibility _ c) ->
isDisjunctionCompatible (maj, min, 0, Nothing) c
where
(name, maj, min) = compilerVersion cfg
compats = compilerCompatibility p
constraintForCompiler = find (\(CompilerCompatibility c _) -> c == name)
compats
isDisjunctionCompatible :: Version -> Disjunction -> Bool
isDisjunctionCompatible ver cs = any id (map (all id) rs)
where
rs = map (map isCompatible) cs
preReleaseCompatible (_, _, _, p1) (_, _, _, p2)
= (isJust p1 && isJust p2) || (isNothing p1 && isNothing p2)
isCompatible (VExact v) = v == ver
isCompatible (VLt v) = ver `vlt` v && preReleaseCompatible ver v
isCompatible (VLte v) = ver `vlte` v && preReleaseCompatible ver v
isCompatible (VGt v) = ver `vgt` v && preReleaseCompatible ver v
isCompatible (VGte v) = ver `vgte` v && preReleaseCompatible ver v
isCompatible (VCompatible v) = ver `vgte` v && ver `vlt` (nextMinor v) &&
preReleaseCompatible ver v
nextMinor (maj, min, _, _) = (maj, min + 1, 0, Nothing)
test_onlyConjunctionCompatible :: Test.EasyCheck.Prop
test_onlyConjunctionCompatible = isDisjunctionCompatible ver dis -=- True
where dis = cDisj "= 1.0.0"
ver = (1, 0, 0, Nothing)
test_allConjunctionsCompatible :: Test.EasyCheck.Prop
test_allConjunctionsCompatible = isDisjunctionCompatible ver dis -=- True
where dis = cDisj ">= 1.0.0 || = 1.2.0"
ver = (1, 2, 0, Nothing)
test_oneConjunctionCompatible :: Test.EasyCheck.Prop
test_oneConjunctionCompatible = isDisjunctionCompatible ver dis -=- True
where ver = (1, 0, 0, Nothing)
dis = cDisj "> 2.0.0 || = 1.0.0"
test_conjunctionWithMultipleParts :: Test.EasyCheck.Prop
test_conjunctionWithMultipleParts = isDisjunctionCompatible ver dis -=- True
where ver = (1, 0, 0, Nothing)
dis = cDisj ">= 1.0.0, < 2.0.0"
test_reportsSimpleFailure :: Test.EasyCheck.Prop
test_reportsSimpleFailure = isDisjunctionCompatible ver dis -=- False
where ver = (1, 0, 0, Nothing)
dis = cDisj "> 1.0.0"
test_reportsAllConjunctionsAsFailure :: Test.EasyCheck.Prop
test_reportsAllConjunctionsAsFailure = isDisjunctionCompatible ver dis -=- False
where ver = (1, 0, 0, Nothing)
dis = cDisj "< 1.0.0 || > 1.0.0"
test_reportsRelevantPartOfConjunction :: Test.EasyCheck.Prop
test_reportsRelevantPartOfConjunction = isDisjunctionCompatible ver dis -=- False
where ver = (1, 0, 0, Nothing)
dis = cDisj "< 1.0.0, > 0.5.0"
test_semverCompatible :: Test.EasyCheck.Prop
test_semverCompatible = isDisjunctionCompatible ver dis -=- True
where ver = (0, 5, 9, Nothing)
dis = cDisj "~> 0.5.0"
test_semverIncompatible :: Test.EasyCheck.Prop
test_semverIncompatible = isDisjunctionCompatible ver dis -=- False
where ver = (0, 7, 1, Nothing)
dis = cDisj "~> 0.6.0"
test_semverMinimum :: Test.EasyCheck.Prop
test_semverMinimum = isDisjunctionCompatible ver dis -=- False
where ver = (0, 7, 0, Nothing)
dis = cDisj "~> 0.7.2"
test_resolvesSimpleDependency :: Test.EasyCheck.Prop
test_resolvesSimpleDependency =
maybeResolvedPackages (resolve defaultConfig pkg db) -=- Just [json100, pkg]
where pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "json" "=1.0.0"]
json100 = cPackage "json" (1, 0, 0, Nothing) []
json101 = cPackage "json" (1, 0, 1, Nothing) []
db = cDB [json100, json101]
test_reportsUnknownPackage :: Test.EasyCheck.Prop
test_reportsUnknownPackage = showResult result -=- "There seems to be no version of package json that can satisfy the constraint json = 1.0.0"
where result = resolve defaultConfig pkg db
pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "json" "= 1.0.0"]
db = cDB [pkg]
test_reportsMissingPackageVersion :: Test.EasyCheck.Prop
test_reportsMissingPackageVersion = showResult result -=- "There seems to be no version of package json that can satisfy the constraint json = 1.2.0"
where result = resolve defaultConfig pkg db
pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "json" "=1.2.0"]
json = cPackage "json" (1, 0, 0, Nothing) []
db = cDB [json]
test_reportsSecondaryConflict :: Test.EasyCheck.Prop
test_reportsSecondaryConflict = showResult result -=- expectedMessage
where result = resolve defaultConfig pkg db
pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "json" "= 1.0.0", cDep "b" ">= 0.0.1"]
b = cPackage "b" (0, 0, 2, Nothing) [cDep "json" "~> 1.0.4"]
json100 = cPackage "json" (1, 0, 0, Nothing) []
json105 = cPackage "json" (1, 0, 5, Nothing) []
db = cDB [pkg, b, json100, json105]
expectedMessage = "There was a conflict for package json\n"
++ "sample\n"
++ " |- json (json = 1.0.0)\n"
++ "sample\n"
++ " |- b (b >= 0.0.1)\n"
++ " |- json (json ~> 1.0.4)"
test_reportsSecondaryConflictInsteadOfPrimary :: Test.EasyCheck.Prop
test_reportsSecondaryConflictInsteadOfPrimary = showResult result -=- expectedMessage
where result = resolve defaultConfig pkg db
pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "json" "= 1.0.0", cDep "b" ">= 0.0.5"]
b001 = cPackage "b" (0, 0, 1, Nothing) []
b002 = cPackage "b" (0, 0, 2, Nothing) []
b003 = cPackage "b" (0, 0, 3, Nothing) []
b006 = cPackage "b" (0, 0, 6, Nothing) [cDep "json" "~> 1.0.4"]
json100 = cPackage "json" (1, 0, 0, Nothing) []
json105 = cPackage "json" (1, 0, 5, Nothing) []
db = cDB [pkg, b001, b002, b003, b006, json100, json105]
expectedMessage = "There was a conflict for package json\n"
++ "sample\n"
++ " |- json (json = 1.0.0)\n"
++ "sample\n"
++ " |- b (b >= 0.0.5)\n"
++ " |- json (json ~> 1.0.4)"
test_detectsSecondaryOnFirstActivation :: Test.EasyCheck.Prop
test_detectsSecondaryOnFirstActivation = showResult result -=- expectedMessage
where result = resolve defaultConfig pkg db
pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "a" "= 0.0.1", cDep "b" "> 0.0.1"]
a001 = cPackage "a" (0, 0, 1, Nothing) [cDep "b" "= 0.0.1"]
b001 = cPackage "b" (0, 0, 1, Nothing) []
b002 = cPackage "b" (0, 0, 2, Nothing) []
db = cDB [pkg, a001, b001, b002]
expectedMessage = "There was a conflict for package b\n"
++ "sample\n"
++ " |- a (a = 0.0.1)\n"
++ " |- b (b = 0.0.1)\n"
++ "sample\n"
++ " |- b (b > 0.0.1)"
test_makesDecisionBetweenAlternatives :: Test.EasyCheck.Prop
test_makesDecisionBetweenAlternatives =
maybeResolvedPackages (resolve defaultConfig pkg db) -=- Just [json150, pkg]
where pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "json" "> 1.0.0, < 2.0.0 || >= 4.0.0"]
json150 = cPackage "json" (1, 5, 0, Nothing) []
json320 = cPackage "json" (3, 2, 0, Nothing) []
db = cDB [json150, json320]
test_alwaysChoosesNewestAlternative :: Test.EasyCheck.Prop
test_alwaysChoosesNewestAlternative =
maybeResolvedPackages (resolve defaultConfig pkg db) -=- Just [json420, pkg]
where pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "json" "> 1.0.0, < 2.0.0 || >= 4.0.0"]
json150 = cPackage "json" (1, 5, 0, Nothing) []
json420 = cPackage "json" (4, 2, 0, Nothing) []
db = cDB [json150, json420]
test_doesNotChoosePrereleaseByDefault :: Test.EasyCheck.Prop
test_doesNotChoosePrereleaseByDefault =
maybeResolvedPackages (resolve defaultConfig pkg db) -=- Just [b109, pkg]
where pkg = cPackage "A" (0, 0, 1, Nothing) [cDep "B" ">= 1.0.0"]
b109 = cPackage "B" (1, 0, 9, Nothing) []
b110b1 = cPackage "B" (1, 1, 0, Just "b1") []
db = cDB [b109, b110b1]
test_upgradesPackageToPrereleaseWhenNeccesary :: Test.EasyCheck.Prop
test_upgradesPackageToPrereleaseWhenNeccesary =
maybeResolvedPackages (resolve defaultConfig pkg db) -=- Just [b110b1, c, pkg]
where pkg = cPackage "A" (0, 0, 1, Nothing) [cDep "C" "= 1.2.0"]
b109 = cPackage "B" (1, 0, 9, Nothing) []
b110b1 = cPackage "B" (1, 1, 0, Just "b1") []
c = cPackage "C" (1, 2, 0, Nothing) [cDep "B" ">= 1.1.0-b1"]
db = cDB [b109, b110b1, c]
test_prefersLocalPackageCacheEvenIfOlder :: Test.EasyCheck.Prop
test_prefersLocalPackageCacheEvenIfOlder =
maybeResolvedPackages (resolve defaultConfig pkg db) -=- Just [b101, pkg]
where pkg = cPackage "A" (0, 0, 1, Nothing) [cDep "B" ">= 1.0.0"]
b101 = cPackage "B" (1, 0, 1, Nothing) []
b105 = cPackage "B" (1, 0, 5, Nothing) []
db = addPackage (addPackage emptySet b101 FromLocalCache) b105 FromRepository
test_reportsCompilerIncompatibility :: Test.EasyCheck.Prop
test_reportsCompilerIncompatibility = showResult result -=- "The package json-1.0.0, dependency constraint json = 1.0.0, is not compatible to the current compiler. It was activated because:\nsample\n |- json (json = 1.0.0)"
where result = resolve defaultConfig pkg db
pkg = cPackage "sample" (0, 0, 1, Nothing) [cDep "json" "= 1.0.0"]
json = cPackageCC "json" (1, 0, 0, Nothing) [cCC "nocompiler" "= 1.0.0"]
db = cDB [json]
cPackage :: String -> Version -> [Dependency] -> Package
cPackage p v ds = emptyPackage {
name = p
, version = v
, author = "author"
, synopsis = "JSON library for Curry"
, dependencies = ds
, maintainer = Nothing
, description = Nothing
, license = Nothing
, licenseFile = Nothing
, copyright = Nothing
, homepage = Nothing
, bugReports = Nothing
, repository = Nothing
, compilerCompatibility = []
, source = Nothing
, exportedModules = []
}
cPackageCC :: String -> Version -> [CompilerCompatibility] -> Package
cPackageCC p v cs = emptyPackage {
name = p
, version = v
, author = "author"
, synopsis = "JSON library for Curry"
, dependencies = []
, maintainer = Nothing
, description = Nothing
, license = Nothing
, licenseFile = Nothing
, copyright = Nothing
, homepage = Nothing
, bugReports = Nothing
, repository = Nothing
, compilerCompatibility = cs
, source = Nothing
, exportedModules = []
}
cDisj :: String -> Disjunction
cDisj = fromJust . readVersionConstraints
cDep :: String -> String -> Dependency
cDep p c = Dependency p (fromJust $ readVersionConstraints c)
cCC :: String -> String -> CompilerCompatibility
cCC p c = CompilerCompatibility p (fromJust $ readVersionConstraints c)
cDB :: [Package] -> LookupSet
cDB ps = addPackages emptySet ps FromRepository
|