-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathounit_cmd_tests.ml
95 lines (68 loc) · 2.44 KB
/
ounit_cmd_tests.ml
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
let (//) = Filename.concat
let ((>::),
(>:::)) = OUnit.((>::),(>:::))
let (=~) = OUnit.assert_equal
(* let output_of_exec_command command args =
let readme, writeme = Unix.pipe () in
let pid = Unix.create_process command args Unix.stdin writeme Unix.stderr in
let in_chan = Unix.in_channel_of_descr readme *)
let react = {|
type u
external a : u = "react" [@@bs.module]
external b : unit -> int = "bool" [@@bs.module "react"]
let v = a
let h = b ()
|}
let foo_react = {|
type bla
external foo : bla = "foo.react" [@@bs.module]
external bar : unit -> bla = "bar" [@@bs.val] [@@bs.module "foo.react"]
let c = foo
let d = bar ()
|}
let perform_bsc = Ounit_cmd_util.perform_bsc
let bsc_eval = Ounit_cmd_util.bsc_eval
let suites =
__FILE__
>::: [
__LOC__ >:: begin fun _ ->
let v_output = perform_bsc [| "-v" |] in
OUnit.assert_bool __LOC__ ((perform_bsc [| "-h" |]).exit_code <> 0 );
OUnit.assert_bool __LOC__ (v_output.exit_code = 0);
(* Printf.printf "\n*>%s" v_output.stdout; *)
(* Printf.printf "\n*>%s" v_output.stderr ; *)
end;
__LOC__ >:: begin fun _ ->
let simple_quote =
perform_bsc [| "-bs-eval"; {|let str = "'a'" |}|] in
OUnit.assert_bool __LOC__ (simple_quote.exit_code = 0)
end;
__LOC__ >:: begin fun _ ->
let should_be_warning =
bsc_eval {|let bla4 foo x y= foo##(method1 x y [@bs]) |} in
(* debug_output should_be_warning; *)
OUnit.assert_bool __LOC__ (Ext_string.contain_substring
should_be_warning.stderr Literals.unused_attribute)
end;
__LOC__ >:: begin fun _ ->
let dedupe_require =
bsc_eval (react ^ foo_react) in
OUnit.assert_bool __LOC__ (Ext_string.non_overlap_count
dedupe_require.stdout ~sub:"require" = 2
)
end;
__LOC__ >:: begin fun _ ->
let dedupe_require =
bsc_eval react in
OUnit.assert_bool __LOC__ (Ext_string.non_overlap_count
dedupe_require.stdout ~sub:"require" = 1
)
end;
__LOC__ >:: begin fun _ ->
let dedupe_require =
bsc_eval foo_react in
OUnit.assert_bool __LOC__ (Ext_string.non_overlap_count
dedupe_require.stdout ~sub:"require" = 1
)
end
]