2019-05-13 00:56:22 +04:00
|
|
|
open Trace
|
|
|
|
open Ligo
|
|
|
|
open Test_helpers
|
|
|
|
|
|
|
|
open Ast_simplified.Combinators
|
|
|
|
|
|
|
|
let mtype_file path : Ast_typed.program result =
|
|
|
|
let%bind raw = Parser.Camligo.User.parse_file path in
|
|
|
|
let%bind simpl = Simplify.Camligo.main raw in
|
|
|
|
let%bind typed = Ligo.Typer.type_program (Location.unwrap simpl) in
|
|
|
|
ok typed
|
|
|
|
|
|
|
|
let function_ () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/function.ligo" in
|
|
|
|
let make_expect = fun n -> n in
|
|
|
|
expect_eq_n_int program "main" make_expect
|
|
|
|
|
2019-05-20 20:17:26 +04:00
|
|
|
let assign () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/assign.ligo" in
|
|
|
|
let make_expect = fun n -> n + 1 in
|
|
|
|
expect_eq_n_int program "main" make_expect
|
|
|
|
|
2019-05-13 00:56:22 +04:00
|
|
|
let annotation () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/annotation.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
expect_eq_evaluate program "lst" (e_a_list [])
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
expect_eq_evaluate program "address" (e_a_address "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
expect_eq_evaluate program "address_2" (e_a_address "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let complex_function () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/function-complex.ligo" in
|
|
|
|
let make_expect = fun n -> (3 * n + 2) in
|
|
|
|
expect_eq_n_int program "main" make_expect
|
|
|
|
|
|
|
|
let variant () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/variant.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
let expected = e_a_constructor "Foo" (e_a_int 42) in
|
|
|
|
expect_eq_evaluate program "foo" expected in
|
|
|
|
let%bind () =
|
|
|
|
let expected = e_a_constructor "Bar" (e_a_bool true) in
|
|
|
|
expect_eq_evaluate program "bar" expected in
|
|
|
|
let%bind () =
|
|
|
|
let expected = e_a_constructor "Kee" (e_a_nat 23) in
|
|
|
|
expect_eq_evaluate program "kee" expected in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let variant_matching () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/variant-matching.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> e_a_constructor "Foo" (e_a_int n) in
|
|
|
|
let make_expected = e_a_int in
|
|
|
|
expect_eq program "fb" (make_input 0) (make_expected 0) >>? fun () ->
|
|
|
|
expect_eq_n program "fb" make_input make_expected >>? fun () ->
|
|
|
|
expect_eq program "fb" (e_a_constructor "Kee" (e_a_nat 50)) (e_a_int 23) >>? fun () ->
|
|
|
|
expect_eq program "fb" (e_a_constructor "Bar" (e_a_bool true)) (e_a_int 42) >>? fun () ->
|
|
|
|
ok ()
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let closure () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/closure.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
let make_expect = fun n -> (2 * n) in
|
|
|
|
expect_eq_n_int program "foo" make_expect
|
|
|
|
in
|
|
|
|
let%bind _ =
|
|
|
|
let make_expect = fun n -> (4 * n) in
|
|
|
|
expect_eq_n_int program "toto" make_expect
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let shadow () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/shadow.ligo" in
|
|
|
|
let make_expect = fun _ -> 0 in
|
|
|
|
expect_eq_n_int program "foo" make_expect
|
|
|
|
|
|
|
|
let higher_order () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/high-order.ligo" in
|
|
|
|
let make_expect = fun n -> n in
|
|
|
|
expect_eq_n_int program "foobar" make_expect
|
|
|
|
|
|
|
|
let shared_function () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/function-shared.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
let make_expect = fun n -> (n + 1) in
|
|
|
|
expect_eq_n_int program "inc" make_expect
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_expect = fun n -> (n + 2) in
|
|
|
|
expect_eq_n_int program "double_inc" make_expect
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_expect = fun n -> (2 * n + 3) in
|
|
|
|
expect_eq program "foo" (e_a_int 0) (e_a_int @@ make_expect 0)
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_expect = fun n -> (2 * n + 3) in
|
|
|
|
expect_eq_n_int program "foo" make_expect
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let bool_expression () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/boolean_operators.ligo" in
|
|
|
|
let%bind _ =
|
|
|
|
let aux (name , f) = expect_eq_b_bool program name f in
|
|
|
|
bind_map_list aux [
|
|
|
|
("or_true", fun b -> b || true) ;
|
|
|
|
("or_false", fun b -> b || false) ;
|
|
|
|
("and_true", fun b -> b && true) ;
|
|
|
|
("and_false", fun b -> b && false) ;
|
|
|
|
] in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let arithmetic () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/arithmetic.ligo" in
|
|
|
|
let%bind _ =
|
|
|
|
let aux (name , f) = expect_eq_n_int program name f in
|
|
|
|
bind_map_list aux [
|
|
|
|
("plus_op", fun n -> (n + 42)) ;
|
|
|
|
("minus_op", fun n -> (n - 42)) ;
|
|
|
|
("times_op", fun n -> (n * 42)) ;
|
|
|
|
(* ("div_op", fun n -> (n / 2)) ; *)
|
|
|
|
] in
|
|
|
|
let%bind () = expect_eq_n_pos program "int_op" e_a_nat e_a_int in
|
|
|
|
let%bind () = expect_eq_n_pos program "mod_op" e_a_int (fun n -> e_a_nat (n mod 42)) in
|
|
|
|
let%bind () = expect_eq_n_pos program "div_op" e_a_int (fun n -> e_a_int (n / 2)) in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let unit_expression () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/unit.ligo" in
|
|
|
|
expect_eq_evaluate program "u" e_a_unit
|
|
|
|
|
|
|
|
let string_expression () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/string.ligo" in
|
|
|
|
expect_eq_evaluate program "s" (e_a_string "toto")
|
|
|
|
|
|
|
|
let include_ () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/includer.ligo" in
|
|
|
|
expect_eq_evaluate program "bar" (e_a_int 144)
|
|
|
|
|
|
|
|
let record_ez_int names n =
|
|
|
|
ez_e_a_record @@ List.map (fun x -> x, e_a_int n) names
|
|
|
|
|
|
|
|
let multiple_parameters () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/multiple-parameters.ligo" in
|
|
|
|
let aux ((name : string) , make_input , make_output) =
|
|
|
|
let make_output' = fun n -> e_a_int @@ make_output n in
|
|
|
|
expect_eq_n program name make_input make_output'
|
|
|
|
in
|
|
|
|
let%bind _ = bind_list @@ List.map aux [
|
|
|
|
("ab", record_ez_int ["a";"b"], fun n -> 2 * n) ;
|
|
|
|
("abcd", record_ez_int ["a";"b";"c";"d"], fun n -> 4 * n + 2) ;
|
|
|
|
("abcde", record_ez_int ["a";"b";"c";"d";"e"], fun n -> 2 * n + 3) ;
|
|
|
|
] in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let record () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/record.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
let expected = record_ez_int ["foo" ; "bar"] 0 in
|
|
|
|
expect_eq_evaluate program "fb" expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let%bind () = expect_eq_evaluate program "a" (e_a_int 42) in
|
|
|
|
let%bind () = expect_eq_evaluate program "b" (e_a_int 142) in
|
|
|
|
let%bind () = expect_eq_evaluate program "c" (e_a_int 242) in
|
|
|
|
ok ()
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = record_ez_int ["foo" ; "bar"] in
|
|
|
|
let make_expected = fun n -> e_a_int (2 * n) in
|
|
|
|
expect_eq_n program "projection" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = record_ez_int ["foo" ; "bar"] in
|
|
|
|
let make_expected = fun n -> ez_e_a_record [("foo" , e_a_int 256) ; ("bar" , e_a_int n) ] in
|
|
|
|
expect_eq_n program "modify" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = record_ez_int ["a" ; "b" ; "c"] in
|
|
|
|
let make_expected = fun n -> ez_e_a_record [
|
|
|
|
("a" , e_a_int n) ;
|
|
|
|
("b" , e_a_int 2048) ;
|
|
|
|
("c" , e_a_int n)
|
|
|
|
] in
|
|
|
|
expect_eq_n program "modify_abc" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let expected = record_ez_int ["a";"b";"c";"d";"e"] 23 in
|
|
|
|
expect_eq_evaluate program "br" expected
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let tuple () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/tuple.ligo" in
|
|
|
|
let ez n =
|
|
|
|
e_a_tuple (List.map e_a_int n) in
|
|
|
|
let%bind () =
|
|
|
|
let expected = ez [0 ; 0] in
|
|
|
|
expect_eq_evaluate program "fb" expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> ez [n ; n] in
|
|
|
|
let make_expected = fun n -> e_a_int (2 * n) in
|
|
|
|
expect_eq_n program "projection" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> ez [n ; 2 * n ; n] in
|
|
|
|
let make_expected = fun n -> e_a_int (2 * n) in
|
|
|
|
expect_eq_n program "projection_abc" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> ez [n ; n ; n] in
|
|
|
|
let make_expected = fun n -> ez [n ; 2048 ; n] in
|
|
|
|
expect_eq program "modify_abc" (make_input 12) (make_expected 12)
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> ez [n ; n ; n] in
|
|
|
|
let make_expected = fun n -> ez [n ; 2048 ; n] in
|
|
|
|
expect_eq_n program "modify_abc" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let expected = ez [23 ; 23 ; 23 ; 23 ; 23] in
|
|
|
|
expect_eq_evaluate program "br" expected
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let option () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/option.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
let expected = e_a_some (e_a_int 42) in
|
|
|
|
expect_eq_evaluate program "s" expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let expected = e_a_typed_none t_int in
|
|
|
|
expect_eq_evaluate program "n" expected
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let map () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/map.ligo" in
|
|
|
|
let ez lst =
|
|
|
|
let open Ast_simplified.Combinators in
|
|
|
|
let lst' = List.map (fun (x, y) -> e_a_int x, e_a_int y) lst in
|
|
|
|
e_a_map lst' t_int t_int
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> ez [(23, n) ; (42, 4)] in
|
|
|
|
let make_expected = e_a_int in
|
|
|
|
expect_eq_n program "gf" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> ez List.(map (fun x -> (x, x)) @@ range n) in
|
|
|
|
let make_expected = e_a_nat in
|
|
|
|
expect_eq_n_strict_pos_small program "size_" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let expected = ez [(23, 0) ; (42, 0)] in
|
|
|
|
expect_eq_evaluate program "fb" expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n ->
|
|
|
|
let m = ez [(23 , 0) ; (42 , 0)] in
|
|
|
|
e_a_tuple [(e_a_int n) ; m]
|
|
|
|
in
|
|
|
|
let make_expected = fun n -> ez [(23 , n) ; (42 , 0)] in
|
|
|
|
expect_eq_n_pos_small program "set_" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> ez [(23, n) ; (42, 4)] in
|
|
|
|
let make_expected = fun _ -> e_a_some @@ e_a_int 4 in
|
|
|
|
expect_eq_n program "get" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let expected = ez @@ List.map (fun x -> (x, 23)) [144 ; 51 ; 42 ; 120 ; 421] in
|
|
|
|
expect_eq_evaluate program "bm" expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let input = ez [(23, 23) ; (42, 42)] in
|
|
|
|
let expected = ez [23, 23] in
|
|
|
|
expect_eq program "rm" input expected
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let list () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/list.ligo" in
|
|
|
|
let ez lst =
|
|
|
|
let lst' = List.map e_a_int lst in
|
|
|
|
e_a_typed_list lst' t_int
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n -> (ez @@ List.range n) in
|
|
|
|
let make_expected = e_a_nat in
|
|
|
|
expect_eq_n_strict_pos_small program "size_" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let expected = ez [23 ; 42] in
|
|
|
|
expect_eq_evaluate program "fb" expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let expected = ez [144 ; 51 ; 42 ; 120 ; 421] in
|
|
|
|
expect_eq_evaluate program "bl" expected
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let condition () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/condition.ligo" in
|
|
|
|
let make_input = e_a_int in
|
|
|
|
let make_expected = fun n -> e_a_int (if n = 2 then 42 else 0) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
2019-05-20 20:17:26 +04:00
|
|
|
let condition_simple () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/condition-simple.ligo" in
|
|
|
|
let make_input = e_a_int in
|
|
|
|
let make_expected = fun _ -> e_a_int 42 in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
2019-05-13 00:56:22 +04:00
|
|
|
let loop () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/loop.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = e_a_nat in
|
|
|
|
let make_expected = e_a_nat in
|
|
|
|
expect_eq_n_pos program "dummy" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = e_a_nat in
|
|
|
|
let make_expected = e_a_nat in
|
|
|
|
expect_eq_n_pos_mid program "counter" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = e_a_nat in
|
|
|
|
let make_expected = fun n -> e_a_nat (n * (n + 1) / 2) in
|
|
|
|
expect_eq_n_pos_mid program "sum" make_input make_expected
|
|
|
|
in
|
|
|
|
ok()
|
|
|
|
|
|
|
|
|
|
|
|
let matching () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/match.ligo" in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = e_a_int in
|
|
|
|
let make_expected = fun n -> e_a_int (if n = 2 then 42 else 0) in
|
|
|
|
expect_eq_n program "match_bool" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = e_a_int in
|
|
|
|
let make_expected = fun n-> e_a_int (if n = 2 then 42 else 0) in
|
|
|
|
expect_eq_n program "match_expr_bool" make_input make_expected
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let aux n =
|
|
|
|
let input = match n with
|
|
|
|
| Some s -> e_a_some (e_a_int s)
|
|
|
|
| None -> e_a_typed_none t_int in
|
|
|
|
let expected = e_a_int (match n with
|
|
|
|
| Some s -> s
|
|
|
|
| None -> 23) in
|
|
|
|
trace (simple_error (Format.asprintf "on input %a" PP_helpers.(option int) n)) @@
|
|
|
|
expect_eq program "match_option" input expected
|
|
|
|
in
|
|
|
|
bind_iter_list aux
|
|
|
|
[Some 0 ; Some 2 ; Some 42 ; Some 163 ; Some (-1) ; None]
|
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let aux n =
|
|
|
|
let input = match n with
|
|
|
|
| Some s -> e_a_some (e_a_int s)
|
|
|
|
| None -> e_a_typed_none t_int in
|
|
|
|
let expected = e_a_int (match n with
|
|
|
|
| Some s -> s
|
|
|
|
| None -> 42) in
|
|
|
|
trace (simple_error (Format.asprintf "on input %a" PP_helpers.(option int) n)) @@
|
|
|
|
expect_eq program "match_expr_option" input expected
|
|
|
|
in
|
|
|
|
bind_iter_list aux
|
|
|
|
[Some 0 ; Some 2 ; Some 42 ; Some 163 ; Some (-1) ; None]
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let declarations () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/declarations.ligo" in
|
|
|
|
let make_input = e_a_int in
|
|
|
|
let make_expected = fun n -> e_a_int (42 + n) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
2019-05-20 20:17:26 +04:00
|
|
|
let declaration_local () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/declaration-local.ligo" in
|
|
|
|
let make_input = e_a_int in
|
|
|
|
let make_expected = fun _ -> e_a_int 42 in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
2019-05-13 00:56:22 +04:00
|
|
|
let quote_declaration () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/quote-declaration.ligo" in
|
|
|
|
let make_input = e_a_int in
|
|
|
|
let make_expected = fun n -> e_a_int (42 + 2 * n) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
|
|
|
let quote_declarations () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/quote-declarations.ligo" in
|
|
|
|
let make_input = e_a_int in
|
|
|
|
let make_expected = fun n -> e_a_int (74 + 2 * n) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
|
|
|
let counter_contract () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/counter.ligo" in
|
|
|
|
let make_input = fun n-> e_a_pair (e_a_int n) (e_a_int 42) in
|
|
|
|
let make_expected = fun n -> e_a_pair (e_a_typed_list [] t_operation) (e_a_int (42 + n)) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
|
|
|
let super_counter_contract () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/super-counter.ligo" in
|
|
|
|
let make_input = fun n ->
|
|
|
|
let action = if n mod 2 = 0 then "Increment" else "Decrement" in
|
|
|
|
e_a_pair (e_a_constructor action (e_a_int n)) (e_a_int 42) in
|
|
|
|
let make_expected = fun n ->
|
|
|
|
let op = if n mod 2 = 0 then (+) else (-) in
|
|
|
|
e_a_pair (e_a_typed_list [] t_operation) (e_a_int (op 42 n)) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
|
|
|
let dispatch_counter_contract () : unit result =
|
|
|
|
let%bind program = type_file "./contracts/dispatch-counter.ligo" in
|
|
|
|
let make_input = fun n ->
|
|
|
|
let action = if n mod 2 = 0 then "Increment" else "Decrement" in
|
|
|
|
e_a_pair (e_a_constructor action (e_a_int n)) (e_a_int 42) in
|
|
|
|
let make_expected = fun n ->
|
|
|
|
let op = if n mod 2 = 0 then (+) else (-) in
|
|
|
|
e_a_pair (e_a_typed_list [] t_operation) (e_a_int (op 42 n)) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
|
|
|
let basic_mligo () : unit result =
|
|
|
|
let%bind typed = mtype_file "./contracts/basic.mligo" in
|
|
|
|
let%bind result = Ligo.easy_evaluate_typed "foo" typed in
|
|
|
|
Ligo.AST_Typed.assert_value_eq (Ligo.AST_Typed.Combinators.e_a_empty_int (42 + 127), result)
|
|
|
|
|
|
|
|
let counter_mligo () : unit result =
|
|
|
|
let%bind program = mtype_file "./contracts/counter.mligo" in
|
|
|
|
let make_input = fun n-> e_a_pair (e_a_int n) (e_a_int 42) in
|
|
|
|
let make_expected = fun n -> e_a_pair (e_a_typed_list [] t_operation) (e_a_int (42 + n)) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
|
|
|
let guess_the_hash_mligo () : unit result =
|
|
|
|
let%bind program = mtype_file "./contracts/new-syntax.mligo" in
|
|
|
|
let make_input = fun n-> e_a_pair (e_a_int n) (e_a_int 42) in
|
|
|
|
let make_expected = fun n -> e_a_pair (e_a_typed_list [] t_operation) (e_a_int (42 + n)) in
|
|
|
|
expect_eq_n program "main" make_input make_expected
|
|
|
|
|
|
|
|
let main = "Integration (End to End)", [
|
|
|
|
test "function" function_ ;
|
2019-05-20 20:17:26 +04:00
|
|
|
test "assign" assign ;
|
|
|
|
test "declaration local" declaration_local ;
|
2019-05-13 00:56:22 +04:00
|
|
|
test "complex function" complex_function ;
|
|
|
|
test "variant" variant ;
|
|
|
|
test "variant matching" variant_matching ;
|
|
|
|
test "tuple" tuple ;
|
|
|
|
test "record" record ;
|
2019-05-20 20:17:26 +04:00
|
|
|
test "condition simple" condition_simple ;
|
2019-05-13 00:56:22 +04:00
|
|
|
test "condition" condition ;
|
|
|
|
test "shadow" shadow ;
|
|
|
|
test "annotation" annotation ;
|
|
|
|
test "multiple parameters" multiple_parameters ;
|
|
|
|
test "bool" bool_expression ;
|
|
|
|
test "arithmetic" arithmetic ;
|
|
|
|
test "unit" unit_expression ;
|
|
|
|
test "string" string_expression ;
|
|
|
|
test "option" option ;
|
|
|
|
test "map" map ;
|
|
|
|
test "list" list ;
|
|
|
|
test "loop" loop ;
|
|
|
|
test "matching" matching ;
|
|
|
|
test "declarations" declarations ;
|
|
|
|
test "quote declaration" quote_declaration ;
|
|
|
|
test "quote declarations" quote_declarations ;
|
|
|
|
test "#include directives" include_ ;
|
|
|
|
test "counter contract" counter_contract ;
|
|
|
|
test "super counter contract" super_counter_contract ;
|
|
|
|
test "dispatch counter contract" dispatch_counter_contract ;
|
|
|
|
test "closure" closure ;
|
|
|
|
test "shared function" shared_function ;
|
|
|
|
test "higher order" higher_order ;
|
|
|
|
test "basic mligo" basic_mligo ;
|
|
|
|
test "counter contract mligo" counter_mligo ;
|
|
|
|
(* test "guess the hash mligo" guess_the_hash_mligo ; *)
|
|
|
|
]
|