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
|
(** Comprehensive tests for the new obuild parser *)
open Obuild_lexer
open Obuild_parser
open Obuild_ast
(** Test result tracking *)
let tests_run = ref 0
let tests_passed = ref 0
let tests_failed = ref 0
let test name f =
incr tests_run;
try
f ();
incr tests_passed;
Printf.printf " [PASS] %s\n" name
with e ->
incr tests_failed;
Printf.printf " [FAIL] %s: %s\n" name (Printexc.to_string e)
let assert_eq msg expected actual =
if expected <> actual then
failwith
(Printf.sprintf "%s: expected %s, got %s" msg
(if expected = "" then "(empty)" else expected)
(if actual = "" then "(empty)" else actual))
let assert_eq_int msg expected actual =
if expected <> actual then
failwith (Printf.sprintf "%s: expected %d, got %d" msg expected actual)
let assert_eq_bool msg expected actual =
if expected <> actual then
failwith (Printf.sprintf "%s: expected %b, got %b" msg expected actual)
let assert_true msg cond = if not cond then failwith msg
let assert_some msg = function
| Some _ -> ()
| None -> failwith (msg ^ ": expected Some, got None")
let assert_none msg = function
| None -> ()
| Some _ -> failwith (msg ^ ": expected None, got Some")
(* Compat helpers for old OCaml *)
let option_get = function
| Some x -> x
| None -> failwith "option_get: None"
(* ============================================================ *)
(* LEXER TESTS *)
(* ============================================================ *)
let test_lexer () =
Printf.printf "\n=== Lexer Tests ===\n";
test "empty input" (fun () ->
let tokens = tokenize "" in
assert_eq_int "token count" 1 (List.length tokens);
assert_true "should be EOF" ((List.hd tokens).tok = EOF));
test "blank lines only" (fun () ->
let tokens = tokenize "\n\n \n" in
assert_eq_int "token count" 1 (List.length tokens);
assert_true "should be EOF" ((List.hd tokens).tok = EOF));
test "comment lines" (fun () ->
let tokens = tokenize "# this is a comment\n# another comment" in
assert_eq_int "token count" 1 (List.length tokens));
test "simple key-value with colon" (fun () ->
let tokens = tokenize "name: myproject" in
assert_eq_int "token count" 2 (List.length tokens);
match (List.hd tokens).tok with
| KEY_VALUE (k, v) ->
assert_eq "key" "name" k;
assert_eq "value" "myproject" v
| _ -> failwith "expected KEY_VALUE");
test "key-value with equals" (fun () ->
let tokens = tokenize "version = 1.0.0" in
match (List.hd tokens).tok with
| KEY_VALUE (k, v) ->
assert_eq "key" "version" k;
assert_eq "value" "1.0.0" v
| _ -> failwith "expected KEY_VALUE");
test "key-value with spaces" (fun () ->
let tokens = tokenize " description: some text here " in
let t = List.hd tokens in
assert_eq_int "indent" 2 t.indent;
match t.tok with
| KEY_VALUE (k, v) ->
assert_eq "key" "description" k;
assert_eq "value" "some text here" v
| _ -> failwith "expected KEY_VALUE");
test "block header no args" (fun () ->
let tokens = tokenize "library" in
match (List.hd tokens).tok with
| BLOCK (name, args) ->
assert_eq "name" "library" name;
assert_eq_int "args count" 0 (List.length args)
| _ -> failwith "expected BLOCK");
test "block header with one arg" (fun () ->
let tokens = tokenize "library mylib" in
match (List.hd tokens).tok with
| BLOCK (name, args) ->
assert_eq "name" "library" name;
assert_eq_int "args count" 1 (List.length args);
assert_eq "arg" "mylib" (List.hd args)
| _ -> failwith "expected BLOCK");
test "block header with multiple args" (fun () ->
let tokens = tokenize "per file1.ml file2.ml" in
match (List.hd tokens).tok with
| BLOCK (name, args) ->
assert_eq "name" "per" name;
assert_eq_int "args count" 2 (List.length args)
| _ -> failwith "expected BLOCK");
test "indentation tracking" (fun () ->
let tokens = tokenize "library mylib\n modules: A, B\n src-dir: lib" in
assert_eq_int "token count" 4 (List.length tokens);
(* 3 + EOF *)
let t0 = List.nth tokens 0 in
let t1 = List.nth tokens 1 in
let t2 = List.nth tokens 2 in
assert_eq_int "t0 indent" 0 t0.indent;
assert_eq_int "t1 indent" 2 t1.indent;
assert_eq_int "t2 indent" 2 t2.indent);
test "mixed indentation" (fun () ->
let input = "library mylib\n modules: A\n nested: value\n back: here" in
let tokens = tokenize input in
let indents = List.map (fun t -> t.indent) (List.filter (fun t -> t.tok <> EOF) tokens) in
assert_true "indents" (indents = [ 0; 2; 4; 2 ]));
test "line numbers" (fun () ->
let tokens = tokenize "line1: a\n\nline3: b\nline4: c" in
let lines =
List.map
(fun t -> t.Obuild_lexer.loc.Location.line)
(List.filter (fun t -> t.Obuild_lexer.tok <> EOF) tokens)
in
assert_true "line numbers" (lines = [ 1; 3; 4 ]));
()
(* ============================================================ *)
(* PARSER BASIC TESTS *)
(* ============================================================ *)
let test_parser_basic () =
Printf.printf "\n=== Parser Basic Tests ===\n";
test "minimal project" (fun () ->
let input = "name: test\nversion: 1.0\nobuild-ver: 1" in
let proj = parse input in
assert_eq "name" "test" proj.project_name.value;
assert_eq "version" "1.0" proj.project_version.value;
assert_eq_int "obuild-ver" 1 proj.project_obuild_ver.value);
test "project metadata" (fun () ->
let input =
"name: myproject\n\
version: 2.0.0\n\
obuild-ver: 1\n\
synopsis: A test project\n\
description: This is a longer description\n\
license: MIT\n\
license-file: LICENSE\n\
homepage: https://example.com\n\
authors: Alice, Bob\n"
in
let proj = parse input in
assert_eq "name" "myproject" proj.project_name.value;
assert_eq "synopsis" "A test project" (option_get proj.project_synopsis);
assert_eq "license" "MIT" (option_get proj.project_license);
assert_eq "license-file" "LICENSE" (option_get proj.project_license_file);
assert_eq "homepage" "https://example.com" (option_get proj.project_homepage);
assert_eq_int "authors count" 2 (List.length proj.project_authors));
test "single author" (fun () ->
let input = "name: x\nversion: 1\nobuild-ver: 1\nauthor: Alice" in
let proj = parse input in
assert_eq_int "authors count" 1 (List.length proj.project_authors);
assert_eq "author" "Alice" (List.hd proj.project_authors));
test "extra-srcs and tools" (fun () ->
let input =
"name: x\n\
version: 1\n\
obuild-ver: 1\n\
extra-srcs: file1.txt, file2.txt\n\
tools: tool1, tool2\n"
in
let proj = parse input in
assert_eq_int "extra-srcs" 2 (List.length proj.project_extra_srcs);
assert_eq_int "tools" 2 (List.length proj.project_extra_tools));
test "configure-script" (fun () ->
let input = "name: x\nversion: 1\nobuild-ver: 1\nconfigure-script: configure.sh" in
let proj = parse input in
assert_eq "configure-script" "configure.sh" (option_get proj.project_configure_script));
test "ocaml-version" (fun () ->
let input = "name: x\nversion: 1\nobuild-ver: 1\nocaml-version: >= 4.08" in
let proj = parse input in
assert_eq "ocaml-version" ">= 4.08" (option_get proj.project_ocaml_ver));
()
(* ============================================================ *)
(* LIBRARY TESTS *)
(* ============================================================ *)
let test_parser_library () =
Printf.printf "\n=== Parser Library Tests ===\n";
test "simple library" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A, B, C\n src-dir: lib\n"
in
let proj = parse input in
assert_eq_int "libs count" 1 (List.length proj.project_libs);
let lib = List.hd proj.project_libs in
assert_eq "lib name" "mylib" lib.lib_name;
assert_eq_int "modules count" 3 (List.length lib.lib_modules);
assert_eq_int "src-dir count" 1 (List.length lib.lib_target.ocaml.src_dir));
test "library with build-deps" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n build-deps: unix, str, base (>= 0.14)\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
let deps = lib.lib_target.ocaml.build_deps in
assert_eq_int "deps count" 3 (List.length deps);
let base_dep = List.nth deps 2 in
assert_eq "dep name" "base" base_dep.dep_name;
assert_eq "dep constraint" ">= 0.14" (option_get base_dep.dep_constraint));
test "library with C settings" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n c-dir: csrc\n c-sources: foo.c, bar.c\n c-flags: -O2, -Wall\n c-libs: m, pthread\n c-pkgs: glib-2.0\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
let c = lib.lib_target.c in
assert_eq "c-dir" "csrc" (option_get c.c_dir);
assert_eq_int "c-sources" 2 (List.length c.c_sources);
assert_eq_int "c-flags" 2 (List.length c.c_flags);
assert_eq_int "c-libs" 2 (List.length c.c_libs);
assert_eq_int "c-pkgs" 1 (List.length c.c_pkgs));
test "library with pack and syntax" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n pack: true\n syntax: true\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_eq_bool "pack" true lib.lib_pack;
assert_eq_bool "syntax" true lib.lib_syntax);
test "library with stdlib none" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n stdlib: none\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_true "stdlib is none" (lib.lib_target.ocaml.stdlib = Some Stdlib_None));
test "library with oflags" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n oflags: -w, +a-4\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_eq_int "oflags" 2 (List.length lib.lib_target.ocaml.oflags));
test "library buildable/installable" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n buildable: false\n installable: $flag_install\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_true "buildable" (lib.lib_target.buildable = Bool_const false);
assert_true "installable" (lib.lib_target.installable = Bool_var "flag_install"));
test "multiple libraries" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary lib1\n modules: A\n\nlibrary lib2\n modules: B\n"
in
let proj = parse input in
assert_eq_int "libs count" 2 (List.length proj.project_libs));
()
(* ============================================================ *)
(* CSTUBS TESTS *)
(* ============================================================ *)
let test_parser_cstubs () =
Printf.printf "\n=== Parser Cstubs Tests ===\n";
test "library with cstubs" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: Bindings, C, Types_generated\n build-deps: ctypes, ctypes.stubs\n\n cstubs\n external-library-name: mylib_stubs\n type-description: Bindings.Types -> Types_gen\n function-description: Bindings.Functions -> Funcs_gen\n generated-types: Types_generated\n generated-entry-point: C\n headers: string.h, mylib.h\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_some "cstubs" lib.lib_cstubs;
let cstubs = option_get lib.lib_cstubs in
assert_eq "external-library-name" "mylib_stubs" cstubs.cstubs_external_lib_name;
assert_some "type-description" cstubs.cstubs_type_desc;
let type_desc = option_get cstubs.cstubs_type_desc in
assert_eq "type functor" "Bindings.Types" type_desc.cstubs_functor;
assert_eq "type instance" "Types_gen" type_desc.cstubs_instance;
assert_some "function-description" cstubs.cstubs_func_desc;
assert_eq "generated-types" "Types_generated" cstubs.cstubs_generated_types;
assert_eq "generated-entry-point" "C" cstubs.cstubs_generated_entry;
assert_eq_int "headers" 2 (List.length cstubs.cstubs_headers));
test "cstubs minimal" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n\n cstubs\n external-library-name: foo\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_some "cstubs" lib.lib_cstubs;
let cstubs = option_get lib.lib_cstubs in
assert_eq "external-library-name" "foo" cstubs.cstubs_external_lib_name;
assert_none "type-description" cstubs.cstubs_type_desc;
assert_none "function-description" cstubs.cstubs_func_desc);
()
(* ============================================================ *)
(* EXECUTABLE TESTS *)
(* ============================================================ *)
let test_parser_executable () =
Printf.printf "\n=== Parser Executable Tests ===\n";
test "simple executable" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nexecutable myexe\n main-is: main.ml\n src-dir: src\n"
in
let proj = parse input in
assert_eq_int "exes count" 1 (List.length proj.project_exes);
let exe = List.hd proj.project_exes in
assert_eq "exe name" "myexe" exe.exe_name;
assert_eq "main-is" "main.ml" exe.exe_main;
assert_eq_int "src-dir" 1 (List.length exe.exe_target.ocaml.src_dir));
test "executable with deps" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nexecutable myexe\n main-is: main.ml\n build-deps: unix, cmdliner\n"
in
let proj = parse input in
let exe = List.hd proj.project_exes in
assert_eq_int "deps" 2 (List.length exe.exe_target.ocaml.build_deps));
test "multiple executables" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nexecutable exe1\n main-is: main1.ml\n\nexecutable exe2\n main-is: main2.ml\n"
in
let proj = parse input in
assert_eq_int "exes count" 2 (List.length proj.project_exes));
()
(* ============================================================ *)
(* TEST TARGET TESTS *)
(* ============================================================ *)
let test_parser_test () =
Printf.printf "\n=== Parser Test Target Tests ===\n";
test "simple test" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\ntest mytest\n main-is: test_main.ml\n src-dir: tests\n"
in
let proj = parse input in
assert_eq_int "tests count" 1 (List.length proj.project_tests);
let t = List.hd proj.project_tests in
assert_eq "test name" "mytest" t.test_name;
assert_eq "main-is" "test_main.ml" t.test_main);
test "test with rundir" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\ntest mytest\n main-is: test.ml\n run-dir: test_data\n"
in
let proj = parse input in
let t = List.hd proj.project_tests in
assert_eq "rundir" "test_data" (option_get t.test_rundir));
()
(* ============================================================ *)
(* PER BLOCK TESTS *)
(* ============================================================ *)
let test_parser_per () =
Printf.printf "\n=== Parser Per Block Tests ===\n";
test "library with per block" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A, B\n\n per A\n build-deps: special_lib\n oflags: -w, -40\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_eq_int "per blocks" 1 (List.length lib.lib_target.per);
let per = List.hd lib.lib_target.per in
assert_eq_int "per files" 1 (List.length per.per_files);
assert_eq "per file" "A" (List.hd per.per_files);
assert_eq_int "per deps" 1 (List.length per.per_build_deps);
assert_eq_int "per oflags" 2 (List.length per.per_oflags));
test "multiple per blocks" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A, B, C\n\n per A\n oflags: -w, -40\n\n per B C\n pp: ppx_deriving\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_eq_int "per blocks" 2 (List.length lib.lib_target.per);
let per2 = List.nth lib.lib_target.per 1 in
assert_eq_int "per2 files" 2 (List.length per2.per_files);
assert_eq "per2 pp" "ppx_deriving" (option_get per2.per_pp));
()
(* ============================================================ *)
(* SUB-LIBRARY TESTS *)
(* ============================================================ *)
let test_parser_sublib () =
Printf.printf "\n=== Parser Sub-library Tests ===\n";
test "library with sublibrary" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n\n sublib internal\n modules: B, C\n src-dir: internal\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
assert_eq_int "subs" 1 (List.length lib.lib_subs);
let sub = List.hd lib.lib_subs in
assert_eq "sub name" "internal" sub.lib_name;
assert_eq_int "sub modules" 2 (List.length sub.lib_modules));
()
(* ============================================================ *)
(* FLAG TESTS *)
(* ============================================================ *)
let test_parser_flag () =
Printf.printf "\n=== Parser Flag Tests ===\n";
test "flag definition" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nflag debug\n description: Enable debug mode\n default: false\n"
in
let proj = parse input in
assert_eq_int "flags" 1 (List.length proj.project_flags);
let flag = List.hd proj.project_flags in
assert_eq "flag name" "debug" flag.flag_name;
assert_eq "flag desc" "Enable debug mode" flag.flag_description;
assert_eq_bool "flag default" false flag.flag_default);
()
(* ============================================================ *)
(* REAL FILE TESTS *)
(* ============================================================ *)
let test_real_files () =
Printf.printf "\n=== Real File Tests ===\n";
test "ctypes_test.obuild" (fun () ->
let input =
"name: ctypes_test\nversion: 0.1.0\nobuild-ver: 1\n\nlibrary mylib\n modules: Bindings, C, Types_generated\n build-deps: ctypes, ctypes.stubs\n src-dir: lib\n\n cstubs\n external-library-name: mylib_stubs\n type-description: Bindings.Types -> Types_gen\n function-description: Bindings.Functions -> Funcs_gen\n generated-types: Types_generated\n generated-entry-point: C\n headers: string.h\n\nexecutable test_mylib\n main-is: main.ml\n src-dir: bin\n build-deps: mylib, integers, ctypes\n"
in
let proj = parse input in
assert_eq "name" "ctypes_test" proj.project_name.value;
assert_eq "version" "0.1.0" proj.project_version.value;
assert_eq_int "obuild-ver" 1 proj.project_obuild_ver.value;
assert_eq_int "libs" 1 (List.length proj.project_libs);
assert_eq_int "exes" 1 (List.length proj.project_exes);
let lib = List.hd proj.project_libs in
assert_eq "lib name" "mylib" lib.lib_name;
assert_eq_int "lib modules" 3 (List.length lib.lib_modules);
assert_some "lib cstubs" lib.lib_cstubs;
let exe = List.hd proj.project_exes in
assert_eq "exe name" "test_mylib" exe.exe_name;
assert_eq "exe main" "main.ml" exe.exe_main;
assert_eq_int "exe deps" 3 (List.length exe.exe_target.ocaml.build_deps));
test "complex project" (fun () ->
let input =
"name: myproject\nversion: 1.0.0\nobuild-ver: 1\nsynopsis: A complex project\nlicense: BSD-3-Clause\nauthors: Alice, Bob, Charlie\nhomepage: https://github.com/example/myproject\n\n# Main library\nlibrary core\n modules: Types, Utils, Engine\n build-deps: base (>= 0.14), stdio, unix\n src-dir: lib/core\n oflags: -w, +a-4-40-42\n\n per Engine\n build-deps: threads\n pp: ppx_deriving.show\n\n# CLI executable\nexecutable mycli\n main-is: main.ml\n src-dir: bin\n build-deps: core, cmdliner (>= 1.0)\n\n# Tests\ntest unit_tests\n main-is: test_unit.ml\n src-dir: tests\n build-deps: core, alcotest\n\ntest integration_tests\n main-is: test_integration.ml\n src-dir: tests\n build-deps: core, alcotest\n run-dir: test_fixtures\n\n# Feature flag\nflag debug\n description: Build with debug info\n default: false\n"
in
let proj = parse input in
assert_eq "name" "myproject" proj.project_name.value;
assert_eq_int "authors" 3 (List.length proj.project_authors);
assert_eq_int "libs" 1 (List.length proj.project_libs);
assert_eq_int "exes" 1 (List.length proj.project_exes);
assert_eq_int "tests" 2 (List.length proj.project_tests);
assert_eq_int "flags" 1 (List.length proj.project_flags);
let lib = List.hd proj.project_libs in
assert_eq_int "lib modules" 3 (List.length lib.lib_modules);
assert_eq_int "lib deps" 3 (List.length lib.lib_target.ocaml.build_deps);
assert_eq_int "lib per" 1 (List.length lib.lib_target.per);
let exe = List.hd proj.project_exes in
assert_eq_int "exe deps" 2 (List.length exe.exe_target.ocaml.build_deps);
let test1 = List.hd proj.project_tests in
assert_none "test1 rundir" test1.test_rundir;
let test2 = List.nth proj.project_tests 1 in
assert_eq "test2 rundir" "test_fixtures" (option_get test2.test_rundir));
()
(* ============================================================ *)
(* EDGE CASES *)
(* ============================================================ *)
let test_edge_cases () =
Printf.printf "\n=== Edge Case Tests ===\n";
test "empty value" (fun () ->
let input = "name: x\nversion: 1\nobuild-ver: 1\ndescription:" in
let proj = parse input in
assert_eq "description" "" (option_get proj.project_description));
test "value with colons" (fun () ->
let input = "name: x\nversion: 1\nobuild-ver: 1\nhomepage: https://example.com:8080/path" in
let proj = parse input in
assert_eq "homepage" "https://example.com:8080/path" (option_get proj.project_homepage));
test "dependency with complex constraint" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\nlibrary mylib\n modules: A\n build-deps: foo (>= 1.0 && < 2.0)\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
let dep = List.hd lib.lib_target.ocaml.build_deps in
assert_eq "constraint" ">= 1.0 && < 2.0" (option_get dep.dep_constraint));
test "tabs as indentation" (fun () ->
let input = "name: x\nversion: 1\nobuild-ver: 1\nlibrary mylib\n\tmodules: A" in
let proj = parse input in
assert_eq_int "libs" 1 (List.length proj.project_libs));
test "mixed content" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\n\n# comment before library\nlibrary mylib\n modules: A # inline comments not supported, this is part of value\n\n # comment in library\n src-dir: lib\n"
in
let proj = parse input in
let lib = List.hd proj.project_libs in
(* Note: inline comment becomes part of value - lexer doesn't handle inline comments *)
assert_eq_int "src-dir" 1 (List.length lib.lib_target.ocaml.src_dir));
test "unknown fields ignored" (fun () ->
let input =
"name: x\nversion: 1\nobuild-ver: 1\nunknown-field: some value\n\nlibrary mylib\n modules: A\n unknown-lib-field: ignored\n"
in
let proj = parse input in
assert_eq "name" "x" proj.project_name.value;
assert_eq_int "libs" 1 (List.length proj.project_libs));
()
(* ============================================================ *)
(* MAIN *)
(* ============================================================ *)
let () =
Printf.printf "Running new parser tests...\n";
test_lexer ();
test_parser_basic ();
test_parser_library ();
test_parser_cstubs ();
test_parser_executable ();
test_parser_test ();
test_parser_per ();
test_parser_sublib ();
test_parser_flag ();
test_real_files ();
test_edge_cases ();
Printf.printf "\n=== Summary ===\n";
Printf.printf "Tests run: %d\n" !tests_run;
Printf.printf "Passed: %d\n" !tests_passed;
Printf.printf "Failed: %d\n" !tests_failed;
if !tests_failed > 0 then
exit 1
else
Printf.printf "\nAll tests passed!\n"
|