blob: 55f087e829c5e4cd2f32fa0a1406851ea097e685 (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
module Get_type = Qsp_checks.Get_type
module T = Qsp_syntax.T
let _position = (Lexing.dummy_pos, Lexing.dummy_pos)
let type_of : Get_type.t Alcotest.testable =
Alcotest.testable Get_type.pp Get_type.equal
let add_number () =
let actual =
Get_type.boperator _position T.Plus
(Get_type.integer _position "0")
(Get_type.integer _position "1")
in
let expected = Get_type.(Raw Integer) in
let msg = "Adding integer" in
Alcotest.(check' type_of ~msg ~expected ~actual)
let add_literal_number () =
let actual =
Get_type.boperator _position T.Plus
(Get_type.literal _position [ T.Text "2" ])
(Get_type.integer _position "1")
in
let expected = Get_type.(Raw Integer) in
let msg = "A string containing integer is considered as integer" in
Alcotest.(check' type_of ~msg ~expected ~actual)
let concat_text () =
let actual =
Get_type.boperator _position T.Plus
(Get_type.literal _position [ T.Text "a" ])
(Get_type.integer _position "1")
in
let expected = Get_type.(Raw String) in
let msg = "Concatenate" in
Alcotest.(check' type_of ~msg ~expected ~actual)
let literal_1 () =
let actual =
Get_type.literal _position [ T.Expression (Get_type.Raw Integer) ]
and expected = Get_type.(Raw NumericString) in
let msg = "" in
Alcotest.(check' type_of ~msg ~expected ~actual)
let literal_2 () =
let actual =
Get_type.literal _position
Get_type.[ T.Text "1"; T.Expression (Raw Integer) ]
and expected = Get_type.(Raw NumericString) in
let msg = "" in
Alcotest.(check' type_of ~msg ~expected ~actual)
let literal_3 () =
let actual =
Get_type.literal _position
Get_type.[ T.Text "b"; T.Expression (Raw Integer) ]
and expected = Get_type.(Raw String) in
let msg = "" in
Alcotest.(check' type_of ~msg ~expected ~actual)
let literal_4 () =
let actual =
Get_type.literal _position [ T.Expression (Get_type.Variable Integer) ]
and expected = Get_type.(Variable NumericString) in
let msg = "" in
Alcotest.(check' type_of ~msg ~expected ~actual)
let min () =
let actual = Get_type.function_ _position T.Min [] in
let expected = Get_type.(Raw Bool) in
let msg = "The function min without argument return a default value" in
Alcotest.(check' type_of ~msg ~expected ~actual);
let actual =
Get_type.function_ _position T.Min [ Get_type.literal _position [] ]
in
let expected = Get_type.(Variable NumericString) in
let msg =
"The function min with a literal will take the literal as the name of an \
array"
in
Alcotest.(check' type_of ~msg ~expected ~actual);
let actual =
Get_type.function_ _position T.Min
[ Get_type.integer _position ""; Get_type.integer _position "" ]
in
let expected = Get_type.(Raw Integer) in
let msg = "With two or more arguments, return the type of the first one" in
Alcotest.(check' type_of ~msg ~expected ~actual)
let test =
( "Type expression",
[
Alcotest.test_case "int + int" `Quick add_number;
Alcotest.test_case "'int' + int" `Quick add_literal_number;
Alcotest.test_case "str + int" `Quick concat_text;
Alcotest.test_case "<<int>>" `Quick literal_1;
Alcotest.test_case "1<<int>>" `Quick literal_2;
Alcotest.test_case "b<<int>>" `Quick literal_3;
Alcotest.test_case "<<$int>>" `Quick literal_4;
Alcotest.test_case "min" `Quick min;
] )
|