File: c_utils_unit_tests.ml

package info (click to toggle)
libguestfs 1%3A1.44.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 118,932 kB
  • sloc: ansic: 458,017; ml: 51,424; sh: 13,191; java: 9,578; makefile: 7,931; cs: 6,328; haskell: 5,674; python: 3,871; perl: 3,528; erlang: 2,446; xml: 1,347; ruby: 350; pascal: 257; javascript: 157; lex: 135; yacc: 128; cpp: 10
file content (81 lines) | stat: -rw-r--r-- 3,057 bytes parent folder | download | duplicates (8)
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
(* virt-v2v
 * Copyright (C) 2011-2019 Red Hat Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *)

(* This file tests individual OCaml bindings for C utility functions. *)

open Printf

open OUnit2

open Std_utils
open C_utils

let test_drive_name ctx =
  let printer = identity in
  assert_equal ~printer "a" (drive_name 0);
  assert_equal ~printer "z" (drive_name 25);
  assert_equal ~printer "aa" (drive_name 26);
  assert_equal ~printer "ab" (drive_name 27);
  assert_equal ~printer "az" (drive_name 51);
  assert_equal ~printer "ba" (drive_name 52);
  assert_equal ~printer "zz" (drive_name 701);
  assert_equal ~printer "aaa" (drive_name 702);
  assert_equal ~printer "zzz" (drive_name 18277)

let test_drive_index ctx =
  let printer = string_of_int in
  assert_equal ~printer 0 (drive_index "a");
  assert_equal ~printer 25 (drive_index "z");
  assert_equal ~printer 26 (drive_index "aa");
  assert_equal ~printer 27 (drive_index "ab");
  assert_equal ~printer 51 (drive_index "az");
  assert_equal ~printer 52 (drive_index "ba");
  assert_equal ~printer 701 (drive_index "zz");
  assert_equal ~printer 702 (drive_index "aaa");
  assert_equal ~printer 18277 (drive_index "zzz");
  let exn = Invalid_argument "drive_index: invalid parameter" in
  assert_raises exn (fun () -> drive_index "");
  assert_raises exn (fun () -> drive_index "abc123");
  assert_raises exn (fun () -> drive_index "123");
  assert_raises exn (fun () -> drive_index "Z");
  assert_raises exn (fun () -> drive_index "aB")

let test_shell_unquote ctx =
  let printer = identity in
  assert_equal ~printer "a" (shell_unquote "a");
  assert_equal ~printer "b" (shell_unquote "'b'");
  assert_equal ~printer "c" (shell_unquote "\"c\"");
  assert_equal ~printer "dd" (shell_unquote "\"dd\"");
  assert_equal ~printer "e\\e" (shell_unquote "\"e\\\\e\"");
  assert_equal ~printer "f\\" (shell_unquote "\"f\\\\\"");
  assert_equal ~printer "\\g" (shell_unquote "\"\\\\g\"");
  assert_equal ~printer "h\\-h" (shell_unquote "\"h\\-h\"");
  assert_equal ~printer "i`" (shell_unquote "\"i\\`\"");
  assert_equal ~printer "j\"" (shell_unquote "\"j\\\"\"")

(* Suites declaration. *)
let suite =
  "C_utils" >:::
    [
      "C_utils.drive_name" >:: test_drive_name;
      "C_utils.drive_index" >:: test_drive_index;
      "C_utils.shell_unquote" >:: test_shell_unquote;
    ]

let () =
  run_test_tt_main suite