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
|
(******************************************************************************
* Core *
* *
* Copyright (C) 2008- Jane Street Holding, LLC *
* Contact: opensource@janestreet.com *
* WWW: http://www.janestreet.com/ocaml *
* *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library 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 *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
* *
******************************************************************************)
open OUnit;;
open Core.Std
module F
(M : sig
type t
include Comparable.S with type comparable = t
val one : t
val two : t
val three : t
end) : sig
val test : OUnit.test
end = struct
open M
let equal = M.(=)
let (=) = Bool.equal
let test =
let foreach f = f one; f two; f three in
"comparable" >::
(fun () ->
foreach (fun a ->
foreach (fun b ->
assert (equal (min a b) (min b a));
assert (equal (max a b) (max b a));
assert ((a < b) = (Int.(<) (compare a b) 0));
assert ((equal a b) = (Int.equal (compare a b) 0));
assert ((a > b) = (Int.(>) (compare a b) 0));
assert ((a < b) = (Int.(<) (ascending a b) 0));
assert ((equal a b) = (Int.equal (ascending a b) 0));
assert ((a > b) = (Int.(>) (ascending a b) 0));
assert ((a > b) = (Int.(<) (descending a b) 0));
assert ((equal a b) = (Int.(=) (descending a b) 0));
assert ((a < b) = (Int.(>) (descending a b) 0));
assert ((a > b) = (b < a));
assert ((a >= b) = (b <= a));
assert ((a < b) = not (a >= b));
assert ((a > b) = not (a <= b));
assert ((equal a b) = not (a <> b));
assert ((a >= b) = (a > b || equal a b));
assert ((a <= b) = (a < b || equal a b))));
assert (equal one one);
assert (equal two two);
assert (equal three three);
assert (not (one < one));
assert (one < two);
assert (one < three);
assert (not (two < one));
assert (not (two < two));
assert (two < three);
assert (not (three < one));
assert (not (three < two));
assert (not (three < three));
assert (equal (max one one) one);
assert (equal (max one two) two);
assert (equal (max one three) three);
assert (equal (max two two) two);
assert (equal (max two three) three);
assert (equal (max three three) three);
assert (equal (min one one) one);
assert (equal (min one two) one);
assert (equal (min one three) one);
assert (equal (min two two) two);
assert (equal (min two three) two);
assert (equal (min three three) three);
)
;;
end
module Float =
F (struct
include Float
let one = 1.0
let two = 2.0
let three = 3.0
end)
module String =
F (struct
include String
let one = "a"
let two = "b"
let three = "c"
end)
module Span =
F (struct
include Time.Span
let one = Span.of_sec (-1.0)
let two = zero
let three = Span.of_sec 1.0
end)
module Ofday =
F (struct
include Time.Ofday
let one = of_sec 1.
let two = of_sec 2.
let three = of_sec 3.
end)
module Date =
F (struct
include Time.Date
let one = Time.now ()
let two = Time.add one (Time.Span.of_hr 30.0)
let three = Time.add two (Time.Span.of_hr 30.0)
let one = Time.to_local_date one
let two = Time.to_local_date two
let three = Time.to_local_date three
end)
module Time =
F (struct
include Time
let one = Time.now ()
let two = Time.add one (Time.Span.of_sec 1.)
let three = Time.add two (Time.Span.of_sec 1.)
end)
module Int32 =
F (struct
include Int32
let one = Int32.one
let two = 2l
let three = 3l
end)
module Int64 =
F (struct
include Int64
let one = Int64.one
let two = 2L
let three = 3L
end)
module Nativeint =
F (struct
include Nativeint
let one = of_int 1
let two = of_int 2
let three = of_int 3
end)
module Int' =
F (struct
type t = int
include Comparable.Make (Int)
let one = 1
let two = 2
let three = 3
end)
module Int'' =
F (struct
type t = int
include
Comparable.Inherit (Int) (struct
include Int
let component x = x
end)
let one = 1
let two = 2
let three = 3
end)
module Int =
F (struct
include Int
let one = 1
let two = 2
let three = 3
end)
let lexicographic_test =
"lexicographic" >:: (fun () ->
"1 0" @? (Comparable.lexicographic [compare] 1 1 = 0);
"1 -1" @? (Comparable.lexicographic [compare] 1 2 = -1);
"1 1" @? (Comparable.lexicographic [compare] 2 1 = 1);
let cmp = Array.to_list (Array.init 3 ~f:(fun i a b ->
compare a.(i) b.(i))) in
"3 0" @? (Comparable.lexicographic cmp [|1;2;3;4|] [|1;2;3;9|] = 0);
"3 -1" @? (Comparable.lexicographic cmp [|1;2;3;4|] [|1;2;4;9|] = -1);
"3 1" @? (Comparable.lexicographic cmp [|1;2;3;4|] [|1;1;4;9|] = 1);
)
let test =
TestList
[Float.test;
String.test;
Float.test;
Span.test;
Ofday.test;
Date.test;
Time.test;
Int.test;
Int32.test;
Int64.test;
Nativeint.test;
Int'.test;
Int''.test;
lexicographic_test;
]
;;
|