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 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690
open Conex_utils open Conex_resource open Conex_io open Common module CS = Conex_nocrypto.NC_S module Mem = struct type tree = Leaf of string * string | Node of string * tree list let name = function Leaf (x, _) -> x | Node (x, _) -> x let find_e x es = try Some (List.find (fun n -> name n = x) es) with Not_found -> None let rec find t path = match t, path with | x, [p] when name x = p -> Ok x | _, [_] -> Error "couldn't find what you were looking for" | Node (_, xs), _::p'::ps -> (match find_e p' xs with | None -> Error "not found what you're looking for" | Some x -> find x (p'::ps)) | _ -> Error "couldn't find" let rec insert t path v = match t, path with (* leaf case, just add the leaf *) | Node (x, xs), _::ps::[] -> let l = Leaf (ps, v) in let ns = List.filter (fun n -> name n <> ps) xs in Node (x, l::ns) (* on the route towards.. move along *) | Node (x, xs), _::p'::ps -> let node = match find_e p' xs with (* need to create an intermediary node *) | None -> let n = Node (p', []) in insert n (p'::ps) v (* follow on *) | Some n -> insert n (p'::ps) v in let xs = List.filter (fun n -> name n <> p') xs in Node (x, node::xs) | _ -> Alcotest.fail "should not happen" let find_f t path = find t ("/"::path) let ins t path v = insert t ("/"::path) v let mem_provider () : Conex_io.t = let root = ref (Node ("/", [])) in let file_type path = find_f !root path >>= function | Leaf _ -> Ok File | Node _ -> Ok Directory and read path = find_f !root path >>= function | Leaf (_, v) -> Ok v | _ -> Error "couldn't find what was searched for" and write path data = let r = ins !root path data in root := r ; Ok () and read_dir path = find_f !root path >>= function | Node (_, ch) -> Ok (List.map (function Node (x, _) -> Directory, x | Leaf (x, _) -> File, x) ch) | Leaf _ -> Error "reading a directory, but found files" and exists path = match find_f !root path with Ok _ -> true | Error _ -> false in { basedir = "mem" ; description = "Memory provider" ; file_type ; read ; write ;read_dir ; exists } end let str_err = let module M = struct type t = string let pp ppf x = Format.pp_print_string ppf x let equal _ _ = true end in (module M : Alcotest.TESTABLE with type t = M.t) let ft = let module M = struct type t = file_type let pp ppf = function | File -> Format.pp_print_string ppf "file" | Directory -> Format.pp_print_string ppf "directory" let equal a b = match a, b with | File, File -> true | Directory, Directory -> true | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let it = let module M = struct type t = Conex_utils.item let pp ppf = function | File, f -> Format.fprintf ppf "file %s" f | Directory, d -> Format.fprintf ppf "directory %s" d let equal a b = match a, b with | (File, f), (File, g) -> f = g | (Directory, a), (Directory, b) -> a = b | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let empty_p () = let p = Mem.mem_provider () in Alcotest.check Alcotest.bool "no 'foo' in empty mem store" false (p.exists ["foo"]) ; Alcotest.check (result Alcotest.string str_err) "reading 'foo' in empty mem store" (Error "") (p.read ["foo"]) ; Alcotest.check (result ft str_err) "file-type of 'foo' in empty mem store" (Error "") (p.file_type ["foo"]) ; Alcotest.check (result (Alcotest.list it) str_err) "read_dir of 'foo' in empty mem store" (Error "") (p.read_dir ["foo"]) let basic_p () = let p = Mem.mem_provider () in Alcotest.check (result Alcotest.unit str_err) "writing 'bar' to 'foo'" (Ok ()) (p.write ["foo"] "bar") ; Alcotest.check Alcotest.bool "foo in basic store" true (p.exists ["foo"]) ; Alcotest.check Alcotest.bool "foo/bar not in basic store" false (p.exists ["foo";"bar"]) ; Alcotest.check Alcotest.bool "foobar not in basic store" false (p.exists ["foobar"]) ; Alcotest.check (result Alcotest.string str_err) "foo contains bar in simple store" (Ok "bar") (p.read ["foo"]) ; Alcotest.check (result Alcotest.unit str_err) "writing 'barf' to 'foo" (Ok ()) (p.write ["foo"] "barf") ; Alcotest.check (result Alcotest.string str_err) "foo contains barf in simple store" (Ok "barf") (p.read ["foo"]) ; Alcotest.check (result (Alcotest.list it) str_err) "read_dir of 'foo' in simple store" (Error "") (p.read_dir ["foo"]) let more_p () = let p = Mem.mem_provider () in Alcotest.check (result Alcotest.unit str_err) "writing 'bar' to 'packages/foo'" (Ok ()) (p.write ["packages"; "foo"] "bar") ; Alcotest.check Alcotest.bool "packages in more store" true (p.exists ["packages"]) ; Alcotest.check Alcotest.bool "packages/foo in more store" true (p.exists ["packages"; "foo"]) ; Alcotest.check Alcotest.bool "packages/foo/bar not in more store" false (p.exists ["packages"; "foo"; "bar"]) ; Alcotest.check (result Alcotest.unit str_err) "writing 'bar2' to 'packages/foo2'" (Ok ()) (p.write ["packages"; "foo2"] "bar2") ; Alcotest.check (result (Alcotest.list it) str_err) "read_dir of 'packages' in more mem store" (Ok [ File, "foo2" ; File, "foo" ]) (p.read_dir ["packages"]) ; Alcotest.check (result Alcotest.unit str_err) "writing 'bar3' to 'packages/foo3'" (Ok ()) (p.write ["packages"; "foo3"] "bar3") ; Alcotest.check (result Alcotest.unit str_err) "writing 'bar4' to 'packages/foo4'" (Ok ()) (p.write ["packages"; "foo4"] "bar4") ; Alcotest.check (result (Alcotest.list it) str_err) "read_dir of 'packages' in even more mem store" (Ok [ File, "foo4" ; File, "foo3" ; File, "foo2" ; File, "foo" ]) (p.read_dir ["packages"]) ; Alcotest.check (result (Alcotest.list it) str_err) "read_dir of 'packages2' in even more mem store" (Error "") (p.read_dir ["packages2"]) ; Alcotest.check (result Alcotest.string str_err) "foo contains bar in more store" (Ok "bar") (p.read ["packages";"foo"]) ; Alcotest.check (result Alcotest.string str_err) "foo2 contains bar2 in more store" (Ok "bar2") (p.read ["packages"; "foo2"]) ; Alcotest.check (result Alcotest.string str_err) "foo3 contains bar3 in more store" (Ok "bar3") (p.read ["packages"; "foo3"]) ; Alcotest.check (result Alcotest.string str_err) "foo4 contains bar4 in more store" (Ok "bar4") (p.read ["packages"; "foo4"]) ; Alcotest.check (result Alcotest.string str_err) "foo5 not contained in more store" (Error "") (p.read ["packages"; "foo5"]) ; Alcotest.check (result Alcotest.unit str_err) "writing 'foobar' to 'packages/foobar/barfoo/foobar/foo'" (Ok ()) (p.write ["packages"; "foobar" ; "barfoo" ; "foobar" ; "foo"] "foobar") ; Alcotest.check (result Alcotest.string str_err) "packages/foobar/barfoo/foobar/foo contained in more store" (Ok "foobar") (p.read ["packages"; "foobar" ; "barfoo" ; "foobar" ; "foo"]) ; Alcotest.check Alcotest.bool "packages/foobar/barfoo/foobar contained in more store" true (p.exists ["packages"; "foobar" ; "barfoo" ; "foobar"]) let mem_provider_tests = [ "empty provider", `Quick, empty_p ; "basic provider", `Quick, basic_p ; "more provider", `Quick, more_p ; ] let re = let module M = struct type t = Conex_io.r_err let pp = Conex_io.pp_r_err let equal a b = match a, b with | `NotFound (t, a), `NotFound (t', a') -> typ_equal t t' && name_equal a a' | `NameMismatch (t, a, b), `NameMismatch (t', a', b') -> typ_equal t t' && name_equal a a' && name_equal b b' | `ParseError (t, n, _), `ParseError (t', n', _) -> typ_equal t t' && name_equal n n' | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let ch_err = let module M = struct type t = Conex_io.cc_err let pp = Conex_io.pp_cc_err let equal a b = match a, b with | `FileNotFound a, `FileNotFound a' -> name_equal a a' | `NotADirectory a, `NotADirectory a' -> name_equal a a' | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let io_ex f = match f with Error e -> Alcotest.fail e | Ok x -> x module RTest (V : Conex_crypto.VERIFY) = struct (* basic operations work, and we have an in-memory data provider! let the games begin *) let empty_r () = let io = Mem.mem_provider () in Alcotest.check (result sset str_err) "empty repo errors on ids" (Error "") (Conex_io.ids io) ; Alcotest.check (result sset str_err) "empty repo errors on packages" (Error "") (Conex_io.packages io) ; Alcotest.check (result sset str_err) "empty repo errors on releases" (Error "") (Conex_io.releases io "foo") ; Alcotest.check (result auth re) "reading authorisation foo in empty repo fails" (Error (`NotFound (`Authorisation, "foo"))) (Conex_io.read_authorisation io "foo") ; Alcotest.check (result package re) "reading releases foo in empty repo fails" (Error (`NotFound (`Package, "foo"))) (Conex_io.read_package io "foo") ; Alcotest.check (result ji re) "reading janitorindex foo in empty repo fails" (Error (`NotFound (`Author, "foo"))) (Conex_io.read_author io "foo") ; Alcotest.check (result rel re) "reading checksum foo.0 in empty repo fails" (Error (`NotFound (`Release, "foo.0"))) (Conex_io.read_release io "foo.0") ; Alcotest.check (result rel ch_err) "computing checksum foo.0 in empty repo fails" (Error (`FileNotFound "foo.0")) (Conex_io.compute_release V.raw_digest io Uint.zero "foo.0") let key_r () = let io = Mem.mem_provider () in let k = Author.t Uint.zero "foo" in Alcotest.check (result Alcotest.unit str_err) "writing index 'foo'" (Ok ()) (Conex_io.write_author io k) ; Alcotest.check sset "key repo has one key" (S.singleton "foo") (io_ex (Conex_io.ids io)) ; Alcotest.check (result Alcotest.unit str_err) "writing index 'foo' again" (Ok ()) (Conex_io.write_author io k) ; Alcotest.check sset "key repo+ has one key" (S.singleton "foo") (io_ex (Conex_io.ids io)) ; let k2 = Author.t Uint.zero "foobar" in Alcotest.check (result Alcotest.unit str_err) "writing index 'foobar'" (Ok ()) (Conex_io.write_author io k2) ; Alcotest.check sset "key repo has two keys" (S.add "foobar" (S.singleton "foo")) (io_ex (Conex_io.ids io)) ; let jk = Author.t Uint.zero "janitor" in Alcotest.check (result Alcotest.unit str_err) "writing index 'janitor'" (Ok ()) (Conex_io.write_author io jk) ; Alcotest.check sset "key repo has three keys" (S.add "janitor" (S.add "foobar" (S.singleton "foo"))) (io_ex (Conex_io.ids io)) ; Alcotest.check (result ji re) "reading author 'janitor'" (Ok jk) (Conex_io.read_author io "janitor") let team_r () = let r = Conex_repository.repository ~quorum:10 V.digest () in Alcotest.(check int "quorum is correct" 10 (Conex_repository.quorum r)) ; Alcotest.(check (option sset) "team foo is empty" None (Conex_repository.find_team r "foo")) ; let t = Team.t ~members:(S.singleton "bar") Uint.zero "foo" in let r = Conex_repository.add_team r t in Alcotest.(check (option sset) "team foo has one member" (Some (S.singleton "bar")) (Conex_repository.find_team r "foo")) let checks_r () = let io = Mem.mem_provider () in Alcotest.check (result Alcotest.unit str_err) "writing 'bar' to 'packages/foo/foo.0/foo'" (Ok ()) (io.write ["packages"; "foo"; "foo.0"; "foo"] "bar") ; Alcotest.check (result Alcotest.unit str_err) "writing 'foo' to 'packages/foo/foo.0/bar'" (Ok ()) (io.write ["packages"; "foo"; "foo.0"; "bar"] "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing 'p1' to 'packages/foo/foo.0/files/patch1'" (Ok ()) (io.write ["packages"; "foo"; "foo.0"; "files"; "patch1"] "p1") ; Alcotest.check (result Alcotest.unit str_err) "writing 'p2' to 'packages/foo/foo.0/files/patch2'" (Ok ()) (io.write ["packages"; "foo"; "foo.0"; "files"; "patch2"] "p2") ; (* manually crafted using echo -n XXX | openssl dgst -sha256 -binary | b64encode -m - *) let csums = [ { Release.filename = "bar" ; digest = (`SHA256, "LCa0a2j/xo/5m0U8HTBBNBNCLXBkg7+g+YpeiGJm564=") } ; { Release.filename = "foo" ; digest = (`SHA256, "/N4rLtula/QIYB+3If6bXDONEO5CnqBPrlURto+/j7k=") } ; { Release.filename = "files/patch1" ; digest = (`SHA256, "9kVR/NbweCPLh5cc+5FEZCXaGChrOrHvk14MvXpp9oo=") } ; { Release.filename = "files/patch2" ; digest = (`SHA256, "OUbKZP942TymEJCkN8u2s9LKDUiPX5zPMFlgg2iydpM=") } ] in let css = Release.t Uint.zero "foo.0" csums in Alcotest.check (result rel ch_err) "checksum computation works" (Ok css) (Conex_io.compute_release V.raw_digest io Uint.zero "foo.0") let key = let module M = struct type t = Key.t let pp = Key.pp let equal = Key.equal end in (module M : Alcotest.TESTABLE with type t = M.t) let typ = let module M = struct type t = typ let pp = pp_typ let equal = typ_equal end in (module M : Alcotest.TESTABLE with type t = M.t) let signature = let module M = struct type t = Signature.t let pp = Signature.pp let equal ((alg, c), data) ((alg', c'), data') = alg = alg' && String.compare data data' = 0 && Uint.compare c c' = 0 end in (module M : Alcotest.TESTABLE with type t = M.t) let digest = let module M = struct type t = Digest.t let pp = Digest.pp let equal = Digest.equal end in (module M : Alcotest.TESTABLE with type t = M.t) let basic_persistency () = let open Wire in Alcotest.check (result team str_err) "couldn't parse team" (Error "") (Team.of_wire M.empty) ; Alcotest.check (result typ str_err) "couldn't parse typ" (Error "") (typ_of_wire (String "frabs")) ; Alcotest.check (result typ str_err) "couldn't parse typ" (Error "") (typ_of_wire (Int Uint.zero)) ; Alcotest.check (result signature str_err) "couldn't parse signature" (Error "") (Signature.of_wire (List [ Int Uint.zero ; String "foo" ; String "baz" ])) ; Alcotest.check (result signature str_err) "couldn't parse signature" (Error "") (Signature.of_wire (List [ String "foo" ; String "foo" ; Int Uint.zero ])) ; Alcotest.check (result signature str_err) "couldn't parse signature" (Error "") (Signature.of_wire (List [ Int Uint.zero ; Int Uint.zero ; Int Uint.zero ])) ; Alcotest.check (result signature str_err) "could parse signature" (Ok ((`RSA_PSS_SHA256, Uint.zero), "frab")) (Signature.of_wire (List [ Int Uint.zero ; String "RSA-PSS-SHA256" ; String "frab" ])) ; Alcotest.check (result digest str_err) "couldn't parse digest" (Error "") (Digest.of_wire (List [ Int Uint.zero ; String "foobar" ])) ; Alcotest.check (result digest str_err) "couldn't parse digest" (Error "") (Digest.of_wire (List [ String "bar" ; String "foobar" ])) ; Alcotest.check (result digest str_err) "couldn't parse digest" (Error "") (Digest.of_wire (List [ String "bar" ; Int Uint.zero ])) ; Alcotest.check (result digest str_err) "could parse digest" (Ok (`SHA256, "1234")) (Digest.of_wire (List [ String "SHA256" ; String "1234" ])) ; let bad_key = List [Int Uint.zero ; String "foo" ; String "bar"] in Alcotest.check (result key str_err) "couldn't parse key" (Error "") (Key.of_wire bad_key) ; let bad_key = List [String "foobar" ; String "foo" ; Int Uint.zero] in Alcotest.check (result key str_err) "couldn't parse key (bad typ)" (Error "") (Key.of_wire bad_key) ; let bad_c = M.add "counter" (String "foo") M.empty in Alcotest.check (result team str_err) "couldn't parse team counter" (Error "") (Team.of_wire bad_c) ; let bad_n = M.add "name" (Int Uint.zero) (M.add "counter" (Int Uint.zero) (M.add "version" (Int Uint.zero) M.empty)) in Alcotest.check (result team str_err) "couldn't parse team name" (Error "") (Team.of_wire bad_n) ; let bad_n = M.add "name" (String "foo") bad_n in Alcotest.check (result team str_err) "couldn't parse team (type, wraps missing)" (Error "") (Team.of_wire bad_n) ; let bad_n = M.add "typ" (Int Uint.zero) bad_n in Alcotest.check (result team str_err) "couldn't parse team (bad type, wraps missing)" (Error "") (Team.of_wire bad_n) ; let bad_n = M.add "typ" (String "team") bad_n in Alcotest.check (result team str_err) "couldn't parse team (wraps missing)" (Error "") (Team.of_wire bad_n) ; let good_n = M.add "wraps" (Int Uint.zero) (M.add "created" (Int Uint.zero) bad_n) in let t = Team.t Uint.zero "foo" in Alcotest.check (result team str_err) "could parse team" (Ok t) (Team.of_wire good_n) ; let bad_n = M.add "typ" (String "author") good_n in Alcotest.check (result team str_err) "couldn't parse team (wrong typ)" (Error "") (Team.of_wire bad_n) ; let bad_n = M.add "version" (Int Uint.(of_int_exn 23)) good_n in Alcotest.check (result team str_err) "couldn't parse team (wrong version)" (Error "") (Team.of_wire bad_n) ; let bad_m = M.add "members" (String "bl") good_n in Alcotest.check (result team str_err) "couldn't parse team members" (Error "") (Team.of_wire bad_m) ; let bad_m = M.add "members" (List [ Int Uint.zero ]) (M.add "name" (String "foo") good_n) in Alcotest.check (result team str_err) "couldn't parse team members (not a set)" (Error "") (Team.of_wire bad_m) ; let good_t = M.add "members" (List [ String "foo" ]) good_n in let t = Team.t ~members:(S.singleton "foo") Uint.zero "foo" in Alcotest.check (result team str_err) "could parse team" (Ok t) (Team.of_wire good_t) ; Alcotest.check (result team str_err) "could unparse/parse team" (Ok t) (Team.of_wire (Team.wire t)) ; Alcotest.check (result team str_err) "could unparse/parse team" (Ok t) (Conex_opam_encoding.decode (Conex_opam_encoding.encode (Team.wire t)) >>= Team.of_wire) ; let checksum = List [ List [ String "SHA256" ; String "zWPsX4M9Gk2uvY0Jg1hASQa9yiCDU5/GkTJk7wbqE6Y=" ] ; String "foo" ] in let css = M.add "name" (String "foo") (M.add "counter" (Int Uint.zero) (M.add "wraps" (Int Uint.zero) (M.add "created" (Int Uint.zero) (M.add "version" (Int Uint.zero) (M.add "typ" (String "release") (M.add "files" (List [checksum]) M.empty)))))) in let csum = let digest = V.digest Author.(wire (t Uint.zero "bar")) in { Release.filename = "foo" ; digest } in let csums = Release.t Uint.zero "foo" [csum] in Alcotest.check (result rel str_err) "can parse checksum" (Ok csums) (Release.of_wire css) ; let s = List [ Int Uint.zero ; String (Signature.alg_to_string `RSA_PSS_SHA256) ; String "barf" ] in let pub = List [ String "RSA" ; String "data" ; Int Uint.zero ] in let pub' = (`RSA, "data", Uint.zero) in let s' = ((`RSA_PSS_SHA256, Uint.zero), "frab") in let idx = M.add "name" (String "foo") (M.add "counter" (Int Uint.zero) (M.add "created" (Int Uint.zero) (M.add "wraps" (Int Uint.zero) (M.add "typ" (String "author") (M.add "version" (Int Uint.zero) M.empty))))) in let empty_idx = M.add "queued" (List []) (M.add "keys" (List [List [pub;s]]) M.empty) in let idxs = M.add "signed" (Map idx) empty_idx in let idx' = Author.t ~keys:[pub',s'] Uint.zero "foo" in Alcotest.check (result ji str_err) "can parse index" (Ok idx') (Author.of_wire idxs) ; Alcotest.check (result ji str_err) "can unparse/parse index" (Ok idx') (Author.of_wire (Author.wire idx')) ; let r = M.add "index" (Int Uint.zero) (M.add "name" (String "foobar") (M.add "typ" (String "team") (M.add "digest" (List [ String "SHA256" ; String "01234567890123456789012345678901234567890123" ]) M.empty))) in let r' = Author.r Uint.zero "foobar" `Team (`SHA256, "01234567890123456789012345678901234567890123") in let idx = M.add "resources" (List [ Map r ]) idx in let idxs = M.add "signed" (Map idx) empty_idx in let idx' = Author.t ~keys:[pub',s'] ~resources:[r'] Uint.zero "foo" in Alcotest.check (result ji str_err) "can parse index" (Ok idx') (Author.of_wire idxs) ; Alcotest.check (result ji str_err) "can unparse/parse index" (Ok idx') (Author.of_wire (Author.wire idx')) ; let bad_r = M.add "typ" (String "teamfoo") r in let idx = M.add "resources" (List [ Map bad_r ]) idx in let idxs = M.add "signed" (Map idx) empty_idx in Alcotest.check (result ji str_err) "cannot parse index, bad resource type" (Error "") (Author.of_wire idxs) let bad_id_r () = let io = Mem.mem_provider () in Alcotest.check (result ji re) "index foo not found" (Error (`NotFound (`Author, "foo"))) (Conex_io.read_author io "foo") ; Alcotest.check (result team re) "team foo not found" (Error (`NotFound (`Team, "foo"))) (Conex_io.read_team io "foo") ; Alcotest.check (result id re) "ID foo not found" (Error (`NotFound (`Author, "foo"))) (Conex_io.read_id io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing 'barf' to 'id/foo'" (Ok ()) (io.write ["id"; "foo"] "barf") ; Alcotest.check (result ji re) "parse error on index foo" (Error (`ParseError (`Author, "foo", ""))) (Conex_io.read_author io "foo") ; Alcotest.check (result team re) "parse error on team foo" (Error (`ParseError (`Team, "foo", ""))) (Conex_io.read_team io "foo") ; Alcotest.check (result id re) "parse error on id foo" (Error (`ParseError (`Author, "foo", ""))) (Conex_io.read_id io "foo") ; let idx = Author.t Uint.zero "foo" in Alcotest.check (result Alcotest.unit str_err) "writing index 'foo'" (Ok ()) (Conex_io.write_author io idx) ; Alcotest.check (result team re) "parse error on team foo" (Error (`ParseError (`Team, "foo", ""))) (Conex_io.read_team io "foo") ; Alcotest.check (result ji re) "author foo parses" (Ok idx) (Conex_io.read_author io "foo") ; Alcotest.check (result id re) "id foo parses" (Ok (`Author idx)) (Conex_io.read_id io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing sth to 'id/foobar'" (Ok ()) (io.write ["id"; "foobar"] (Conex_opam_encoding.encode (Author.wire idx))) ; Alcotest.check (result team re) "parse error on team foobar" (Error (`ParseError (`Team, "foobar", ""))) (Conex_io.read_team io "foobar") ; Alcotest.check (result ji re) "id foobar namemismatch" (Error (`NameMismatch (`Author, "foobar", "foo"))) (Conex_io.read_author io "foobar") ; Alcotest.check (result id re) "namemismatch id foobar" (Error (`NameMismatch (`Author, "foobar", "foo"))) (Conex_io.read_id io "foobar") ; let t = Team.t Uint.zero "foo" in Alcotest.check (result Alcotest.unit str_err) "writing team 'foo'" (Ok ()) (Conex_io.write_team io t) ; Alcotest.check (result ji re) "parse error on index foo" (Error (`ParseError (`Author, "foo", ""))) (Conex_io.read_author io "foo") ; Alcotest.check (result team re) "team foo parses" (Ok t) (Conex_io.read_team io "foo") ; Alcotest.check (result id re) "id foo parses" (Ok (`Team t)) (Conex_io.read_id io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing sth to 'id/foobar'" (Ok ()) (io.write ["id"; "foobar"] (Conex_opam_encoding.encode (Team.wire t))) ; Alcotest.check (result ji re) "parse error on index foobar" (Error (`ParseError (`Author, "foobar", ""))) (Conex_io.read_author io "foobar") ; Alcotest.check (result team re) "name mismatch on team foobar" (Error (`NameMismatch (`Team, "foobar", "foo"))) (Conex_io.read_team io "foobar") ; Alcotest.check (result id re) "name mismatch on id foo (parse error in author)" (Error (`ParseError (`Author, "foobar", ""))) (Conex_io.read_id io "foobar") let bad_idx_r () = let io = Mem.mem_provider () in Alcotest.check (result ji re) "author foo not found" (Error (`NotFound (`Author, "foo"))) (Conex_io.read_author io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing 'bla' to 'id/foo'" (Ok ()) (io.write ["id"; "foo"] "bla") ; Alcotest.check (result ji re) "bad author foo" (Error (`ParseError (`Author, "foo", ""))) (Conex_io.read_author io "foo") ; let idx = Author.t Uint.zero "foo" in Alcotest.check (result Alcotest.unit str_err) "writing author 'foo'" (Ok ()) (Conex_io.write_author io idx) ; Alcotest.check (result ji re) "good author foo" (Ok idx) (Conex_io.read_author io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing sth to 'id/foobar'" (Ok ()) (io.write ["id"; "foobar"] (Conex_opam_encoding.encode (Author.wire idx))) ; Alcotest.check (result ji re) "name mismatch in foobar" (Error (`NameMismatch (`Author, "foobar", "foo"))) (Conex_io.read_author io "foobar") let bad_auth_r () = let io = Mem.mem_provider () in Alcotest.check (result auth re) "authorisation foo not found" (Error (`NotFound (`Authorisation, "foo"))) (Conex_io.read_authorisation io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing 'foobar' to 'packages/foo/authorisation'" (Ok ()) (io.write ["packages"; "foo"; "authorisation"] "foobar") ; Alcotest.check (result auth re) "parse error on authorisation foo" (Error (`ParseError (`Authorisation, "foo", ""))) (Conex_io.read_authorisation io "foo") ; let a = Authorisation.t Uint.zero "foo" in Alcotest.check (result Alcotest.unit str_err) "writing authorisation 'foo'" (Ok ()) (Conex_io.write_authorisation io a) ; Alcotest.check (result auth re) "authorisation foo good" (Ok a) (Conex_io.read_authorisation io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing sth to 'packages/foobar/authorisation'" (Ok ()) (io.write ["packages"; "foobar"; "authorisation"] (Conex_opam_encoding.encode (Authorisation.wire a))) ; Alcotest.check (result auth re) "name mismatch on authorisation foobar" (Error (`NameMismatch (`Authorisation, "foobar", "foo"))) (Conex_io.read_authorisation io "foobar") let bad_rel_r () = let io = Mem.mem_provider () in Alcotest.check (result package re) "package foo not found" (Error (`NotFound (`Package, "foo"))) (Conex_io.read_package io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing 'foobar' to 'packages/foo/package'" (Ok ()) (io.write ["packages"; "foo"; "package"] "foobar") ; Alcotest.check (result package re) "parse error on package foo" (Error (`ParseError (`Package, "foo", ""))) (Conex_io.read_package io "foo") ; let rel = Package.t Uint.zero "foo" in Alcotest.check (result Alcotest.unit str_err) "writing package 'foo'" (Ok ()) (Conex_io.write_package io rel) ; Alcotest.check (result package re) "package foo good" (Ok rel) (Conex_io.read_package io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing sth to 'packages/foobar/package'" (Ok ()) (io.write ["packages"; "foobar"; "package"] (Conex_opam_encoding.encode (Package.wire rel))) ; Alcotest.check (result package re) "name mismatch on pacakge foobar" (Error (`NameMismatch (`Package, "foobar", "foo"))) (Conex_io.read_package io "foobar") let bad_cs_r () = let io = Mem.mem_provider () in Alcotest.check (result rel re) "package foo not found" (Error (`NotFound (`Release, "foo"))) (Conex_io.read_release io "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing 'foobar' to 'packages/foo/foo.0/release'" (Ok ()) (io.write ["packages"; "foo"; "foo.0"; "release"] "foobar") ; Alcotest.check (result rel re) "parse error on release foo.0" (Error (`ParseError (`Release, "foo.0", ""))) (Conex_io.read_release io "foo.0") ; let c = Release.t Uint.zero "foo.0" [] in Alcotest.check (result Alcotest.unit str_err) "writing release foo.0" (Ok ()) (Conex_io.write_release io c) ; Alcotest.check (result rel re) "release foo.0 good" (Ok c) (Conex_io.read_release io "foo.0") ; Alcotest.check (result Alcotest.unit str_err) "writing sth to 'packages/foo/foo.1/release'" (Ok ()) (io.write ["packages"; "foo"; "foo.1"; "release"] (Conex_opam_encoding.encode (Release.wire c))) ; Alcotest.check (result rel re) "name mismatch on release foo.1" (Error (`NameMismatch (`Release, "foo.1", "foo.0"))) (Conex_io.read_release io "foo.1") ; Alcotest.check (result Alcotest.unit str_err) "writing 'blubb' to 'packages/foo/foo.2'" (Ok ()) (io.write ["packages"; "foo"; "foo.2"] "blubb") ; Alcotest.check (result rel ch_err) "release is a file, should be a directory" (Error (`NotADirectory "foo.2")) (Conex_io.compute_release V.raw_digest io Uint.zero "foo.2") let basic_repo_tests = [ "empty repo", `Quick, empty_r ; "key repo", `Quick, key_r ; "team", `Quick, team_r ; "checksum computation is sane", `Quick, checks_r ; "basic data persistency", `Quick, basic_persistency ; "bad id in repo", `Quick, bad_id_r ; "bad idx in repo", `Quick, bad_idx_r ; "bad auth in repo", `Quick, bad_auth_r ; "bad rel in repo", `Quick, bad_rel_r ; "bad cs in repo", `Quick, bad_cs_r ; ] let conf = let module M = struct type t = Conex_repository.conflict let pp = Conex_repository.pp_conflict let equal a b = match a, b with | `NameConflict (n, _), `NameConflict (n', _) -> name_equal n n' | `TypConflict (n, _), `TypConflict (n', _) -> typ_equal n n' | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let r_fake = let module M = struct type t = Conex_repository.t let pp ppf _ = Format.fprintf ppf "repository" let equal _ _ = true end in (module M : Alcotest.TESTABLE with type t = M.t) let a_err = let module M = struct type t = [ Conex_repository.base_error | Conex_repository.conflict | `InsufficientQuorum of name * typ * S.t * int | `AuthorWithoutKeys of identifier ] let pp ppf = function | #Conex_repository.conflict as c -> Conex_repository.pp_conflict ppf c | e -> Conex_repository.pp_error ppf e let equal a b = match a, b with | `NameConflict (n, _), `NameConflict (n', _) -> name_equal n n' | `TypConflict (n, _), `TypConflict (n', _) -> typ_equal n n' | `InvalidName (w, h), `InvalidName (w', h') -> name_equal w w' && name_equal h h' | `InvalidResource (n, w, h), `InvalidResource (n', w', h') -> name_equal n n' && typ_equal w w' && typ_equal h h' | `NotApproved (n, r, js), `NotApproved (n', r', js') -> name_equal n n' && typ_equal r r' && S.equal js js' | `InsufficientQuorum (id, r, q, req), `InsufficientQuorum (id', r', q', req') -> id_equal id id' && S.equal q q' && typ_equal r r' && req = req' | `AuthorWithoutKeys id, `AuthorWithoutKeys id' -> id_equal id id' | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let idx_sign () = let r = Conex_repository.repository ~quorum:0 V.digest () in let id = "foo" in let pub, priv = gen_pub () in let idx = Author.t Uint.zero id in Alcotest.check (result r_fake a_err) "empty index signed properly (no resources, quorum 0)" (Ok r) (Conex_repository.validate_author r idx) ; let pubenc = Key.wire id pub in let res = Author.r (Author.next_id idx) id `Key (V.digest pubenc) in let idx' = Author.queue idx res in let signed_idx = sign_idx idx' priv in Alcotest.check (result Alcotest.unit verr) "idx digitally signed properly" (Ok ()) (V.verify signed_idx) ; Alcotest.check (result r_fake a_err) "signed_idx signed properly (1 resource, quorum 0)" (Ok r) (Conex_repository.validate_author r signed_idx) ; Alcotest.check (result r_fake a_err) "idx signed properly (0 resources, 1 queued, quorum 0)" (Ok r) (Conex_repository.validate_author r idx) ; Alcotest.check (result r_fake a_err) "idx not signed properly (1 resource, quorum 0)" (Error (`AuthorWithoutKeys "foo")) (Conex_repository.validate_author r (Author.approve idx' res)) let idx_sign_verify () = let r = Conex_repository.repository ~quorum:0 V.digest () in let id = "foo" in let pub, priv = gen_pub () in let d = V.digest (Key.wire id pub) in let res = Author.r Uint.zero id `Key d in let resources = [ res ] in let idx = Author.t ~resources Uint.zero id in let signed_idx = sign_idx idx priv in Alcotest.check (result r_fake a_err) "idx signed properly" (Ok r) (Conex_repository.validate_author r signed_idx) ; Alcotest.check (result Alcotest.unit verr) "idx digitally signed properly" (Ok ()) (V.verify signed_idx) ; let queued = [ Author.r Uint.zero id `Team d ] in let idx'' = Author.t ~keys:signed_idx.Author.keys ~resources ~queued ~counter:Uint.(of_int_exn 1) Uint.zero id in Alcotest.check (result Alcotest.unit verr) "idx'' digitally signed properly" (Ok ()) (V.verify idx'') ; Alcotest.check (result r_fake a_err) "idx'' properly signed (queue)" (Ok r) (Conex_repository.validate_author r idx'') ; let idx' = Author.t ~resources Uint.zero id in let signed_idx' = sign_idx idx' priv in Alcotest.check (result Alcotest.unit verr) "signed_idx' digitally signed properly" (Ok ()) (V.verify signed_idx') ; Alcotest.check (result r_fake a_err) "signed_idx' signed properly" (Ok r) (Conex_repository.validate_author r signed_idx') ; match Conex_repository.add_valid_resource id r (List.hd resources) with | Ok r -> Alcotest.check (result r_fake conf) "add errors on wrong name" (Error (`NameConflict ("foo", res))) (Conex_repository.add_valid_resource id r (Author.r Uint.zero "barf" `Key d)) ; Alcotest.check (result r_fake conf) "add errors on wrong resource" (Error (`TypConflict (`Key, res))) (Conex_repository.add_valid_resource id r (Author.r Uint.zero id `Team d)) | Error _ -> Alcotest.fail "wrong" let idx_s_v_dupl () = let r = Conex_repository.repository ~quorum:0 V.digest () in let id = "foo" in let pub, priv = gen_pub () in let d = V.digest (Key.wire id pub) in let res = Author.r Uint.zero id `Key d in let resources = [ res ; Author.r (Uint.of_int_exn 1) id `Team d ] in let idx = Author.t ~resources Uint.zero id in let signed_idx = sign_idx idx priv in Alcotest.check (result r_fake a_err) "idx signed properly, but one resource ignored" (Error (`TypConflict (`Key, res))) (Conex_repository.validate_author r signed_idx) let k_ok = let module M = struct type t = [ `Both of identifier * S.t ] let pp = Conex_repository.pp_ok let equal a b = match a, b with | `Both (a, js), `Both (b, is) -> id_equal a b && S.equal js is | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let k_err = let module M = struct type t = [ Conex_repository.base_error | `InsufficientQuorum of name * typ * S.t * int ] let pp = Conex_repository.pp_error let equal a b = match a, b with | `InvalidName (w, h), `InvalidName (w', h') -> name_equal w w' && name_equal h h' | `InvalidResource (n, w, h), `InvalidResource (n', w', h') -> name_equal n n' && typ_equal w w' && typ_equal h h' | `NotApproved (n, r, js), `NotApproved (n', r', js') -> name_equal n n' && typ_equal r r' && S.equal js js' | `InsufficientQuorum (id, r, q, req), `InsufficientQuorum (id', r', q', req') -> id_equal id id' && S.equal q q' && typ_equal r r' && req = req' | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let add_rs repo id rs = List.fold_left (fun repo res -> match Conex_repository.add_valid_resource id repo res with | Ok r -> r | Error _ -> Alcotest.fail "should not fail") repo rs let key_good () = let r = Conex_repository.repository ~quorum:1 V.digest () in let jid = "aaa" in let id = "foo" in let pub, _ = gen_pub () in let resources = let d = V.digest (Key.wire id pub) in [ Author.r Uint.zero id `Key d ] in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in Alcotest.check (result k_ok k_err) "not signed" (Error (`NotApproved (id, `Key, S.empty))) (Conex_repository.validate_key r id pub) ; let r' = add_rs r jid resources in Alcotest.check (result k_ok k_err) "publickey missing self-sig" (Error (`NotApproved (id, `Key, S.empty))) (Conex_repository.validate_key r' id pub) ; let r'' = add_rs r id resources in Alcotest.check (result k_ok k_err) "publickey missing quorum" (Error (`InsufficientQuorum (id, `Key, S.empty, 1))) (Conex_repository.validate_key r'' id pub) ; let r''' = add_rs r' id resources in Alcotest.check (result k_ok k_err) "publickey is fine" (Ok (`Both (id, S.singleton jid))) (Conex_repository.validate_key r''' id pub) let key_good_quorum () = let r = Conex_repository.repository ~quorum:3 V.digest () in let id = "foo" in let pub, _priv = gen_pub () in let resources = let d = V.digest (Key.wire id pub) in [ Author.r Uint.zero id `Key d ] in let r = add_rs r id resources in Alcotest.check (result k_ok k_err) "publickey missing quorum 0" (Error (`InsufficientQuorum (id, `Key, S.empty, 3))) (Conex_repository.validate_key r id pub) ; let jidx r jid = let r = let mems = match Conex_repository.find_team r "janitors" with None -> S.empty | Some s -> s in Conex_repository.add_team r (Team.t ~members:(S.add jid mems) Uint.zero "janitors") in add_rs r jid resources in let r = jidx r "jana" in Alcotest.check (result k_ok k_err) "publickey missing quorum 1" (Error (`InsufficientQuorum (id, `Key, S.singleton "jana", 3))) (Conex_repository.validate_key r id pub) ; let r = jidx r "janb" in Alcotest.check (result k_ok k_err) "publickey missing quorum 2" (Error (`InsufficientQuorum (id, `Key, S.add "janb" (S.singleton "jana"), 3))) (Conex_repository.validate_key r id pub) ; let r = jidx r "janc" in Alcotest.check (result k_ok k_err) "publickey is fine" (Ok (`Both (id, S.add "janc" (S.add "janb" (S.singleton "jana"))))) (Conex_repository.validate_key r id pub) let no_janitor () = let r = Conex_repository.repository ~quorum:1 V.digest () in let jid = "aaa" in let id = "foo" in let pub, _priv = gen_pub () in let id' = "bar" in let resources = let d = V.digest (Key.wire id pub) and d' = V.digest (Key.wire id' pub) in [ Author.r Uint.zero id `Key d ; Author.r (Uint.of_int_exn 1) id' `Key d' ] in let r = add_rs r jid resources in let r = add_rs r id resources in Alcotest.check (result k_ok k_err) "missing quorum" (Error (`InsufficientQuorum (id, `Key, S.empty, 1))) (Conex_repository.validate_key r id pub) ; Alcotest.check (result k_ok k_err) "missing quorum for empty" (Error (`NotApproved (id', `Key, S.empty))) (Conex_repository.validate_key r id' pub) let k_wrong_resource () = let r = Conex_repository.repository ~quorum:1 V.digest () in let jid = "aaa" in let id = "foo" in let pub, _priv = gen_pub () in let resources = let d = V.digest (Key.wire id pub) in [ Author.r Uint.zero id `Package d ] in let r = add_rs r jid resources in let r = add_rs r id resources in Alcotest.check (result k_ok k_err) "wrong resource" (Error (`InvalidResource (id, `Key, `Package))) (Conex_repository.validate_key r id pub) let k_wrong_name () = let r = Conex_repository.repository ~quorum:1 V.digest () in let jid = "aaa" in let id = "foo" in let pub, _priv = gen_pub () in let resources = let d = V.digest (Key.wire id pub) in [ Author.r Uint.zero jid `Key d ] in let r = add_rs r jid resources in let r = add_rs r id resources in Alcotest.check (result k_ok k_err) "wrong name" (Error (`InvalidName (id, jid))) (Conex_repository.validate_key r id pub) let key_repo_tests = [ "signed index", `Quick, idx_sign ; "signed and verified index", `Quick, idx_sign_verify ; "verify succeeds, but ignores resource", `Quick, idx_s_v_dupl ; "key good", `Quick, key_good ; "key good with quorum = 3", `Quick, key_good_quorum ; "no janitor", `Quick, no_janitor ; "wrong resource", `Quick, k_wrong_resource ; "wrong name", `Quick, k_wrong_name ; ] let t_ok = let module M = struct type t = Conex_repository.t * [ `Quorum of S.t ] let pp ppf (_, ok) = Conex_repository.pp_ok ppf ok let equal (_, a) (_, b) = match a, b with | `Quorum js, `Quorum is -> S.equal js is | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let a_err = let module M = struct type t = [ Conex_repository.base_error | `InsufficientQuorum of name * typ * S.t * int | `IdNotPresent of name * S.t | `MemberNotPresent of identifier * S.t ] let pp = Conex_repository.pp_error let equal a b = match a, b with | `InvalidName (w, h), `InvalidName (w', h') -> name_equal w w' && name_equal h h' | `InsufficientQuorum (id, r, q, req), `InsufficientQuorum (id', r', q', req') -> id_equal id id' && S.equal q q' && typ_equal r r' && req = req' | `InvalidResource (n, w, h), `InvalidResource (n', w', h') -> name_equal n n' && typ_equal w w' && typ_equal h h' | `NotApproved (n, r, js), `NotApproved (n', r', js') -> name_equal n n' && typ_equal r r' && S.equal js js' | `IdNotPresent (n, s), `IdNotPresent (n', s') -> name_equal n n' && S.equal s s' | `MemberNotPresent (n, s), `MemberNotPresent (n', s') -> id_equal n n' && S.equal s s' | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let team () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" in let team = Team.t Uint.zero pname in Alcotest.check (result t_ok a_err) "team missing quorum" (Error (`InsufficientQuorum (pname, `Team, S.empty, 1))) (Conex_repository.validate_team r team) ; let resources = let d = V.digest (Team.wire team) in [ Author.r Uint.zero pname `Team d ] in let j_sign r jid = let r = let mems = match Conex_repository.find_team r "janitors" with None -> S.empty | Some s -> s in Conex_repository.add_team r (Team.t ~members:(S.add jid mems) Uint.zero "janitors") in add_rs r jid resources in let r = j_sign r "janitor" in Alcotest.check (result t_ok a_err) "team properly signed" (Ok (r, `Quorum (S.singleton "janitor"))) (Conex_repository.validate_team r team) ; let r = Conex_repository.repository ~quorum:2 V.digest () in let r = j_sign r "janitor" in Alcotest.check (result t_ok a_err) "team missing quorum of 2" (Error (`InsufficientQuorum (pname, `Team, S.singleton "janitor", 2))) (Conex_repository.validate_team r team) ; let r = j_sign r "janitor2" in Alcotest.check (result t_ok a_err) "team quorum of 2 good" (Ok (r, `Quorum (S.add "janitor2" (S.singleton "janitor")))) (Conex_repository.validate_team r team) let team_self_signed () = let r = Conex_repository.repository ~quorum:1 V.digest () in let id = "foo" in let pname = "foop" in let team = Team.t Uint.zero pname in let pub, _priv = gen_pub () in let resources = let d = V.digest (Team.wire team) and d' = V.digest (Key.wire id pub) in [ Author.r Uint.zero pname `Team d ; Author.r (Uint.of_int_exn 1) id `Key d' ] in let r = add_rs r id resources in Alcotest.check (result t_ok a_err) "team missing quorum" (Error (`InsufficientQuorum (pname, `Team, S.empty, 1))) (Conex_repository.validate_team r team) ; let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result t_ok a_err) "team ok" (Ok (r, `Quorum (S.singleton jid))) (Conex_repository.validate_team r team) let team_wrong_resource () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" in let team = Team.t Uint.zero pname in let resources = let d = V.digest (Team.wire team) in [ Author.r Uint.zero pname `Package d ] in let jid = "aaa" in let r = add_rs r jid resources in Alcotest.check (result t_ok a_err) "wrong resource" (Error (`InvalidResource (pname, `Team, `Package))) (Conex_repository.validate_team r team) let team_wrong_name () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" in let team = Team.t Uint.zero pname in let jid = "aaa" in let resources = let d = V.digest (Team.wire team) in [ Author.r Uint.zero "barf" `Team d ] in let r = add_rs r jid resources in Alcotest.check (result t_ok a_err) "wrong name" (Error (`InvalidName (pname, "barf"))) (Conex_repository.validate_team r team) let team_dyn () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" in let team = Team.t Uint.zero pname in let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let resources = let d = V.digest (Team.wire team) in [ Author.r Uint.zero pname `Team d ] in let r' = add_rs r jid resources in Alcotest.check (result t_ok a_err) "team properly signed" (Ok (r', `Quorum (S.singleton jid))) (Conex_repository.validate_team r' team) ; let team = Team.add team "foobar" in Alcotest.check (result t_ok a_err) "team not properly signed" (Error (`InsufficientQuorum (pname, `Team, S.empty, 1))) (Conex_repository.validate_team r' team) ; let resources = let d = V.digest (Team.wire team) in [ Author.r Uint.zero pname `Team d ] in let r' = add_rs r jid resources in Alcotest.check (result t_ok a_err) "team properly signed, but missing member" (Error (`MemberNotPresent (pname, S.singleton "foobar"))) (Conex_repository.validate_team r' team) ; let pub, priv = gen_pub () in let resources = let d' = V.digest (Key.wire "foobar" pub) in [ Author.r Uint.zero "foobar" `Key d' ] in let idx = Author.t ~resources Uint.zero "foobar" in let r' = add_rs r' jid resources in let signed = sign_idx idx priv in let r' = match Conex_repository.validate_author r' signed with | Error _ -> Alcotest.fail "should not fail" | Ok r -> r in Alcotest.check (result t_ok a_err) "team properly signed" (Ok (r', `Quorum (S.singleton jid))) (Conex_repository.validate_team r' team) ; let team = Team.remove team "foo" in Alcotest.check (result t_ok a_err) "team properly signed (nothing changed)" (Ok (r', `Quorum (S.singleton jid))) (Conex_repository.validate_team r' team) ; let team = Team.add team "foobar" in Alcotest.check (result t_ok a_err) "team properly signed (nothing changed)" (Ok (r', `Quorum (S.singleton jid))) (Conex_repository.validate_team r' team) ; let team = Team.add team "foobar42" in let resources = let d = V.digest (Team.wire team) in [ Author.r Uint.zero pname `Team d ] in let r' = add_rs r' jid resources in Alcotest.check (result t_ok a_err) "team properly signed, but missing member" (Error (`MemberNotPresent ("foop", S.singleton "foobar42"))) (Conex_repository.validate_team r' team) ; let r' = Conex_repository.add_id r' "foobar42" in Alcotest.check (result t_ok a_err) "team properly signed" (Ok (r', `Quorum (S.singleton jid))) (Conex_repository.validate_team r' team) ; let team = Team.remove team "foobar" in Alcotest.check (result t_ok a_err) "team not properly signed (rm'ed, counter incr)" (Error (`InsufficientQuorum (pname, `Team, S.empty, 1))) (Conex_repository.validate_team r' team) let team_repo_tests = [ "basic team", `Quick, team ; "also self signed", `Quick, team_self_signed ; "wrong resource", `Quick, team_wrong_resource ; "wrong name", `Quick, team_wrong_name ; "dynamic team", `Quick, team_dyn ] let a_ok = let module M = struct type t = [ `Quorum of S.t ] let pp = Conex_repository.pp_ok let equal a b = match a, b with | `Quorum js, `Quorum is -> S.equal js is | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let auth () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" in let auth = Authorisation.t Uint.zero pname in Alcotest.check (result a_ok a_err) "auth missing quorum" (Error (`InsufficientQuorum (pname, `Authorisation, S.empty, 1))) (Conex_repository.validate_authorisation r auth) ; let resources = let d = V.digest (Authorisation.wire auth) in [ Author.r Uint.zero pname `Authorisation d ] in let j_sign r jid = let r = let mems = match Conex_repository.find_team r "janitors" with None -> S.empty | Some s -> s in Conex_repository.add_team r (Team.t ~members:(S.add jid mems) Uint.zero "janitors") in add_rs r jid resources in let r = j_sign r "janitor" in Alcotest.check (result a_ok a_err) "auth properly signed" (Ok (`Quorum (S.singleton "janitor"))) (Conex_repository.validate_authorisation r auth) ; let r = Conex_repository.repository ~quorum:2 V.digest () in let r = j_sign r "janitor" in Alcotest.check (result a_ok a_err) "auth missing quorum of 2" (Error (`InsufficientQuorum (pname, `Authorisation, S.singleton "janitor", 2))) (Conex_repository.validate_authorisation r auth) ; let r = j_sign r "janitor2" in Alcotest.check (result a_ok a_err) "auth quorum of 2 good" (Ok (`Quorum (S.add "janitor2" (S.singleton "janitor")))) (Conex_repository.validate_authorisation r auth) let auth_self_signed () = let r = Conex_repository.repository ~quorum:1 V.digest () in let id = "foo" in let pname = "foop" in let auth = Authorisation.t Uint.zero pname in let pub, _priv = gen_pub () in let resources = let d = V.digest (Authorisation.wire auth) and d' = V.digest (Key.wire id pub) in [ Author.r Uint.zero pname `Authorisation d ; Author.r (Uint.of_int_exn 1) id `Key d' ] in let r = add_rs r id resources in Alcotest.check (result a_ok a_err) "auth missing quorum" (Error (`InsufficientQuorum (pname, `Authorisation, S.empty, 1))) (Conex_repository.validate_authorisation r auth) ; let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result a_ok a_err) "auth ok" (Ok (`Quorum (S.singleton jid))) (Conex_repository.validate_authorisation r auth) let a_wrong_resource () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" in let auth = Authorisation.t Uint.zero pname in let resources = let d = V.digest (Authorisation.wire auth) in [ Author.r Uint.zero pname `Package d ] in let jid = "aaa" in let r = add_rs r jid resources in Alcotest.check (result a_ok a_err) "wrong resource" (Error (`InvalidResource (pname, `Authorisation, `Package))) (Conex_repository.validate_authorisation r auth) let a_wrong_name () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" in let auth = Authorisation.t Uint.zero pname in let jid = "aaa" in let resources = let d = V.digest (Authorisation.wire auth) in [ Author.r Uint.zero "barf" `Authorisation d ] in let r = add_rs r jid resources in Alcotest.check (result a_ok a_err) "wrong name" (Error (`InvalidName (pname, "barf"))) (Conex_repository.validate_authorisation r auth) let auth_dyn () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" in let auth = Authorisation.t Uint.zero pname in let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let resources = let d = V.digest (Authorisation.wire auth) in [ Author.r Uint.zero pname `Authorisation d ] in let r' = add_rs r jid resources in Alcotest.check (result a_ok a_err) "authorisation properly signed" (Ok (`Quorum (S.singleton jid))) (Conex_repository.validate_authorisation r' auth) ; let auth = Authorisation.add auth "foobar" in Alcotest.check (result a_ok a_err) "authorisation not properly signed" (Error (`InsufficientQuorum (pname, `Authorisation, S.empty, 1))) (Conex_repository.validate_authorisation r' auth) ; let resources = let d = V.digest (Authorisation.wire auth) in [ Author.r Uint.zero pname `Authorisation d ] in let r' = add_rs r jid resources in Alcotest.check (result a_ok a_err) "authorisation properly signed, but missing id" (Error (`IdNotPresent (pname, S.singleton "foobar"))) (Conex_repository.validate_authorisation r' auth) ; let pub, priv = gen_pub () in let resources = let d' = V.digest (Key.wire "foobar" pub) in [ Author.r Uint.zero "foobar" `Key d' ] in let idx = Author.t ~resources Uint.zero "foobar" in let r' = add_rs r' jid resources in let signed = sign_idx idx priv in let r' = match Conex_repository.validate_author r' signed with | Error _ -> Alcotest.fail "should not fail" | Ok r -> r in let auth = Authorisation.remove auth "foo" in Alcotest.check (result a_ok a_err) "authorisation properly signed (nothing changed)" (Ok (`Quorum (S.singleton jid))) (Conex_repository.validate_authorisation r' auth) ; let auth = Authorisation.add auth "foobar" in Alcotest.check (result a_ok a_err) "authorisation properly signed (nothing changed)" (Ok (`Quorum (S.singleton jid))) (Conex_repository.validate_authorisation r' auth) ; let auth = Authorisation.add auth "foobar42" in let resources = let d = V.digest (Authorisation.wire auth) in [ Author.r Uint.zero pname `Authorisation d ] in let r' = add_rs r' jid resources in Alcotest.check (result a_ok a_err) "authorisation properly signed (nothing changed)" (Error (`IdNotPresent ("foop", S.singleton "foobar42"))) (Conex_repository.validate_authorisation r' auth) ; let r' = Conex_repository.add_id r' "foobar" in let auth = Authorisation.remove auth "foobar" in Alcotest.check (result a_ok a_err) "authorisation not properly signed (rm'ed, counter incr)" (Error (`InsufficientQuorum (pname, `Authorisation, S.empty, 1))) (Conex_repository.validate_authorisation r' auth) let auth_repo_tests = [ "basic auth", `Quick, auth ; "also self signed", `Quick, auth_self_signed ; "wrong resource", `Quick, a_wrong_resource ; "wrong name", `Quick, a_wrong_name ; "dynamic authorisation", `Quick, auth_dyn ; ] let r_ok = let module M = struct type t = [ `Approved of identifier | `Quorum of S.t | `Both of identifier * S.t ] let pp = Conex_repository.pp_ok let equal a b = match a, b with | `Approved a, `Approved b -> id_equal a b | `Quorum js, `Quorum is -> S.equal js is | `Both (a, js), `Both (b, is) -> id_equal a b && S.equal js is | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let r_err = let module M = struct type t = [ Conex_repository.base_error | `AuthRelMismatch of name * name | `InvalidReleases of name * S.t * S.t | `NoSharedPrefix of name * S.t ] let pp = Conex_repository.pp_error let equal a b = match a, b with | `InvalidName (w, h), `InvalidName (w', h') -> name_equal w w' && name_equal h h' | `InvalidResource (n, w, h), `InvalidResource (n', w', h') -> name_equal n n' && typ_equal w w' && typ_equal h h' | `NotApproved (n, r, js), `NotApproved (n', r', js') -> name_equal n n' && typ_equal r r' && S.equal js js' | `AuthRelMismatch (a, r), `AuthRelMismatch (a', r') -> name_equal a a' && name_equal r r' | `InvalidReleases (n, h, w), `InvalidReleases (n', h', w') -> name_equal n n' && S.equal h h' && S.equal w w' | `NoSharedPrefix (n, s), `NoSharedPrefix (n', s') -> name_equal n n' && S.equal s s' | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let rel_1 () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t Uint.zero pname in Alcotest.check (result r_ok r_err) "not signed" (Error (`NotApproved (pname, `Package, S.empty))) (Conex_repository.validate_package r auth rel) ; let resources = let d = V.digest (Package.wire rel) in [ Author.r Uint.zero pname `Package d ] in let r = add_rs r id resources in Alcotest.check (result r_ok r_err) "properly signed" (Ok (`Approved id)) (Conex_repository.validate_package r auth rel) let rel_quorum () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t Uint.zero pname in let jid = "janitor" in let resources = let d = V.digest (Package.wire rel) in [ Author.r Uint.zero pname `Package d ] in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result r_ok r_err) "properly signed (quorum)" (Ok (`Quorum (S.singleton jid))) (Conex_repository.validate_package r auth rel) ; let r = add_rs r id resources in Alcotest.check (result r_ok r_err) "properly signed (both)" (Ok (`Both (id, S.singleton jid))) (Conex_repository.validate_package r auth rel) let rel_not_authorised () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let auth = Authorisation.t ~authorised:(S.singleton "foo") Uint.zero pname in let rel = Package.t Uint.zero pname in let resources = let d = V.digest (Package.wire rel) in [ Author.r Uint.zero pname `Package d ] in let r = add_rs r id resources in Alcotest.check (result r_ok r_err) "not authorised" (Error (`NotApproved (pname, `Package, S.empty))) (Conex_repository.validate_package r auth rel) let rel_missing_releases () = let io = Mem.mem_provider () in let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let v = pname ^ ".0" in let rel = Package.t ~releases:(S.singleton v) Uint.zero pname in let resources = let d = V.digest (Package.wire rel) in [ Author.r Uint.zero pname `Package d ] in let r = add_rs r id resources in Alcotest.check (result r_ok r_err) "missing on disk" (Error (`InvalidReleases (pname, S.empty, S.singleton v))) (Conex_repository.validate_package r ~on_disk:(Package.t Uint.zero pname) auth rel) ; Alcotest.check (result Alcotest.unit str_err) "writing nothing to 'packages/$pname/$v/checksum'" (Ok ()) (io.write ["packages"; pname; v; "checksum"] "") ; match Conex_io.compute_package io Uint.zero pname with | Error _ -> Alcotest.fail "should be able to compute releases0" | Ok on_disk -> Alcotest.check (result r_ok r_err) "all good" (Ok (`Approved id)) (Conex_repository.validate_package r ~on_disk auth rel) ; let v2 = pname ^ ".1" in Alcotest.check (result Alcotest.unit str_err) "writing nothing to 'packages/$pname/$v2/checksum'" (Ok ()) (io.write ["packages"; pname; v2; "checksum"] "") ; match Conex_io.compute_package io Uint.zero pname with | Error _ -> Alcotest.fail "shold be able to compute releases1" | Ok on_disk -> Alcotest.check (result r_ok r_err) "missing in releases" (Error (`InvalidReleases (pname, S.singleton v2, S.empty))) (Conex_repository.validate_package r ~on_disk auth rel) ; let v3 = pname ^ ".2" in Alcotest.check (result Alcotest.unit str_err) "writing nothing to 'packages/$oname/$v3/checksum'" (Ok ()) (io.write ["packages"; pname; v3; "checksum"] "") ; match Conex_io.compute_package io Uint.zero pname with | Error _ -> Alcotest.fail "shoul be able to compute releases2" | Ok on_disk -> Alcotest.check (result r_ok r_err) "missing in releases" (Error (`InvalidReleases (pname, S.add v3 (S.singleton v2), S.empty))) (Conex_repository.validate_package r ~on_disk auth rel) let bad_releases () = let io = Mem.mem_provider () in let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let v = pname ^ pname ^ ".0" in let rel = Package.t ~releases:(S.singleton v) Uint.zero pname in let resources = let d = V.digest (Package.wire rel) in [ Author.r Uint.zero pname `Package d ] in let r = add_rs r id resources in Alcotest.check (result Alcotest.unit str_err) "writing nothing to 'packages/$pname/$v/checksum'" (Ok ()) (io.write ["packages"; pname; v; "checksum"] "") ; match Conex_io.compute_package io Uint.zero pname with | Error _ -> Alcotest.fail "should be able to compute releases0" | Ok on_disk -> Alcotest.check (result r_ok r_err) "releases contains bad prefix" (Error (`NoSharedPrefix (pname, S.singleton v))) (Conex_repository.validate_package r ~on_disk auth rel) let rel_name_mismatch () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero "foo" in let rel = Package.t Uint.zero pname in let resources = let d = V.digest (Package.wire rel) in [ Author.r Uint.zero pname `Package d ] in let r = add_rs r id resources in Alcotest.check (result r_ok r_err) "releases and authorisation names do not match" (Error (`AuthRelMismatch ("foo", pname))) (Conex_repository.validate_package r auth rel) let rel_wrong_name () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t Uint.zero pname in let resources = let d = V.digest (Package.wire rel) in [ Author.r Uint.zero "foo" `Package d ] in let r = add_rs r id resources in Alcotest.check (result r_ok r_err) "wrong name in releases" (Error (`InvalidName (pname, "foo"))) (Conex_repository.validate_package r auth rel) let rel_wrong_resource () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t Uint.zero pname in let resources = let d = V.digest (Package.wire rel) in [ Author.r Uint.zero pname `Authorisation d ] in let r = add_rs r id resources in Alcotest.check (result r_ok r_err) "wrong resource for releases" (Error (`InvalidResource (pname, `Package, `Authorisation))) (Conex_repository.validate_package r auth rel) let rel_repo_tests = [ "basic release", `Quick, rel_1 ; "quorum on releases", `Quick, rel_quorum ; "not authorised", `Quick, rel_not_authorised ; "missing some releases", `Quick, rel_missing_releases ; "bad releases on disk", `Quick, bad_releases ; "name mismatch (releases and authorisation)", `Quick, rel_name_mismatch ; "wrong name", `Quick, rel_wrong_name ; "wrong resource", `Quick, rel_wrong_resource ; ] let c_err = let module M = struct type t = [ Conex_repository.base_error | `AuthRelMismatch of name * name | `NotInReleases of name * S.t | `ChecksumsDiff of name * name list * name list * (Release.c * Release.c) list ] let pp = Conex_repository.pp_error let equal a b = match a, b with | `InvalidName (w, h), `InvalidName (w', h') -> name_equal w w' && name_equal h h' | `InvalidResource (n, w, h), `InvalidResource (n', w', h') -> name_equal n n' && typ_equal w w' && typ_equal h h' | `NotApproved (n, r, js), `NotApproved (n', r', js') -> name_equal n n' && typ_equal r r' && S.equal js js' | `AuthRelMismatch (a, r), `AuthRelMismatch (a', r') -> name_equal a a' && name_equal r r' | `NotInReleases (c, r), `NotInReleases (c', r') -> name_equal c c' && S.equal r r' | `ChecksumsDiff (n, a, b, cs), `ChecksumsDiff (n', a', b', cs') -> name_equal n n' && S.equal (S.of_list a) (S.of_list a') && S.equal (S.of_list b) (S.of_list b') && List.length cs = List.length cs' && List.for_all (fun (c, d) -> List.exists (fun (c', d') -> Release.checksum_equal c c' && Release.checksum_equal d d') cs) cs' | _ -> false end in (module M : Alcotest.TESTABLE with type t = M.t) let cs_base () = let io = Mem.mem_provider () in let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let v = pname ^ ".0" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t ~releases:(S.singleton v) Uint.zero pname in let cs = Release.t Uint.zero v [] in Alcotest.check (result r_ok c_err) "release not signed" (Error (`NotApproved (v, `Release, S.empty))) (Conex_repository.validate_release r auth rel cs) ; let resources = let d = V.digest (Package.wire rel) and d' = V.digest (Release.wire cs) in [ Author.r Uint.zero pname `Package d ; Author.r (Uint.of_int_exn 1) v `Release d' ] in let r = add_rs r id resources in Alcotest.check (result Alcotest.unit str_err) "writing nothing to 'packages/$pname/$v/release'" (Ok ()) (io.write ["packages"; pname; v; "release"] "") ; match Conex_io.compute_release V.raw_digest io Uint.zero v with | Error _ -> Alcotest.fail "should be able to compute release" | Ok on_disk -> Alcotest.check (result r_ok c_err) "good release" (Ok (`Approved id)) (Conex_repository.validate_release r ~on_disk auth rel cs) ; let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result r_ok c_err) "good release (both)" (Ok (`Both (id, S.singleton jid))) (Conex_repository.validate_release r auth rel cs) let cs_quorum () = let io = Mem.mem_provider () in let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let v = pname ^ ".0" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t ~releases:(S.singleton v) Uint.zero pname in let cs = Release.t Uint.zero v [] in let resources = let d = V.digest (Package.wire rel) and d' = V.digest (Release.wire cs) in [ Author.r Uint.zero pname `Package d ; Author.r (Uint.of_int_exn 1) v `Release d' ] in let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result Alcotest.unit str_err) "writing nothing to 'packages/$pname/$v/release'" (Ok ()) (io.write ["packages"; pname; v; "release"] "") ; match Conex_io.compute_release V.raw_digest io Uint.zero v with | Error _ -> Alcotest.fail "should be able to compute release" | Ok on_disk -> Alcotest.check (result r_ok c_err) "good release (quorum)" (Ok (`Quorum (S.singleton jid))) (Conex_repository.validate_release r ~on_disk auth rel cs) let cs_bad () = let io = Mem.mem_provider () in let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foo" in let v = pname ^ ".0" in Alcotest.check (result Alcotest.unit str_err) "writing 'bar' to 'packages/$pname/$v/foo'" (Ok ()) (io.write ["packages"; pname; v; "foo"] "bar") ; Alcotest.check (result Alcotest.unit str_err) "writing 'foo' to 'packages/$pname/$v/bar'" (Ok ()) (io.write ["packages"; pname; v; "bar"] "foo") ; Alcotest.check (result Alcotest.unit str_err) "writing 'p1' to 'packages/$pname/$v/files/patch1'" (Ok ()) (io.write ["packages"; pname; v; "files"; "patch1"] "p1") ; Alcotest.check (result Alcotest.unit str_err) "writing 'p2' to 'packages/$pname/$v/files/patch2'" (Ok ()) (io.write ["packages"; pname; v; "files"; "patch2"] "p2") ; (* manually crafted using echo -n XXX | openssl dgst -sha256 -binary | b64encode -m - *) let csums = [ { Release.filename = "bar" ; digest = (`SHA256, "LCa0a2j/xo/5m0U8HTBBNBNCLXBkg7+g+YpeiGJm564=") } ; { Release.filename = "foo" ; digest = (`SHA256, "/N4rLtula/QIYB+3If6bXDONEO5CnqBPrlURto+/j7k=") } ; { Release.filename = "files/patch1" ; digest = (`SHA256, "9kVR/NbweCPLh5cc+5FEZCXaGChrOrHvk14MvXpp9oo=") } ; { Release.filename = "files/patch2" ; digest = (`SHA256, "OUbKZP942TymEJCkN8u2s9LKDUiPX5zPMFlgg2iydpM=") } ] in let css = Release.t Uint.zero v csums in Alcotest.check (result rel ch_err) "release computation works" (Ok css) (Conex_io.compute_release V.raw_digest io Uint.zero "foo.0") ; let css' = Release.t Uint.zero v (List.tl csums) in let css'' = Release.t Uint.zero v ({ Release.filename = "foobar" ; digest = (`SHA256, "") } :: csums) in let other = { Release.filename = "bar" ; digest = (`SHA256, "OUbKZP942TymEJCkN8u2s9LKDUiPX5zPMFlgg2iydpM=") } in let css''' = Release.t Uint.zero v (other :: List.tl csums) in let id = "id" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t ~releases:(S.singleton v) Uint.zero pname in let resources = let d = V.digest (Package.wire rel) and d1 = V.digest (Release.wire css) and d2 = V.digest (Release.wire css') and d3 = V.digest (Release.wire css'') and d4 = V.digest (Release.wire css''') in [ Author.r Uint.zero pname `Package d ; Author.r (Uint.of_int_exn 1) v `Release d1 ; Author.r (Uint.of_int_exn 2) v `Release d2 ; Author.r (Uint.of_int_exn 3) v `Release d3 ; Author.r (Uint.of_int_exn 4) v `Release d4 ] in let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in match Conex_io.compute_release V.raw_digest io Uint.zero v with | Error _ -> Alcotest.fail "should be able to compute release" | Ok on_disk -> Alcotest.check (result r_ok c_err) "good release (quorum)" (Ok (`Quorum (S.singleton jid))) (Conex_repository.validate_release r ~on_disk auth rel css) ; Alcotest.check (result r_ok c_err) "bad release (missing in cs file)" (Error (`ChecksumsDiff (v, [], ["bar"], []))) (Conex_repository.validate_release r ~on_disk auth rel css') ; Alcotest.check (result r_ok c_err) "bad release (missing on disk)" (Error (`ChecksumsDiff (v, ["foobar"], [], []))) (Conex_repository.validate_release r ~on_disk auth rel css'') ; Alcotest.check (result r_ok c_err) "bad release (differ)" (Error (`ChecksumsDiff (v, [], [], [(List.hd csums, other)]))) (Conex_repository.validate_release r ~on_disk auth rel css''') let cs_bad_name () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let reln = "foo" in let v = reln ^ ".0" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t ~releases:(S.singleton v) Uint.zero reln in let cs = Release.t Uint.zero v [] in let resources = let d = V.digest (Package.wire rel) and d' = V.digest (Release.wire cs) in [ Author.r Uint.zero reln `Package d ; Author.r (Uint.of_int_exn 1) v `Release d' ] in let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result r_ok c_err) "bad name (auth != rel)" (Error (`AuthRelMismatch (pname, reln))) (Conex_repository.validate_release r auth rel cs) let cs_bad_name2 () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let reln = pname ^ ".0" in let v = reln ^ ".0" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t ~releases:(S.singleton reln) Uint.zero pname in let cs = Release.t Uint.zero v [] in let resources = let d = V.digest (Package.wire rel) and d' = V.digest (Release.wire cs) in [ Author.r Uint.zero pname `Package d ; Author.r (Uint.of_int_exn 1) v `Release d' ] in let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result r_ok c_err) "bad name (not member of releases)" (Error (`NotInReleases (v, rel.Package.releases))) (Conex_repository.validate_release r auth rel cs) let cs_wrong_name () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let v = pname ^ ".0" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t ~releases:(S.singleton v) Uint.zero pname in let cs = Release.t Uint.zero v [] in let resources = let d = V.digest (Package.wire rel) and d' = V.digest (Release.wire cs) in [ Author.r Uint.zero pname `Package d ; Author.r (Uint.of_int_exn 1) pname `Release d' ] in let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result r_ok c_err) "wrong name" (Error (`InvalidName (v, pname))) (Conex_repository.validate_release r auth rel cs) let cs_wrong_resource () = let r = Conex_repository.repository ~quorum:1 V.digest () in let pname = "foop" and id = "id" in let v = pname ^ ".0" in let auth = Authorisation.t ~authorised:(S.singleton id) Uint.zero pname in let rel = Package.t ~releases:(S.singleton v) Uint.zero pname in let cs = Release.t Uint.zero v [] in let resources = let d = V.digest (Package.wire rel) and d' = V.digest (Release.wire cs) in [ Author.r Uint.zero pname `Package d ; Author.r (Uint.of_int_exn 1) v `Package d' ] in let jid = "janitor" in let r = Conex_repository.add_team r (Team.t ~members:(S.singleton jid) Uint.zero "janitors") in let r = add_rs r jid resources in Alcotest.check (result r_ok c_err) "wrong resource" (Error (`InvalidResource (v, `Release, `Package))) (Conex_repository.validate_release r auth rel cs) let cs_repo_tests = [ "basic checksum", `Quick, cs_base ; "quorum checksum", `Quick, cs_quorum ; "bad checksum", `Quick, cs_bad ; "bad releases name", `Quick, cs_bad_name ; "checksum name not in releases", `Quick, cs_bad_name2 ; "wrong checksum name", `Quick, cs_wrong_name ; "wrong checksum resource", `Quick, cs_wrong_resource ; ] let tests prefix = [ prefix ^ "RepositoryBasics", basic_repo_tests ; prefix ^ "RepositoryKeys", key_repo_tests ; prefix ^ "RepositoryTeam", team_repo_tests ; prefix ^ "RepositoryAuthorisation", auth_repo_tests ; prefix ^ "RepositoryPackage", rel_repo_tests ; prefix ^ "RepositoryRelease", cs_repo_tests ; ] end module O = RTest (Conex_openssl.O_V) module N = RTest (Conex_nocrypto.NC_V) let tests = ("MemoryProvider", mem_provider_tests) :: N.tests "Nocrypto"