Refactor test/dune and add a failing test #2

Merged
reynir merged 12 commits from batch-test into main 2024-10-29 11:21:16 +00:00
3 changed files with 52 additions and 0 deletions
Showing only changes of commit b1e995532b - Show all commits

View file

@ -21,6 +21,8 @@ depends: [
"conf-git" {with-test} "conf-git" {with-test}
"mirage-clock-unix" {with-test} "mirage-clock-unix" {with-test}
"git-unix" {>= "3.10.0" & with-test} "git-unix" {>= "3.10.0" & with-test}
"alcotest" {>= "1.8.0" & with-test}
"bos" {>= "0.2.1" & with-test}
] ]
build: [ build: [

View file

@ -25,3 +25,8 @@
(with-stdout-to (with-stdout-to
git-daemon git-daemon
(run ./git_daemon_exists.exe))) (run ./git_daemon_exists.exe)))
(test
(name tests)
(libraries git-kv alcotest bos)
(modules tests))

45
test/tests.ml Normal file
View file

@ -0,0 +1,45 @@
let ( let* ) = Result.bind
let run_it cmd =
let* status = Bos.OS.Cmd.run_status cmd in
if status = `Exited 0 then Ok () else
Error (`Msg ("status not 0, but " ^ Fmt.to_to_string Bos.OS.Cmd.pp_status status))
let empty_repo () =
let* cwd = Bos.OS.Dir.current () in
let* tmpdir = Bos.OS.Dir.tmp "git-kv-%s" in
let* () = Bos.OS.Dir.set_current tmpdir in
let cmd = Bos.Cmd.(v "git" % "init" % "-q") in
let* () = run_it cmd in
let* () = Bos.OS.Dir.set_current cwd in
let cmd = Bos.Cmd.(v "git" % "daemon" % "--base-path=." % "--export-all" % "--reuseaddr" % "--pid-file=pid" % "--detach") in
let* () = run_it cmd in
let* pid = Bos.OS.File.read (Fpath.v "pid") in
Ok (tmpdir, String.trim pid)
let kill_git pid =
Unix.kill (int_of_string pid) Sys.sigterm
let simple () =
match
let* (tmpdir, pid) = empty_repo () in
print_endline ("git started with " ^ Fpath.to_string tmpdir);
print_endline ("git pid " ^ pid);
Unix.sleep 2;
kill_git pid;
print_endline "git killed";
Ok ()
with
| Ok () -> Alcotest.(check bool __LOC__ true true)
| Error `Msg msg ->
print_endline ("got an error from bos: " ^ msg)
let basic_tests = [
"Simple", `Quick, simple ;
]
let tests = [
"Basic tests", basic_tests ;
]
let () = Alcotest.run "Git-KV alcotest tests" tests