-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdcc05a
commit 8d4e364
Showing
3 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
(test | ||
(name test) | ||
(package opam-0install-cudf) | ||
(libraries alcotest opam-0install-cudf)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
let universe = | ||
Cudf.load_universe [ | ||
{Cudf.default_package with package = "a"; version = 1}; | ||
{Cudf.default_package with package = "a"; version = 2}; | ||
{Cudf.default_package with package = "a"; version = 3}; | ||
{Cudf.default_package with package = "a"; version = 4}; | ||
|
||
{Cudf.default_package with package = "b"; version = 1}; | ||
{Cudf.default_package with package = "b"; version = 2; pkg_extra = [("avoid-version", `Int 1)]}; | ||
{Cudf.default_package with package = "b"; version = 3; pkg_extra = [("avoid-version", `Int 0)]}; | ||
{Cudf.default_package with package = "b"; version = 4}; | ||
|
||
{Cudf.default_package with package = "c"; version = 1; pkg_extra = [("avoid-version", `Int 1)]}; | ||
{Cudf.default_package with package = "c"; version = 2}; | ||
{Cudf.default_package with package = "c"; version = 3}; | ||
{Cudf.default_package with package = "c"; version = 4; pkg_extra = [("avoid-version", `Int 0)]}; | ||
|
||
{Cudf.default_package with package = "d"; version = 1; pkg_extra = [("avoid-version", `Int 0)]}; | ||
{Cudf.default_package with package = "d"; version = 2}; | ||
{Cudf.default_package with package = "d"; version = 3}; | ||
{Cudf.default_package with package = "d"; version = 4; pkg_extra = [("avoid-version", `Int 1)]}; | ||
] | ||
|
||
let solve ?prefer_oldest req = | ||
let x = Opam_0install_cudf.create ?prefer_oldest ~constraints:[] universe in | ||
match Opam_0install_cudf.solve x req with | ||
| Ok sel -> Ok (Opam_0install_cudf.packages_of_result sel) | ||
| Error diag -> Error (Opam_0install_cudf.diagnostics ~verbose:true diag) | ||
|
||
let simple_solve () = | ||
Alcotest.(check (result (list (pair string int)) string)) | ||
"equal" (Ok [("a", 4)]) | ||
(solve [("a", `Essential)]) | ||
|
||
let simple_oldest () = | ||
Alcotest.(check (result (list (pair string int)) string)) | ||
"equal" (Ok [("a", 1)]) | ||
(solve ~prefer_oldest:true [("a", `Essential)]) | ||
|
||
let simple_avoid_1 () = | ||
Alcotest.(check (result (list (pair string int)) string)) | ||
"equal" (Ok [("b", 4)]) | ||
(solve [("b", `Essential)]) | ||
|
||
let oldest_avoid_1 () = | ||
Alcotest.(check (result (list (pair string int)) string)) | ||
"equal" (Ok [("b", 1)]) | ||
(solve ~prefer_oldest:true [("b", `Essential)]) | ||
|
||
let simple_avoid_2 () = | ||
Alcotest.(check (result (list (pair string int)) string)) | ||
"equal" (Ok [("c", 4)]) | ||
(solve [("c", `Essential)]) | ||
|
||
let oldest_avoid_2 () = | ||
Alcotest.(check (result (list (pair string int)) string)) | ||
"equal" (Ok [("c", 2)]) | ||
(solve ~prefer_oldest:true [("c", `Essential)]) | ||
|
||
let simple_avoid_3 () = | ||
Alcotest.(check (result (list (pair string int)) string)) | ||
"equal" (Ok [("d", 3)]) | ||
(solve [("d", `Essential)]) | ||
|
||
let oldest_avoid_3 () = | ||
Alcotest.(check (result (list (pair string int)) string)) | ||
"equal" (Ok [("d", 1)]) | ||
(solve ~prefer_oldest:true [("d", `Essential)]) | ||
|
||
let () = | ||
Alcotest.run "cudf" | ||
[ | ||
( "simple solve", | ||
[ | ||
Alcotest.test_case "normal" `Quick simple_solve; | ||
Alcotest.test_case "oldest" `Quick simple_oldest; | ||
] ); | ||
( "avoid-version", | ||
[ | ||
Alcotest.test_case "normal 1" `Quick simple_avoid_1; | ||
Alcotest.test_case "oldest 1" `Quick oldest_avoid_2; | ||
Alcotest.test_case "normal 2" `Quick simple_avoid_2; | ||
Alcotest.test_case "oldest 2" `Quick oldest_avoid_2; | ||
Alcotest.test_case "normal 3" `Quick simple_avoid_3; | ||
Alcotest.test_case "oldest 3" `Quick oldest_avoid_3; | ||
] ); | ||
] |