blob: 17e48cc985497314181006bf36e162ad3a82e6b8 (
plain)
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
|
(** Migration from OUnit to Alcotest *)
let ( >:: ) : string -> (unit -> unit) -> unit Alcotest.test_case =
fun name test -> Alcotest.test_case name `Quick test
let ( >::: ) : string -> unit Alcotest.test_case list -> unit Alcotest.test =
fun test_name tests -> (test_name, tests)
let make_test :
(module Alcotest.TESTABLE with type t = 't) -> 't Alcotest.testable =
fun (type t) (module T : Alcotest.TESTABLE with type t = t) ->
Alcotest.testable T.pp T.equal
(** Create a testable for SQLite data type *)
let sql_testable =
make_test
(module struct
type t = Sqlite3.Data.t =
| NONE
| NULL
| INT of int64
| FLOAT of float
| TEXT of string
| BLOB of string
[@@deriving show, eq]
end)
let csv_data_type_testable =
make_test
(module struct
type t = ImportDataTypes.Value.t =
| Null
| Error of string
| Content of string
| Integer of int
| Float of float
[@@deriving show, eq]
end)
let csv_result = Alcotest.(list @@ array @@ csv_data_type_testable)
let data_type_testable = make_test (module ImportDataTypes.Types)
let extern_testable = make_test (module ImporterSyntax.Extern)
let table_testable = make_test (module ImportDataTypes.Table)
let int_container_testable = make_test (module ImportContainers.IntSet)
let expression_testable =
make_test
(module struct
type t = ImportDataTypes.Path.t ImportExpression.T.t [@@deriving show, eq]
end)
let dep_key_testable =
make_test
(module struct
type t = ImportAnalyser.Dependency.key [@@deriving show, eq]
end)
let chunk =
make_test
(module struct
type t = ImportAnalyser.Chunk.t
let pp formater t =
Format.fprintf formater "%s" (Buffer.contents t.ImportAnalyser.Chunk.b)
let equal t1 t2 =
let to_string t = Buffer.contents t.ImportAnalyser.Chunk.b in
String.equal (to_string t1) (to_string t2)
end)
let syntax =
make_test
(module struct
type t = ImporterSyntax.t
let pp format t =
Format.fprintf format "%s"
(Otoml.Printer.to_string (ImporterSyntax.repr t))
let equal t1 t2 = t1 = t2
end)
|