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
|
open QCheck2
let rand_init i = Random.State.make [|i|]
let rec repeated_success t =
Tree.root t :: match Tree.children t () with
| Seq.Nil -> []
| Seq.Cons (t,_) -> repeated_success t
let repeated_failure t =
Tree.root t :: match Tree.children t () with
| Seq.Nil -> []
| Seq.Cons (t,ts) -> Tree.root t :: (Seq.map Tree.root ts |> List.of_seq)
let ocaml_major_version =
try
let major_version_str = List.hd (String.split_on_char '.' Sys.ocaml_version) in
int_of_string major_version_str
with _ -> failwith ("Unknown OCaml version format: " ^ Sys.ocaml_version)
module Shrink = struct
let test_int_towards () =
Alcotest.(check' (list int))
~msg:"int_towards 0 100"
~actual:(Shrink.int_towards 0 100 |> List.of_seq)
~expected:[0; 50; 75; 88; 94; 97; 99];
Alcotest.(check' (list int))
~msg:"int_towards 500 1000"
~actual:(Shrink.int_towards 500 1000 |> List.of_seq)
~expected:[500; 750; 875; 938; 969; 985; 993; 997; 999];
Alcotest.(check' (list int))
~msg:"int_towards (-50) (-26)"
~actual:(Shrink.int_towards (-50) (-26) |> List.of_seq)
~expected:[-50; -38; -32; -29; -28; -27]
let test_int32_towards () =
Alcotest.(check' (list int32))
~msg:"int32_towards 0l 100l"
~actual:(Shrink.int32_towards 0l 100l |> List.of_seq)
~expected:[0l; 50l; 75l; 88l; 94l; 97l; 99l];
Alcotest.(check' (list int32))
~msg:"int32_towards 500l 1000l"
~actual:(Shrink.int32_towards 500l 1000l |> List.of_seq)
~expected:[500l; 750l; 875l; 938l; 969l; 985l; 993l; 997l; 999l];
Alcotest.(check' (list int32))
~msg:"int32_towards (-50l) (-26l)"
~actual:(Shrink.int32_towards (-50l) (-26l) |> List.of_seq)
~expected:[-50l; -38l; -32l; -29l; -28l; -27l]
let test_int64_towards () =
Alcotest.(check' (list int64))
~msg:"int64_towards 0L 100L"
~actual:(Shrink.int64_towards 0L 100L |> List.of_seq)
~expected:[0L; 50L; 75L; 88L; 94L; 97L; 99L];
Alcotest.(check' (list int64))
~msg:"int64_towards 500L 1000L"
~actual:(Shrink.int64_towards 500L 1000L |> List.of_seq)
~expected:[500L; 750L; 875L; 938L; 969L; 985L; 993L; 997L; 999L];
Alcotest.(check' (list int64))
~msg:"int64_towards (-50L) (-26L)"
~actual:(Shrink.int64_towards (-50L) (-26L) |> List.of_seq)
~expected:[-50L; -38L; -32L; -29L; -28L; -27L]
let test_float_towards () =
Alcotest.(check' (list (float 0.0001)))
~msg:"float_towards 0. 100."
~actual:(Shrink.float_towards 0. 100. |> List.of_seq)
~expected:[0.; 50.; 75.; 87.5; 93.75; 96.875; 98.4375; 99.2188; 99.6094; 99.8047; 99.9023; 99.9512; 99.9756; 99.9878; 99.9939];
Alcotest.(check' (list (float 0.001)))
~msg:"float_towards 500. 1000."
~actual:(Shrink.float_towards 500. 1000. |> List.of_seq)
~expected:[500.; 750.; 875.; 937.5; 968.75; 984.375; 992.188; 996.094; 998.047; 999.023; 999.512; 999.756; 999.878; 999.939; 999.969];
Alcotest.(check' (list (float 0.0001)))
~msg:"float_towards (-50.) (-26.)"
~actual:(Shrink.float_towards (-50.) (-26.) |> List.of_seq)
~expected:[-50.; -38.; -32.; -29.; -27.5; -26.75; -26.375; -26.1875; -26.0938; -26.0469; -26.0234; -26.0117; -26.0059; -26.0029; -26.0015]
let test_char () =
Alcotest.(check' (list char))
~msg:"'k' on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 1234) char) |> repeated_failure)
~expected:(if ocaml_major_version < 5 then ['k'; 'a'; 'f'; 'h'; 'i'; 'j'] else ['>'; 'a'; 'P'; 'G'; 'C'; 'A'; '@'; '?']);
Alcotest.(check' (list char))
~msg:"'1' on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) char) |> repeated_failure)
~expected:(if ocaml_major_version < 5 then ['1'; 'a'; 'I'; '='; '7'; '4'; '2'] else ['O'; 'a'; 'X'; 'S'; 'Q'; 'P']);
Alcotest.(check' (list char))
~msg:"'k' on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 1234) char) |> repeated_success)
~expected:(if ocaml_major_version < 5 then ['k'; 'a';] else ['>'; 'a']);
Alcotest.(check' (list char))
~msg:"'1' on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) char) |> repeated_success)
~expected:(if ocaml_major_version < 5 then ['1'; 'a';] else ['O'; 'a'])
let test_char_numeral () =
Alcotest.(check' (list char))
~msg:"'3' on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 1234) char_numeral) |> repeated_failure)
~expected:(if ocaml_major_version < 5 then ['3'; '0'; '1'; '2'] else ['0']);
Alcotest.(check' (list char))
~msg:"'0' on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) char_numeral) |> repeated_failure)
~expected:(if ocaml_major_version < 5 then ['0'] else ['9'; '0'; '4'; '6'; '7'; '8']);
Alcotest.(check' (list char))
~msg:"'3' on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 1234) char_numeral) |> repeated_success)
~expected:(if ocaml_major_version < 5 then ['3'; '0'] else ['0']);
Alcotest.(check' (list char))
~msg:"'0' on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) char_numeral) |> repeated_success)
~expected:(if ocaml_major_version < 5 then ['0'] else ['9'; '0'])
let test_char_printable () =
Alcotest.(check' (list char))
~msg:"'l' on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 1234) char_printable) |> repeated_failure)
~expected:(if ocaml_major_version < 5 then ['l'; 'a'; 'f'; 'i'; 'j'; 'k'] else ['D'; 'a'; '%'; '5'; '='; 'A'; 'C']);
Alcotest.(check' (list char))
~msg:"'8' on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) char_printable) |> repeated_failure)
~expected:(if ocaml_major_version < 5 then ['8'; 'a'; 'z'; ','; '2'; '5'; '7'] else ['#'; 'a'; 'o'; 'v'; 'z'; '!'; '"']);
Alcotest.(check' (list char))
~msg:"'l' on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 1234) char_printable) |> repeated_success)
~expected:(if ocaml_major_version < 5 then ['l'; 'a'] else ['D'; 'a']);
Alcotest.(check' (list char))
~msg:"'8' on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) char_printable) |> repeated_success)
~expected:(if ocaml_major_version < 5 then ['8'; 'a'] else ['#'; 'a'])
let test_pair_nat_small () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list (pair int int)))
~msg:"9,1 on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (pair nat_small nat_small)) |> repeated_failure)
~expected:[(9, 1); (0, 1); (4, 1); (6, 1); (7, 1); (8, 1); (9, 0)];
Alcotest.(check' (list (pair int int)))
~msg:"9,1 on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (pair nat_small nat_small)) |> repeated_success)
~expected:[(9, 1); (0, 1); (0, 0)])
else
(Alcotest.(check' (list (pair int int)))
~msg:"2,6 on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (pair nat_small nat_small)) |> repeated_failure)
~expected:[(2, 6); (0, 6); (1, 6); (2, 0); (2, 3); (2, 5)];
Alcotest.(check' (list (pair int int)))
~msg:"2,6 on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (pair nat_small nat_small)) |> repeated_success)
~expected:[(2, 6); (0, 6); (0, 0)])
let test_bind_nat_small () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list (pair int int)))
~msg:"9,1 on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (nat_small >>= fun i -> map (fun j -> (i,j)) nat_small)) |> repeated_failure)
~expected:[(9, 1); (0, 1); (4, 1); (6, 1); (7, 1); (8, 1); (9, 0)];
Alcotest.(check' (list (pair int int)))
~msg:"9,1 on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (nat_small >>= fun i -> map (fun j -> (i,j)) nat_small)) |> repeated_success)
~expected:[(9, 1); (0, 1); (0, 0)])
else
(Alcotest.(check' (list (pair int int)))
~msg:"2,6 on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (nat_small >>= fun i -> map (fun j -> (i,j)) nat_small)) |> repeated_failure)
~expected:[(2, 6); (0, 6); (1, 6); (2, 0); (2, 3); (2, 5)];
Alcotest.(check' (list (pair int int)))
~msg:"2,6 on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (nat_small >>= fun i -> map (fun j -> (i,j)) nat_small)) |> repeated_success)
~expected:[(2, 6); (0, 6); (0, 0)])
let test_list_size_int () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list (list int)))
~msg:"[8; 0; 9; 0; 8; 8; 2] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (list_size (int_bound 8) (int_bound 10))) |> repeated_failure)
~expected:[ [8; 0; 9; 0; 8; 8; 2]; []; [8; 0; 9]; [8; 0; 9; 0; 8]; [8; 0; 9; 0; 8; 8];
[0; 0; 9; 0; 8; 8; 2]; [4; 0; 9; 0; 8; 8; 2]; [6; 0; 9; 0; 8; 8; 2]; [7; 0; 9; 0; 8; 8; 2];
[8; 0; 0; 0; 8; 8; 2]; [8; 0; 4; 0; 8; 8; 2]; [8; 0; 6; 0; 8; 8; 2]; [8; 0; 7; 0; 8; 8; 2]; [8; 0; 8; 0; 8; 8; 2];
[8; 0; 9; 0; 0; 8; 2]; [8; 0; 9; 0; 4; 8; 2]; [8; 0; 9; 0; 6; 8; 2]; [8; 0; 9; 0; 7; 8; 2];
[8; 0; 9; 0; 8; 0; 2]; [8; 0; 9; 0; 8; 4; 2]; [8; 0; 9; 0; 8; 6; 2]; [8; 0; 9; 0; 8; 7; 2];
[8; 0; 9; 0; 8; 8; 0]; [8; 0; 9; 0; 8; 8; 1]; ];
Alcotest.(check' (list (list int)))
~msg:"[8; 0; 9; 0; 8; 8; 2] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (list_size (int_bound 8) (int_bound 10))) |> repeated_success)
~expected:[ [8; 0; 9; 0; 8; 8; 2]; []; ])
else
(Alcotest.(check' (list (list int)))
~msg:"[9; 2; 7; 3; 8; 6] repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (list_size (int_bound 8) (int_bound 10))) |> repeated_failure)
~expected:[ [9; 2; 7; 3; 8; 6]; []; [9; 2; 7]; [9; 2; 7; 3; 8];
[0; 2; 7; 3; 8; 6]; [4; 2; 7; 3; 8; 6]; [6; 2; 7; 3; 8; 6]; [7; 2; 7; 3; 8; 6]; [8; 2; 7; 3; 8; 6];
[9; 0; 7; 3; 8; 6]; [9; 1; 7; 3; 8; 6];
[9; 2; 0; 3; 8; 6]; [9; 2; 3; 3; 8; 6]; [9; 2; 5; 3; 8; 6]; [9; 2; 6; 3; 8; 6];
[9; 2; 7; 0; 8; 6]; [9; 2; 7; 1; 8; 6]; [9; 2; 7; 2; 8; 6];
[9; 2; 7; 3; 0; 6]; [9; 2; 7; 3; 4; 6]; [9; 2; 7; 3; 6; 6]; [9; 2; 7; 3; 7; 6];
[9; 2; 7; 3; 8; 0]; [9; 2; 7; 3; 8; 3]; [9; 2; 7; 3; 8; 5]; ];
Alcotest.(check' (list (list int)))
~msg:"[9; 2; 7; 3; 8; 6] repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (list_size (int_bound 8) (int_bound 10))) |> repeated_success)
~expected:[[9; 2; 7; 3; 8; 6]; []; ])
let test_list_int () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list (list int)))
~msg:"[0; 5; 3; 7] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) (list (int_bound 10))) |> repeated_failure)
~expected:[ [0; 5; 3; 7]; [0; 5]; [3; 7]; [5; 3; 7]; [0; 5; 7];
[0; 0; 3; 7]; [0; 2; 3; 7]; [0; 3; 3; 7]; [0; 4; 3; 7];
[0; 5; 0; 7]; [0; 5; 1; 7]; [0; 5; 2; 7];
[0; 5; 3; 0]; [0; 5; 3; 3]; [0; 5; 3; 5]; [0; 5; 3; 6]; ];
Alcotest.(check' (list (list int)))
~msg:"[0; 5; 3; 7] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) (list (int_bound 10))) |> repeated_success)
~expected:[ [0; 5; 3; 7]; [0; 5]; [5]; []; ])
else
(Alcotest.(check' (list (list int)))
~msg:"[1; 10; 10; 7; 3] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (list (int_bound 10))) |> repeated_failure)
~expected:[ [1; 10; 10; 7; 3]; [1; 10; 10]; [7; 3]; [10; 10; 7; 3]; [1; 10; 10; 3];
[0; 10; 10; 7; 3];
[1; 0; 10; 7; 3]; [1; 5; 10; 7; 3]; [1; 8; 10; 7; 3]; [1; 9; 10; 7; 3];
[1; 10; 0; 7; 3]; [1; 10; 5; 7; 3]; [1; 10; 8; 7; 3]; [1; 10; 9; 7; 3];
[1; 10; 10; 0; 3]; [1; 10; 10; 3; 3]; [1; 10; 10; 5; 3]; [1; 10; 10; 6; 3];
[1; 10; 10; 7; 0]; [1; 10; 10; 7; 1]; [1; 10; 10; 7; 2]; ];
Alcotest.(check' (list (list int)))
~msg:"[1; 10; 10; 7; 3] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (list (int_bound 10))) |> repeated_success)
~expected:[ [1; 10; 10; 7; 3]; [1; 10; 10]; [10; 10]; [10]; []; ])
let test_list_small_int () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list (list int)))
~msg:"[0; 5; 3; 7] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) (list_small (int_bound 10))) |> repeated_failure)
~expected:[[0; 5; 3; 7]; [0; 5]; [3; 7]; [5; 3; 7]; [0; 5; 7];
[0; 0; 3; 7]; [0; 2; 3; 7]; [0; 3; 3; 7]; [0; 4; 3; 7];
[0; 5; 0; 7]; [0; 5; 1; 7]; [0; 5; 2; 7];
[0; 5; 3; 0]; [0; 5; 3; 3]; [0; 5; 3; 5]; [0; 5; 3; 6]; ];
Alcotest.(check' (list (list int)))
~msg:"[0; 5; 3; 7] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) (list_small (int_bound 10))) |> repeated_success)
~expected:[ [0; 5; 3; 7]; [0; 5]; [5]; []; ])
else
(Alcotest.(check' (list (list int)))
~msg:"[1; 10; 10; 7; 3] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (list_small (int_bound 10))) |> repeated_failure)
~expected:[ [1; 10; 10; 7; 3]; [1; 10; 10]; [7; 3]; [10; 10; 7; 3]; [1; 10; 10; 3];
[0; 10; 10; 7; 3];
[1; 0; 10; 7; 3]; [1; 5; 10; 7; 3]; [1; 8; 10; 7; 3]; [1; 9; 10; 7; 3];
[1; 10; 0; 7; 3]; [1; 10; 5; 7; 3]; [1; 10; 8; 7; 3]; [1; 10; 9; 7; 3];
[1; 10; 10; 0; 3]; [1; 10; 10; 3; 3]; [1; 10; 10; 5; 3]; [1; 10; 10; 6; 3];
[1; 10; 10; 7; 0]; [1; 10; 10; 7; 1]; [1; 10; 10; 7; 2]; ];
Alcotest.(check' (list (list int)))
~msg:"[1; 10; 10; 7; 3] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (list_small (int_bound 10))) |> repeated_success)
~expected:[ [1; 10; 10; 7; 3]; [1; 10; 10]; [10; 10]; [10]; []; ])
let test_array_size_int () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list (array int)))
~msg:"[|2; 5; 1|] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (array_size (int_bound 8) (int_bound 10))) |> repeated_failure)
~expected:[ [|2; 5; 1|]; [||]; [|2|]; [|2; 5|];
[|0; 5; 1|]; [|1; 5; 1|];
[|2; 0; 1|]; [|2; 2; 1|]; [|2; 3; 1|]; [|2; 4; 1|];
[|2; 5; 0|]; ];
Alcotest.(check' (list (array int)))
~msg:"[|2; 5; 1|] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (array_size (int_bound 8) (int_bound 10))) |> repeated_success)
~expected:[ [|2; 5; 1|]; [| |]; ])
else
(Alcotest.(check' (list (array int)))
~msg:"[|9; 2; 7; 3; 8; 6|] repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (array_size (int_bound 8) (int_bound 10))) |> repeated_failure)
~expected:[ [|9; 2; 7; 3; 8; 6|]; [||]; [|9; 2; 7|]; [|9; 2; 7; 3; 8|];
[|0; 2; 7; 3; 8; 6|]; [|4; 2; 7; 3; 8; 6|]; [|6; 2; 7; 3; 8; 6|]; [|7; 2; 7; 3; 8; 6|]; [|8; 2; 7; 3; 8; 6|];
[|9; 0; 7; 3; 8; 6|]; [|9; 1; 7; 3; 8; 6|];
[|9; 2; 0; 3; 8; 6|]; [|9; 2; 3; 3; 8; 6|]; [|9; 2; 5; 3; 8; 6|]; [|9; 2; 6; 3; 8; 6|];
[|9; 2; 7; 0; 8; 6|]; [|9; 2; 7; 1; 8; 6|]; [|9; 2; 7; 2; 8; 6|];
[|9; 2; 7; 3; 0; 6|]; [|9; 2; 7; 3; 4; 6|]; [|9; 2; 7; 3; 6; 6|]; [|9; 2; 7; 3; 7; 6|];
[|9; 2; 7; 3; 8; 0|]; [|9; 2; 7; 3; 8; 3|]; [|9; 2; 7; 3; 8; 5|]; ];
Alcotest.(check' (list (array int)))
~msg:"[|9; 2; 7; 3; 8; 6|] repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (array_size (int_bound 8) (int_bound 10))) |> repeated_success)
~expected:[[|9; 2; 7; 3; 8; 6|]; [| |]; ])
let test_array_int () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list (array int)))
~msg:"[|0; 5; 3; 7|] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) (array (int_bound 10))) |> repeated_failure)
~expected:[ [|0; 5; 3; 7|]; [|0; 5|]; [|3; 7|]; [|5; 3; 7|]; [|0; 5; 7|];
[|0; 0; 3; 7|]; [|0; 2; 3; 7|]; [|0; 3; 3; 7|]; [|0; 4; 3; 7|];
[|0; 5; 0; 7|]; [|0; 5; 1; 7|]; [|0; 5; 2; 7|];
[|0; 5; 3; 0|]; [|0; 5; 3; 3|]; [|0; 5; 3; 5|]; [|0; 5; 3; 6|]; ];
Alcotest.(check' (list (array int)))
~msg:"[|0; 5; 3; 7|] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) (array (int_bound 10))) |> repeated_success)
~expected:[ [|0; 5; 3; 7|]; [|0; 5|]; [|5|]; [||]; ])
else
(Alcotest.(check' (list (array int)))
~msg:"[|1; 10; 10; 7; 3|] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (array (int_bound 10))) |> repeated_failure)
~expected:[ [|1; 10; 10; 7; 3|]; [|1; 10; 10|]; [|7; 3|]; [|10; 10; 7; 3|]; [|1; 10; 10; 3|];
[|0; 10; 10; 7; 3|];
[|1; 0; 10; 7; 3|]; [|1; 5; 10; 7; 3|]; [|1; 8; 10; 7; 3|]; [|1; 9; 10; 7; 3|];
[|1; 10; 0; 7; 3|]; [|1; 10; 5; 7; 3|]; [|1; 10; 8; 7; 3|]; [|1; 10; 9; 7; 3|];
[|1; 10; 10; 0; 3|]; [|1; 10; 10; 3; 3|]; [|1; 10; 10; 5; 3|]; [|1; 10; 10; 6; 3|];
[|1; 10; 10; 7; 0|]; [|1; 10; 10; 7; 1|]; [|1; 10; 10; 7; 2|]; ];
Alcotest.(check' (list (array int)))
~msg:"[|1; 10; 10; 7; 3|] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (array (int_bound 10))) |> repeated_success)
~expected:[ [|1; 10; 10; 7; 3|]; [|1; 10; 10|]; [|10; 10|]; [|10|]; [||]; ])
let test_array_small_int () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list (array int)))
~msg:"[|0; 5; 3; 7|] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) (array_small (int_bound 10))) |> repeated_failure)
~expected:[ [|0; 5; 3; 7|]; [|0; 5|]; [|3; 7|]; [|5; 3; 7|]; [|0; 5; 7|];
[|0; 0; 3; 7|]; [|0; 2; 3; 7|]; [|0; 3; 3; 7|]; [|0; 4; 3; 7|];
[|0; 5; 0; 7|]; [|0; 5; 1; 7|]; [|0; 5; 2; 7|];
[|0; 5; 3; 0|]; [|0; 5; 3; 3|]; [|0; 5; 3; 5|]; [|0; 5; 3; 6|]; ];
Alcotest.(check' (list (array int)))
~msg:"[|0; 5; 3; 7|] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) (array_small (int_bound 10))) |> repeated_success)
~expected:[ [|0; 5; 3; 7|]; [|0; 5|]; [|5|]; [||]; ])
else
(Alcotest.(check' (list (array int)))
~msg:"[|1; 10; 10; 7; 3|] on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (array_small (int_bound 10))) |> repeated_failure)
~expected:[ [|1; 10; 10; 7; 3|]; [|1; 10; 10|]; [|7; 3|]; [|10; 10; 7; 3|]; [|1; 10; 10; 3|];
[|0; 10; 10; 7; 3|];
[|1; 0; 10; 7; 3|]; [|1; 5; 10; 7; 3|]; [|1; 8; 10; 7; 3|]; [|1; 9; 10; 7; 3|];
[|1; 10; 0; 7; 3|]; [|1; 10; 5; 7; 3|]; [|1; 10; 8; 7; 3|]; [|1; 10; 9; 7; 3|];
[|1; 10; 10; 0; 3|]; [|1; 10; 10; 3; 3|]; [|1; 10; 10; 5; 3|]; [|1; 10; 10; 6; 3|];
[|1; 10; 10; 7; 0|]; [|1; 10; 10; 7; 1|]; [|1; 10; 10; 7; 2|]; ];
Alcotest.(check' (list (array int)))
~msg:"[|1; 10; 10; 7; 3|] on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3347) (array_small (int_bound 10))) |> repeated_success)
~expected:[ [|1; 10; 10; 7; 3|]; [|1; 10; 10|]; [|10; 10|]; [|10|]; [||]; ])
let test_bytes_size () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list bytes))
~msg:"\"H Ap>&U\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (bytes_size ~gen:char_printable (int_bound 8))) |> repeated_failure)
~expected:(List.map Bytes.of_string
[ "H Ap>&U"; ""; "H A"; "H Ap>"; "H Ap>&"; "a Ap>&U"; "' Ap>&U";
"8 Ap>&U"; "@ Ap>&U"; "D Ap>&U"; "F Ap>&U"; "G Ap>&U";
"HaAp>&U"; "HnAp>&U"; "HuAp>&U"; "HxAp>&U"; "HzAp>&U";
"H ap>&U"; "H #p>&U"; "H 2p>&U"; "H 9p>&U"; "H =p>&U"; "H ?p>&U"; "H @p>&U";
"H Aa>&U"; "H Ah>&U"; "H Al>&U"; "H An>&U"; "H Ao>&U";
"H Apa&U"; "H Ap\"&U"; "H Ap0&U"; "H Ap7&U"; "H Ap;&U"; "H Ap=&U";
"H Ap>aU"; "H Ap>qU"; "H Ap>yU"; "H Ap>\"U"; "H Ap>$U"; "H Ap>%U";
"H Ap>&a"; "H Ap>&-"; "H Ap>&A"; "H Ap>&K"; "H Ap>&P"; "H Ap>&R"; "H Ap>&S"; "H Ap>&T"; ] );
Alcotest.(check' (list bytes))
~msg:"\"H Ap>&U\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (bytes_size ~gen:char_printable (int_bound 8))) |> repeated_success)
~expected:(List.map Bytes.of_string ["H Ap>&U"; ""]))
else
(Alcotest.(check' (list bytes))
~msg:"\"Ns<>W\\\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (bytes_size ~gen:char_printable (int_bound 8))) |> repeated_failure)
~expected:(List.map Bytes.of_string
["Ns<>W\\"; ""; "Ns<"; "Ns<>W";
"as<>W\\"; "*s<>W\\"; "<s<>W\\"; "Es<>W\\"; "Js<>W\\"; "Ls<>W\\"; "Ms<>W\\";
"Na<>W\\"; "Nj<>W\\"; "No<>W\\"; "Nq<>W\\"; "Nr<>W\\";
"Nsa>W\\"; "Ns!>W\\"; "Ns/>W\\"; "Ns6>W\\"; "Ns9>W\\"; "Ns;>W\\";
"Ns<aW\\"; "Ns<\"W\\"; "Ns<0W\\"; "Ns<7W\\"; "Ns<;W\\"; "Ns<=W\\";
"Ns<>a\\"; "Ns<>.\\"; "Ns<>B\\"; "Ns<>L\\"; "Ns<>Q\\"; "Ns<>T\\"; "Ns<>U\\"; "Ns<>V\\";
"Ns<>Wa"; "Ns<>W1"; "Ns<>WG"; "Ns<>WR"; "Ns<>WW"; "Ns<>WZ"; "Ns<>W["; ] );
Alcotest.(check' (list bytes))
~msg:"\"Ns<>W\\\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (bytes_size ~gen:char_printable (int_bound 8))) |> repeated_success)
~expected:(List.map Bytes.of_string ["Ns<>W\\"; ""; ]))
let test_bytes () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list bytes))
~msg:"\"9\007\127\250\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) bytes) |> repeated_failure)
~expected:(List.map Bytes.of_string
[ "9\007\127\250"; "9\007"; "\127\250"; "\007\127\250"; "9\007\250";
"a\007\127\250"; "M\007\127\250"; "C\007\127\250"; ">\007\127\250"; ";\007\127\250"; ":\007\127\250";
"9a\127\250"; "94\127\250"; "9\029\127\250"; "9\018\127\250"; "9\012\127\250"; "9\t\127\250"; "9\b\127\250";
"9\007a\250"; "9\007p\250"; "9\007w\250"; "9\007{\250"; "9\007}\250"; "9\007~\250";
"9\007\127a"; "9\007\127\174"; "9\007\127\212"; "9\007\127\231"; "9\007\127\241"; "9\007\127\246"; "9\007\127\248"; "9\007\127\249"; ] );
Alcotest.(check' (list bytes))
~msg:"\"9\007\127\250\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) bytes) |> repeated_success)
~expected:(List.map Bytes.of_string [ "9\007\127\250"; "9\007"; "\007"; ""; ]))
else
(Alcotest.(check' (list bytes))
~msg:"\"\253NS\173\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3349) bytes) |> repeated_failure)
~expected:(List.map Bytes.of_string
[ "\253NS\173"; "\253N"; "S\173"; "NS\173"; "\253N\173";
"aNS\173"; "\175NS\173"; "\214NS\173"; "\233NS\173"; "\243NS\173"; "\248NS\173"; "\250NS\173"; "\251NS\173"; "\252NS\173";
"\253aS\173"; "\253XS\173"; "\253SS\173"; "\253QS\173"; "\253PS\173"; "\253OS\173";
"\253Na\173"; "\253NZ\173"; "\253NV\173"; "\253NT\173";
"\253NSa"; "\253NS\135"; "\253NS\154"; "\253NS\163"; "\253NS\168"; "\253NS\170"; "\253NS\171"; "\253NS\172"; ] );
Alcotest.(check' (list bytes))
~msg:"\"\253NS\173\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3349) bytes) |> repeated_success)
~expected:(List.map Bytes.of_string [ "\253NS\173"; "\253N"; "N"; ""; ]))
let test_bytes_small () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list bytes))
~msg:"\"9\007\127\250\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) bytes_small) |> repeated_failure)
~expected:(List.map Bytes.of_string
[ "9\007\127\250"; "9\007"; "\127\250"; "\007\127\250"; "9\007\250";
"a\007\127\250"; "M\007\127\250"; "C\007\127\250"; ">\007\127\250"; ";\007\127\250"; ":\007\127\250";
"9a\127\250"; "94\127\250"; "9\029\127\250"; "9\018\127\250"; "9\012\127\250"; "9\t\127\250"; "9\b\127\250";
"9\007a\250"; "9\007p\250"; "9\007w\250"; "9\007{\250"; "9\007}\250"; "9\007~\250";
"9\007\127a"; "9\007\127\174"; "9\007\127\212"; "9\007\127\231"; "9\007\127\241"; "9\007\127\246"; "9\007\127\248"; "9\007\127\249"; ] );
Alcotest.(check' (list bytes))
~msg:"\"9\007\127\250\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) bytes_small) |> repeated_success)
~expected:(List.map Bytes.of_string [ "9\007\127\250"; "9\007"; "\007"; ""; ]))
else
(Alcotest.(check' (list bytes))
~msg:"\"\253NS\173\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3349) bytes_small) |> repeated_failure)
~expected:(List.map Bytes.of_string
[ "\253NS\173"; "\253N"; "S\173"; "NS\173"; "\253N\173";
"aNS\173"; "\175NS\173"; "\214NS\173"; "\233NS\173"; "\243NS\173"; "\248NS\173"; "\250NS\173"; "\251NS\173"; "\252NS\173";
"\253aS\173"; "\253XS\173"; "\253SS\173"; "\253QS\173"; "\253PS\173"; "\253OS\173";
"\253Na\173"; "\253NZ\173"; "\253NV\173"; "\253NT\173";
"\253NSa"; "\253NS\135"; "\253NS\154"; "\253NS\163"; "\253NS\168"; "\253NS\170"; "\253NS\171"; "\253NS\172"; ] );
Alcotest.(check' (list bytes))
~msg:"\"\253NS\173\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3349) bytes_small) |> repeated_success)
~expected:(List.map Bytes.of_string [ "\253NS\173"; "\253N"; "N"; ""; ]))
let test_string_size () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list string))
~msg:"\"H Ap>&U\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (string_size ~gen:char_printable (int_bound 8))) |> repeated_failure)
~expected:[ "H Ap>&U"; ""; "H A"; "H Ap>"; "H Ap>&"; "a Ap>&U"; "' Ap>&U";
"8 Ap>&U"; "@ Ap>&U"; "D Ap>&U"; "F Ap>&U"; "G Ap>&U";
"HaAp>&U"; "HnAp>&U"; "HuAp>&U"; "HxAp>&U"; "HzAp>&U";
"H ap>&U"; "H #p>&U"; "H 2p>&U"; "H 9p>&U"; "H =p>&U"; "H ?p>&U"; "H @p>&U";
"H Aa>&U"; "H Ah>&U"; "H Al>&U"; "H An>&U"; "H Ao>&U";
"H Apa&U"; "H Ap\"&U"; "H Ap0&U"; "H Ap7&U"; "H Ap;&U"; "H Ap=&U";
"H Ap>aU"; "H Ap>qU"; "H Ap>yU"; "H Ap>\"U"; "H Ap>$U"; "H Ap>%U";
"H Ap>&a"; "H Ap>&-"; "H Ap>&A"; "H Ap>&K"; "H Ap>&P"; "H Ap>&R"; "H Ap>&S"; "H Ap>&T"; ];
Alcotest.(check' (list string))
~msg:"\"H Ap>&U\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (string_size ~gen:char_printable (int_bound 8))) |> repeated_success)
~expected:[ "H Ap>&U"; ""; ])
else
(Alcotest.(check' (list string))
~msg:"\"Ns<>W\\\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (string_size ~gen:char_printable (int_bound 8))) |> repeated_failure)
~expected:["Ns<>W\\"; ""; "Ns<"; "Ns<>W"; "as<>W\\"; "*s<>W\\";
"<s<>W\\"; "Es<>W\\"; "Js<>W\\"; "Ls<>W\\"; "Ms<>W\\";
"Na<>W\\"; "Nj<>W\\"; "No<>W\\"; "Nq<>W\\"; "Nr<>W\\";
"Nsa>W\\"; "Ns!>W\\"; "Ns/>W\\"; "Ns6>W\\"; "Ns9>W\\"; "Ns;>W\\";
"Ns<aW\\"; "Ns<\"W\\"; "Ns<0W\\"; "Ns<7W\\"; "Ns<;W\\"; "Ns<=W\\";
"Ns<>a\\"; "Ns<>.\\"; "Ns<>B\\"; "Ns<>L\\"; "Ns<>Q\\"; "Ns<>T\\"; "Ns<>U\\"; "Ns<>V\\";
"Ns<>Wa"; "Ns<>W1"; "Ns<>WG"; "Ns<>WR"; "Ns<>WW"; "Ns<>WZ"; "Ns<>W["; ];
Alcotest.(check' (list string))
~msg:"\"Ns<>W\\\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3346) (string_size ~gen:char_printable (int_bound 8))) |> repeated_success)
~expected:[ "Ns<>W\\"; ""; ])
let test_string () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list string))
~msg:"\"9\007\127\250\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) string) |> repeated_failure)
~expected:[ "9\007\127\250"; "9\007"; "\127\250"; "\007\127\250"; "9\007\250";
"a\007\127\250"; "M\007\127\250"; "C\007\127\250"; ">\007\127\250"; ";\007\127\250"; ":\007\127\250";
"9a\127\250"; "94\127\250"; "9\029\127\250"; "9\018\127\250"; "9\012\127\250"; "9\t\127\250"; "9\b\127\250";
"9\007a\250"; "9\007p\250"; "9\007w\250"; "9\007{\250"; "9\007}\250"; "9\007~\250";
"9\007\127a"; "9\007\127\174"; "9\007\127\212"; "9\007\127\231"; "9\007\127\241"; "9\007\127\246"; "9\007\127\248"; "9\007\127\249"; ];
Alcotest.(check' (list string))
~msg:"\"9\007\127\250\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) string) |> repeated_success)
~expected:[ "9\007\127\250"; "9\007"; "\007"; ""; ])
else
(Alcotest.(check' (list string))
~msg:"\"\253NS\173\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3349) string) |> repeated_failure)
~expected:[ "\253NS\173"; "\253N"; "S\173"; "NS\173"; "\253N\173";
"aNS\173"; "\175NS\173"; "\214NS\173"; "\233NS\173"; "\243NS\173"; "\248NS\173"; "\250NS\173"; "\251NS\173"; "\252NS\173";
"\253aS\173"; "\253XS\173"; "\253SS\173"; "\253QS\173"; "\253PS\173"; "\253OS\173";
"\253Na\173"; "\253NZ\173"; "\253NV\173"; "\253NT\173";
"\253NSa"; "\253NS\135"; "\253NS\154"; "\253NS\163"; "\253NS\168"; "\253NS\170"; "\253NS\171"; "\253NS\172"];
Alcotest.(check' (list string))
~msg:"\"\253NS\173\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3349) string) |> repeated_success)
~expected:[ "\253NS\173"; "\253N"; "N"; ""; ])
let test_string_small () =
if ocaml_major_version < 5
then
(Alcotest.(check' (list string))
~msg:"\"9\007\127\250\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) string_small) |> repeated_failure)
~expected:[ "9\007\127\250"; "9\007"; "\127\250"; "\007\127\250"; "9\007\250";
"a\007\127\250"; "M\007\127\250"; "C\007\127\250"; ">\007\127\250"; ";\007\127\250"; ":\007\127\250";
"9a\127\250"; "94\127\250"; "9\029\127\250"; "9\018\127\250"; "9\012\127\250"; "9\t\127\250"; "9\b\127\250";
"9\007a\250"; "9\007p\250"; "9\007w\250"; "9\007{\250"; "9\007}\250"; "9\007~\250";
"9\007\127a"; "9\007\127\174"; "9\007\127\212"; "9\007\127\231"; "9\007\127\241"; "9\007\127\246"; "9\007\127\248"; "9\007\127\249"; ];
Alcotest.(check' (list string))
~msg:"\"u\238\154I\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3345) string_small) |> repeated_success)
~expected:[ "9\007\127\250"; "9\007"; "\007"; ""; ])
else
(Alcotest.(check' (list string))
~msg:"\"\253NS\173\" on repeated failure"
~actual:(Gen.(generate_tree ~rand:(rand_init 3349) string_small) |> repeated_failure)
~expected:[ "\253NS\173"; "\253N"; "S\173"; "NS\173"; "\253N\173";
"aNS\173"; "\175NS\173"; "\214NS\173"; "\233NS\173"; "\243NS\173"; "\248NS\173"; "\250NS\173"; "\251NS\173"; "\252NS\173";
"\253aS\173"; "\253XS\173"; "\253SS\173"; "\253QS\173"; "\253PS\173"; "\253OS\173";
"\253Na\173"; "\253NZ\173"; "\253NV\173"; "\253NT\173";
"\253NSa"; "\253NS\135"; "\253NS\154"; "\253NS\163"; "\253NS\168"; "\253NS\170"; "\253NS\171"; "\253NS\172"];
Alcotest.(check' (list string))
~msg:"\"\253NS\173\" on repeated success"
~actual:(Gen.(generate_tree ~rand:(rand_init 3349) string_small) |> repeated_success)
~expected:[ "\253NS\173"; "\253N"; "N"; ""; ])
let tests = ("Shrink", Alcotest.[
test_case "int_towards" `Quick test_int_towards;
test_case "int32_towards" `Quick test_int32_towards;
test_case "int64_towards" `Quick test_int64_towards;
test_case "float_towards" `Quick test_float_towards;
test_case "Gen.char tree" `Quick test_char;
test_case "Gen.char_numeral tree" `Quick test_char_numeral;
test_case "Gen.char_printable tree" `Quick test_char_printable;
test_case "Gen.(pair nat_small nat_small) tree" `Quick test_pair_nat_small;
test_case "Gen.bind nat_small tree" `Quick test_bind_nat_small;
test_case "Gen.list_size int" `Quick test_list_size_int;
test_case "Gen.list int" `Quick test_list_int;
test_case "Gen.list_small int" `Quick test_list_small_int;
test_case "Gen.array_size int" `Quick test_array_size_int;
test_case "Gen.array int" `Quick test_array_int;
test_case "Gen.array_small int" `Quick test_array_small_int;
test_case "Gen.bytes_size" `Quick test_bytes_size;
test_case "Gen.bytes" `Quick test_bytes;
test_case "Gen.bytes_small" `Quick test_bytes_small;
test_case "Gen.string_size" `Quick test_string_size;
test_case "Gen.string" `Quick test_string;
test_case "Gen.string_small" `Quick test_string_small;
])
end
module Gen = struct
let test_gen_option ~ratio =
let opt_int = Gen.option ?ratio Gen.int in
let nb = ref 0 in
for _i = 0 to 1000 do
Gen.generate1 opt_int |> function None -> () | Some _ -> nb := !nb + 1
done;
!nb
let test_gen_option_default () =
let nb = test_gen_option ~ratio:None in
let b = nb > 800 && nb < 900 in
Alcotest.(check bool) "Gen.option produces around 85% of Some" b true
let test_gen_option_custom () =
let nb = test_gen_option ~ratio:(Some 0.5) in
let b = nb > 400 && nb < 600 in
Alcotest.(check bool) "Gen.option produces around 50% of Some" b true
let tests =
("Gen", Alcotest.[
test_case "option with default ratio" `Quick test_gen_option_default;
test_case "option with custom ratio" `Quick test_gen_option_custom;
])
end
module TestCount = struct
let test_count_n ?count expected =
let t = QCheck2.(Test.make ?count Gen.int (fun _ -> true)) in
let msg = Printf.sprintf "QCheck2.Test.make ~count:%s |> get_count = %d"
(Option.fold ~none:"None" ~some:string_of_int count) expected
in
Alcotest.(check int) msg expected (QCheck2.Test.test_get_count t)
let test_count_10 () = test_count_n ~count:10 10
let test_count_default () = test_count_n 100
let test_count_env () =
let () = Unix.putenv "QCHECK_COUNT" "5" in
let t = QCheck2.(Test.make Gen.int (fun _ -> true)) in
let actual = QCheck2.Test.test_get_count t in
Alcotest.(check int) "default count is from QCHECK_COUNT" 5 actual
let test_count_0 () = test_count_n ~count:0 0
let test_count_negative_fail () =
try
let _ = test_count_n ~count:(-1) (-1) in
Alcotest.fail "A negative count in a test should fail"
with
| _ -> ()
let tests =
("Test.make ~count", Alcotest.[
test_case "make with custom count" `Quick test_count_10;
test_case "make with default count" `Quick test_count_default;
test_case "make with env count" `Quick test_count_env;
test_case "make with 0 count" `Quick test_count_0;
test_case "make with negative count should fail"
`Quick test_count_negative_fail;
])
end
module TestLongFactor = struct
let test_long_factor_n ?long_factor expected =
let t = QCheck2.(Test.make ?long_factor Gen.int (fun _ -> true)) in
let msg = Printf.sprintf "QCheck2.Test.make ~long_factor:%s |> long_factor = %d"
(Option.fold ~none:"None" ~some:string_of_int long_factor) expected
in
Alcotest.(check int) msg expected (QCheck2.Test.test_get_long_factor t)
let test_long_factor_10 () = test_long_factor_n ~long_factor:10 10
let test_long_factor_default () = test_long_factor_n 1
let test_long_factor_env () =
let () = Unix.putenv "QCHECK_LONG_FACTOR" "5" in
let t = QCheck2.(Test.make Gen.int (fun _ -> true)) in
let actual = QCheck2.Test.test_get_long_factor t in
Alcotest.(check int) "default long factor is from QCHECK_LONG_FACTOR" 5 actual
let test_long_factor_0 () = test_long_factor_n ~long_factor:0 0
let test_long_factor_negative_fail () =
try
let _ = test_long_factor_n ~long_factor:(-1) (-1) in
Alcotest.fail "A negative long factor in a test should fail"
with
| _ -> ()
let tests =
("Test.make ~long_factor", Alcotest.[
test_case "make with custom long_factor" `Quick test_long_factor_10;
test_case "make with default long_factor" `Quick test_long_factor_default;
test_case "make with env long_factor" `Quick test_long_factor_env;
test_case "make with 0 long_factor" `Quick test_long_factor_0;
test_case "make with negative long_factor fail should"
`Quick test_long_factor_negative_fail;
])
end
module String = struct
let test_string_shrinking () =
let shrink_result = QCheck2.(find_example_gen ~f:(fun s -> s <> s ^ s) Gen.string) in
Alcotest.(check string) "Shrinking a non-empty string shrinks to \"a\"" "a" shrink_result
let tests = ("String", Alcotest.[test_case "shrinking" `Quick test_string_shrinking])
end
module Check_exn = struct
(* String.starts_with was introduced in 4.13.
Include the below to support pre-4.13 OCaml. *)
let string_starts_with ~prefix s =
let open Stdlib in
let prefix_len = String.length prefix in
prefix_len <= String.length s
&& prefix = String.sub s 0 prefix_len
let check_exn = Test.check_exn
let test_pass_trivial () =
let run_test () = check_exn QCheck2.(Test.make Gen.int (fun _ -> true)) in
Alcotest.(check unit) "Success-trivial" () @@ run_test ()
let test_pass_random () =
let run_test () =
check_exn QCheck2.(Test.make Gen.(list int) (fun l -> List.rev (List.rev l) = l)) in
Alcotest.(check unit) "Success-random" () @@ run_test ()
let test_fail_always () =
let name = "will-always-fail" in
try
check_exn QCheck2.(Test.make ~name ~print:Print.int Gen.int (fun _ -> false));
Alcotest.failf "%s: Unexpected success" name
with
(Test.Test_fail (n,[c_ex_str])) ->
Alcotest.(check string) (Printf.sprintf "%s: name" name) n name;
if not (string_starts_with ~prefix:"0" c_ex_str)
then
Alcotest.failf "%s: counter-example prefix. Received: \"%s\"" name c_ex_str
let test_fail_random () =
let name = "list is own reverse" in
try
check_exn
QCheck2.(Test.make ~name ~print:Print.(list int)
Gen.(list int) (fun l -> List.rev l = l));
Alcotest.failf "%s: Unexpected success" name
with
(Test.Test_fail (n,[c_ex_str])) ->
Alcotest.(check string) (Printf.sprintf "%s: name" name) n name;
if not (string_starts_with ~prefix:"[0; 1]" c_ex_str)
then
Alcotest.failf "%s: counter-example prefix. Received \"%s\"" name c_ex_str
exception MyError
let test_error () =
let name = "will-always-error" in
try
Printexc.record_backtrace false; (* for easier pattern-matching below *)
check_exn QCheck2.(Test.make ~name ~print:Print.int Gen.int (fun _ -> raise MyError));
Alcotest.failf "%s: Unexpected success" name
with
(Test.Test_error (n,c_ex_str,MyError,"")) ->
Alcotest.(check string) (Printf.sprintf "%s: name" name) n name;
if not (string_starts_with ~prefix:"0" c_ex_str)
then
Alcotest.failf "%s: counter-example prefix. Received \"%s\"" name c_ex_str
let test_negative_trivial () =
let run_test () = check_exn QCheck2.(Test.make_neg Gen.int (fun _ -> false)) in
Alcotest.(check unit) "Success-negative-trivial" () @@ run_test ()
let test_negative_test_unexpected_success () =
let name = "negative-trivial-test" in
let run_test () = check_exn QCheck2.(Test.make_neg ~name Gen.int (fun _ -> true)) in
try
run_test ();
Alcotest.failf "Negative test didn't raise expected exception."
with
Test.Test_unexpected_success n ->
Alcotest.(check string) (Printf.sprintf "%s: name" name) n name
let tests =
("Test.check_exn", Alcotest.[
test_case "check_exn pass trivial" `Quick test_pass_trivial;
test_case "check_exn pass random" `Quick test_pass_random;
test_case "check_exn fail always" `Quick test_fail_always;
test_case "check_exn fail random" `Quick test_fail_random;
test_case "check_exn Error" `Quick test_error;
test_case "check_exn negative pass trivial" `Quick test_negative_trivial;
test_case "check_exn Unexpected success" `Quick test_negative_test_unexpected_success;
])
end
let () =
Alcotest.run "QCheck2"
[
Shrink.tests;
Gen.tests;
TestCount.tests;
TestLongFactor.tests;
String.tests;
Check_exn.tests;
]
|