/usr/lib/ocaml/oUnit/oUnitLogger.ml is in libounit-ocaml-dev 2.0.0-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | (**************************************************************************)
(* The OUnit library *)
(* *)
(* Copyright (C) 2002-2008 Maas-Maarten Zeeman. *)
(* Copyright (C) 2010 OCamlCore SARL *)
(* Copyright (C) 2013 Sylvain Le Gall *)
(* *)
(* The package OUnit is copyright by Maas-Maarten Zeeman, OCamlCore SARL *)
(* and Sylvain Le Gall. *)
(* *)
(* Permission is hereby granted, free of charge, to any person obtaining *)
(* a copy of this document and the OUnit software ("the Software"), to *)
(* deal in the Software without restriction, including without limitation *)
(* the rights to use, copy, modify, merge, publish, distribute, *)
(* sublicense, and/or sell copies of the Software, and to permit persons *)
(* to whom the Software is furnished to do so, subject to the following *)
(* conditions: *)
(* *)
(* The above copyright notice and this permission notice shall be *)
(* included in all copies or substantial portions of the Software. *)
(* *)
(* The Software is provided ``as is'', without warranty of any kind, *)
(* express or implied, including but not limited to the warranties of *)
(* merchantability, fitness for a particular purpose and noninfringement. *)
(* In no event shall Maas-Maarten Zeeman be liable for any claim, damages *)
(* or other liability, whether in an action of contract, tort or *)
(* otherwise, arising from, out of or in connection with the Software or *)
(* the use or other dealings in the software. *)
(* *)
(* See LICENSE.txt for details. *)
(**************************************************************************)
(*
Logger for information and various OUnit events.
*)
open OUnitUtils
(* See OUnit.mli. *)
type position =
{
filename: string;
line: int;
}
(** See OUnit.mli. *)
type log_severity = [`Error | `Warning | `Info]
(** See OUnit.mli. *)
type 'result test_event =
| EStart
| EEnd
| EResult of 'result
| ELog of log_severity * string
| ELogRaw of string
type ('path, 'result) result_full = ('path * 'result * position option)
(** Events which occur at the global level. *)
type ('path, 'result) global_event =
| GConf of string * string (** Dump a configuration options. *)
| GLog of log_severity * string
| GStart (** Start running the tests. *)
| GEnd (** Finish running the tests. *)
| GResults of (float * ('path, 'result) result_full list * int)
type ('path, 'result) log_event_t =
| GlobalEvent of ('path, 'result) global_event
| TestEvent of 'path * 'result test_event
type ('path, 'result) log_event =
{
shard: string;
timestamp: float;
event: ('path, 'result) log_event_t;
}
type ('path, 'result) logger =
{
lshard: string;
fwrite: ('path, 'result) log_event -> unit;
fpos: unit -> position option;
fclose: unit -> unit;
}
let shard_default = OUnitUtils.shardf 0
let string_of_event ev =
let spf fmt = Printf.sprintf fmt in
let string_of_log_severity =
function
| `Error -> "`Error"
| `Warning -> "`Warning"
| `Info -> "`Info"
in
match ev with
| GlobalEvent e ->
begin
match e with
| GConf (k, v) -> spf "GConf (%S, %S)" k v
| GLog (lvl, s) ->
spf "GLog (%s, %S)" (string_of_log_severity lvl) s
| GStart -> "GStart"
| GEnd -> "GEnd"
| GResults _ -> "GResults"
end
| TestEvent (path, e) ->
begin
match e with
| EStart ->
"EStart"
| EEnd ->
"EEnd"
| EResult result ->
"EResult (_)"
| ELog (lvl, str) ->
spf "ELog (%s, %S)" (string_of_log_severity lvl) str
| ELogRaw str ->
spf "ELogRaw %S" str
end
let null_logger =
{
lshard = shard_default;
fwrite = ignore;
fpos = (fun () -> None);
fclose = ignore;
}
let fun_logger fwrite fclose =
{
lshard = shard_default;
fwrite = (fun log_ev -> fwrite log_ev);
fpos = (fun () -> None);
fclose = fclose;
}
let post_logger fpost =
let data = ref [] in
let fwrite ev = data := ev :: !data in
let fclose () = fpost (List.rev !data) in
{
lshard = shard_default;
fwrite = fwrite;
fpos = (fun () -> None);
fclose = fclose;
}
let set_shard shard logger =
{logger with lshard = shard}
let report logger ev =
logger.fwrite
{
shard = logger.lshard;
timestamp = now ();
event = ev;
}
let infof logger fmt =
Printf.ksprintf
(fun str -> report logger (GlobalEvent (GLog (`Info, str))))
fmt
let warningf logger fmt =
Printf.ksprintf
(fun str -> report logger (GlobalEvent (GLog (`Warning, str))))
fmt
let errorf logger fmt =
Printf.ksprintf
(fun str -> report logger (GlobalEvent (GLog (`Error, str))))
fmt
let position logger =
logger.fpos ()
let close logger =
logger.fclose ()
let combine lst =
let rec fpos =
function
| logger :: tl ->
begin
match position logger with
| Some _ as pos ->
pos
| None ->
fpos tl
end
| [] ->
None
in
let lshard =
match lst with hd :: _ -> hd.lshard | [] -> shard_default
in
{
lshard = lshard;
fwrite =
(fun log_ev ->
List.iter
(fun logger ->
logger.fwrite log_ev) lst);
fpos = (fun () -> fpos lst);
fclose =
(fun () ->
List.iter (fun logger -> close logger) (List.rev lst));
}
module Test =
struct
type 'result t = 'result test_event -> unit
let create logger path =
fun ev ->
logger.fwrite
{
shard = logger.lshard;
timestamp = now ();
event = TestEvent (path, ev)
}
let raw_printf t fmt =
Printf.ksprintf
(fun s -> t (ELogRaw s))
fmt
let logf t lvl fmt =
Printf.ksprintf
(fun s -> t (ELog (lvl, s)))
fmt
end
|