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
|
(* Utilities for OCaml tools in libguestfs.
* 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 the Std_utils module. *)
open Printf
open OUnit2
open Std_utils
(* Utils. *)
let assert_equal_string = assert_equal ~printer:(fun x -> x)
let assert_equal_int = assert_equal ~printer:(fun x -> string_of_int x)
let assert_equal_int64 = assert_equal ~printer:(fun x -> Int64.to_string x)
let assert_equal_stringlist = assert_equal ~printer:(fun x -> "(" ^ (String.escaped (String.concat "," x)) ^ ")")
let assert_equal_stringpair = assert_equal ~printer:(fun (x, y) -> sprintf "%S, %S" x y)
let assert_nonempty_string str =
if str = "" then
assert_failure (sprintf "Expected empty string, got '%s'" str)
let assert_raises_executable_not_found exe =
assert_raises (Executable_not_found exe) (fun () -> which exe)
(* Test Std_utils.int_of_X and Std_utils.X_of_int byte swapping
* functions.
*)
let rec test_byteswap ctx =
test_swap int_of_le16 le16_of_int 0x2040L "\x40\x20";
test_swap int_of_le32 le32_of_int 0x20406080L "\x80\x60\x40\x20";
test_swap int_of_le64 le64_of_int
0x20406080A0C0E0F0L "\xF0\xE0\xC0\xA0\x80\x60\x40\x20";
test_swap int_of_be16 be16_of_int 0x2040L "\x20\x40";
test_swap int_of_be32 be32_of_int 0x20406080L "\x20\x40\x60\x80";
test_swap int_of_be64 be64_of_int
0x20406080A0C0E0F0L "\x20\x40\x60\x80\xA0\xC0\xE0\xF0"
and test_swap int_of_x x_of_int i s =
assert_equal_int64 i (int_of_x s);
assert_equal_string s (x_of_int i)
(* Test Std_utils.Char.mem. *)
let test_char_mem ctx =
assert_bool "Char.mem" (Char.mem 'a' "abc");
assert_bool "Char.mem" (Char.mem 'b' "abc");
assert_bool "Char.mem" (Char.mem 'c' "abc");
assert_bool "Char.mem" (not (Char.mem 'd' "abc"));
assert_bool "Char.mem" (not (Char.mem 'a' ""))
(* Test Std_utils.String.is_prefix. *)
let test_string_is_prefix ctx =
assert_bool "String.is_prefix,," (String.is_prefix "" "");
assert_bool "String.is_prefix,foo," (String.is_prefix "foo" "");
assert_bool "String.is_prefix,foo,foo" (String.is_prefix "foo" "foo");
assert_bool "String.is_prefix,foo123,foo" (String.is_prefix "foo123" "foo");
assert_bool "not (String.is_prefix,,foo" (not (String.is_prefix "" "foo"))
(* Test Std_utils.String.is_suffix. *)
let test_string_is_suffix ctx =
assert_bool "String.is_suffix,," (String.is_suffix "" "");
assert_bool "String.is_suffix,foo," (String.is_suffix "foo" "");
assert_bool "String.is_suffix,foo,foo" (String.is_suffix "foo" "foo");
assert_bool "String.is_suffix,123foo,foo" (String.is_suffix "123foo" "foo");
assert_bool "not String.is_suffix,,foo" (not (String.is_suffix "" "foo"))
(* Test Std_utils.String.find. *)
let test_string_find ctx =
assert_equal_int 0 (String.find "" "");
assert_equal_int 0 (String.find "foo" "");
assert_equal_int 1 (String.find "foo" "o");
assert_equal_int 3 (String.find "foobar" "bar");
assert_equal_int (-1) (String.find "" "baz");
assert_equal_int (-1) (String.find "foobar" "baz")
(* Test Std_utils.String.split. *)
let test_string_split ctx =
assert_equal_stringpair ("a", "b") (String.split " " "a b");
assert_equal_stringpair ("", "ab") (String.split " " " ab");
assert_equal_stringpair ("", "abc") (String.split "" "abc");
assert_equal_stringpair ("abc", "") (String.split " " "abc");
assert_equal_stringpair ("", "") (String.split " " "")
(* Test Std_utils.String.nsplit. *)
let test_string_nsplit ctx =
(* XXX Not clear if the next test case indicates an error in
* String.nsplit. However this is how it has historically worked.
*)
assert_equal_stringlist [""] (String.nsplit " " "");
assert_equal_stringlist ["abc"] (String.nsplit " " "abc");
assert_equal_stringlist ["a"; "b"; "c"] (String.nsplit " " "a b c");
assert_equal_stringlist ["a"; "b"; "c"; ""] (String.nsplit " " "a b c ");
assert_equal_stringlist [""; "a"; "b"; "c"] (String.nsplit " " " a b c");
assert_equal_stringlist [""; "a"; "b"; "c"; ""] (String.nsplit " " " a b c ");
assert_equal_stringlist ["a b c d"] (String.nsplit ~max:1 " " "a b c d");
assert_equal_stringlist ["a"; "b c d"] (String.nsplit ~max:2 " " "a b c d");
assert_equal_stringlist ["a"; "b"; "c d"] (String.nsplit ~max:3 " " "a b c d");
assert_equal_stringlist ["a"; "b"; "c"; "d"] (String.nsplit ~max:10 " " "a b c d")
(* Test Std_utils.String.lines_split. *)
let test_string_lines_split ctx =
assert_equal_stringlist [""] (String.lines_split "");
assert_equal_stringlist ["A"] (String.lines_split "A");
assert_equal_stringlist ["A"; ""] (String.lines_split "A\n");
assert_equal_stringlist ["A"; "B"] (String.lines_split "A\nB");
assert_equal_stringlist ["A"; "B"; "C"] (String.lines_split "A\nB\nC");
assert_equal_stringlist ["A"; "B"; "C"; "D"] (String.lines_split "A\nB\nC\nD");
assert_equal_stringlist ["A\n"] (String.lines_split "A\\");
assert_equal_stringlist ["A\nB"] (String.lines_split "A\\\nB");
assert_equal_stringlist ["A"; "B\nC"] (String.lines_split "A\nB\\\nC");
assert_equal_stringlist ["A"; "B\nC"; "D"] (String.lines_split "A\nB\\\nC\nD");
assert_equal_stringlist ["A"; "B\nC\nD"] (String.lines_split "A\nB\\\nC\\\nD");
assert_equal_stringlist ["A\nB"; ""] (String.lines_split "A\\\nB\n");
assert_equal_stringlist ["A\nB\n"] (String.lines_split "A\\\nB\\\n")
(* Test Std_utils.String.span and cspan. *)
let test_string_span ctx =
assert_equal_int 3 (String.span "aaabb" "a");
assert_equal_int 3 (String.span "aaaba" "a");
assert_equal_int 3 (String.span "aba" "ab");
assert_equal_int 0 (String.span "" "ab");
assert_equal_int 3 (String.cspan "defab" "ab");
assert_equal_int 3 (String.cspan "defba" "ab");
assert_equal_int 3 (String.cspan "def" "ab");
assert_equal_int 0 (String.cspan "" "ab")
(* Test Std_utils.String.chomp. *)
let test_string_chomp ctx =
assert_equal_string "a" (String.chomp "a");
assert_equal_string "a" (String.chomp "a\n");
assert_equal_string "a\nb" (String.chomp "a\nb");
assert_equal_string "" (String.chomp "");
assert_equal_string "" (String.chomp "\n");
assert_equal_string "\n" (String.chomp "\n\n") (* only removes one *)
(* Test Std_utils.which. *)
let test_which ctx =
assert_nonempty_string (which "true");
assert_raises_executable_not_found "this-command-does-not-really-exist";
begin
let exe_name = "true" in
let exe = which exe_name in
assert_equal_string exe (which exe);
with_bracket_chdir ctx (Filename.dirname exe) (
fun ctx ->
let exe_relative = "./" ^ exe_name in
assert_equal_string exe_relative (which exe_relative)
)
end;
()
(* Suites declaration. *)
let suite =
"mllib Std_utils" >:::
[
"numeric.byteswap" >:: test_byteswap;
"char.mem" >:: test_char_mem;
"strings.is_prefix" >:: test_string_is_prefix;
"strings.is_suffix" >:: test_string_is_suffix;
"strings.find" >:: test_string_find;
"strings.split" >:: test_string_split;
"strings.nsplit" >:: test_string_nsplit;
"strings.lines_split" >:: test_string_lines_split;
"strings.span" >:: test_string_span;
"strings.chomp" >:: test_string_chomp;
"which" >:: test_which;
]
let () =
run_test_tt_main suite
|