2019-05-13 00:56:22 +04:00
|
|
|
open! Trace
|
|
|
|
|
2019-06-05 10:43:33 +04:00
|
|
|
type test_case = unit Alcotest.test_case
|
|
|
|
type test =
|
|
|
|
| Test_suite of (string * test list)
|
|
|
|
| Test of test_case
|
|
|
|
|
2019-06-28 16:05:04 +04:00
|
|
|
let wrap_test name f =
|
|
|
|
let result =
|
|
|
|
trace (error (thunk "running test") (thunk name)) @@
|
|
|
|
f () in
|
|
|
|
match result with
|
|
|
|
| Ok ((), annotations) -> ignore annotations; ()
|
|
|
|
| Error err ->
|
2019-09-20 20:56:55 +04:00
|
|
|
Format.printf "%a\n%!" (Ligo.Display.error_pp ~dev:true) (err ()) ;
|
2019-06-28 16:05:04 +04:00
|
|
|
raise Alcotest.Test_error
|
|
|
|
|
|
|
|
let wrap_test_raw f =
|
|
|
|
match f () with
|
|
|
|
| Trace.Ok ((), annotations) -> ignore annotations; ()
|
|
|
|
| Error err ->
|
2019-09-20 20:56:55 +04:00
|
|
|
Format.printf "%a\n%!" (Ligo.Display.error_pp ~dev:true) (err ())
|
2019-07-21 13:58:09 +04:00
|
|
|
|
2019-05-13 00:56:22 +04:00
|
|
|
let test name f =
|
2019-06-05 10:43:33 +04:00
|
|
|
Test (
|
|
|
|
Alcotest.test_case name `Quick @@ fun () ->
|
2019-06-28 16:05:04 +04:00
|
|
|
wrap_test name f
|
2019-06-05 10:43:33 +04:00
|
|
|
)
|
2019-05-13 00:56:22 +04:00
|
|
|
|
2019-06-05 10:43:33 +04:00
|
|
|
let test_suite name lst = Test_suite (name , lst)
|
2019-07-19 14:42:01 +04:00
|
|
|
|
2019-11-22 18:52:46 +04:00
|
|
|
|
|
|
|
open Ast_simplified
|
|
|
|
|
|
|
|
let pack_payload (program:Ast_typed.program) (payload:expression) : bytes result =
|
|
|
|
let%bind code =
|
|
|
|
let env = Ast_typed.program_environment program in
|
|
|
|
Compile.Of_simplified.compile_expression_as_function
|
|
|
|
~env ~state:(Typer.Solver.initial_state) payload in
|
|
|
|
let Compiler.Program.{input=_;output=(Ex_ty payload_ty);body=_} = code in
|
|
|
|
let%bind (payload: Tezos_utils.Michelson.michelson) =
|
|
|
|
Ligo.Run.Of_michelson.evaluate_michelson code in
|
|
|
|
Ligo.Run.Of_michelson.pack_payload payload payload_ty
|
|
|
|
|
|
|
|
let sign_message (program:Ast_typed.program) (payload : expression) sk : string result =
|
|
|
|
let open Tezos_crypto in
|
|
|
|
let%bind packed_payload = pack_payload program payload in
|
|
|
|
let signed_data = Signature.sign sk packed_payload in
|
|
|
|
let signature_str = Signature.to_b58check signed_data in
|
|
|
|
ok signature_str
|
|
|
|
|
2019-11-26 13:37:25 +04:00
|
|
|
let contract id =
|
|
|
|
let open Proto_alpha_utils.Memory_proto_alpha in
|
|
|
|
let id = List.nth dummy_environment.identities id in
|
|
|
|
id.implicit_contract
|
|
|
|
|
|
|
|
let addr id =
|
|
|
|
let open Proto_alpha_utils.Memory_proto_alpha in
|
|
|
|
Protocol.Alpha_context.Contract.to_b58check @@ contract id
|
|
|
|
|
|
|
|
let gen_keys = fun () ->
|
|
|
|
let open Tezos_crypto in
|
|
|
|
let (raw_pkh,raw_pk,raw_sk) = Signature.generate_key () in
|
|
|
|
(raw_pkh,raw_pk,raw_sk)
|
|
|
|
|
|
|
|
let str_keys (raw_pkh, raw_pk, raw_sk) =
|
|
|
|
let open Tezos_crypto in
|
|
|
|
let sk_str = Signature.Secret_key.to_b58check raw_sk in
|
|
|
|
let pk_str = Signature.Public_key.to_b58check raw_pk in
|
|
|
|
let pkh_str = Signature.Public_key_hash.to_b58check raw_pkh in
|
|
|
|
(pkh_str,pk_str,sk_str)
|
|
|
|
|
2019-05-13 00:56:22 +04:00
|
|
|
open Ast_simplified.Combinators
|
|
|
|
|
2019-11-05 03:01:39 +04:00
|
|
|
let expect ?options program entry_point input expecter =
|
2019-05-13 00:56:22 +04:00
|
|
|
let%bind result =
|
|
|
|
let run_error =
|
|
|
|
let title () = "expect run" in
|
|
|
|
let content () = Format.asprintf "Entry_point: %s" entry_point in
|
|
|
|
error title content in
|
|
|
|
trace run_error @@
|
2019-11-05 03:01:39 +04:00
|
|
|
Ligo.Run.Of_simplified.run_typed_program ?options program Typer.Solver.initial_state entry_point input in
|
2019-05-13 00:56:22 +04:00
|
|
|
expecter result
|
|
|
|
|
2019-07-19 14:42:01 +04:00
|
|
|
let expect_fail ?options program entry_point input =
|
|
|
|
let run_error =
|
|
|
|
let title () = "expect run" in
|
|
|
|
let content () = Format.asprintf "Entry_point: %s" entry_point in
|
|
|
|
error title content
|
|
|
|
in
|
|
|
|
trace run_error @@
|
|
|
|
Assert.assert_fail
|
2019-10-12 01:22:43 +04:00
|
|
|
@@ Ligo.Run.Of_simplified.run_typed_program ?options program Typer.Solver.initial_state entry_point input
|
2019-07-19 14:42:01 +04:00
|
|
|
|
2019-11-19 18:31:36 +04:00
|
|
|
let expect_string_failwith ?options program entry_point input expected_failwith =
|
|
|
|
let%bind err = Ligo.Run.Of_simplified.run_failwith_program
|
|
|
|
?options program Typer.Solver.initial_state entry_point input in
|
|
|
|
match err with
|
|
|
|
| Ligo.Run.Of_michelson.Failwith_string s -> Assert.assert_equal_string expected_failwith s
|
|
|
|
| _ -> simple_fail "Expected to fail with a string"
|
2019-07-19 14:42:01 +04:00
|
|
|
|
2019-11-05 03:01:39 +04:00
|
|
|
let expect_eq ?options program entry_point input expected =
|
2019-05-13 00:56:22 +04:00
|
|
|
let expecter = fun result ->
|
|
|
|
let expect_error =
|
|
|
|
let title () = "expect result" in
|
|
|
|
let content () = Format.asprintf "Expected %a, got %a"
|
2019-05-23 10:22:58 +04:00
|
|
|
Ast_simplified.PP.expression expected
|
|
|
|
Ast_simplified.PP.expression result in
|
2019-05-13 00:56:22 +04:00
|
|
|
error title content in
|
|
|
|
trace expect_error @@
|
2019-06-11 02:06:00 +04:00
|
|
|
Ast_simplified.Misc.assert_value_eq (expected , result) in
|
2019-11-05 03:01:39 +04:00
|
|
|
expect ?options program entry_point input expecter
|
2019-05-13 00:56:22 +04:00
|
|
|
|
|
|
|
let expect_evaluate program entry_point expecter =
|
|
|
|
let error =
|
|
|
|
let title () = "expect evaluate" in
|
|
|
|
let content () = Format.asprintf "Entry_point: %s" entry_point in
|
|
|
|
error title content in
|
|
|
|
trace error @@
|
2019-09-18 20:49:33 +04:00
|
|
|
let%bind result = Ligo.Run.Of_simplified.evaluate_typed_program_entry program entry_point in
|
2019-05-13 00:56:22 +04:00
|
|
|
expecter result
|
|
|
|
|
|
|
|
let expect_eq_evaluate program entry_point expected =
|
|
|
|
let expecter = fun result ->
|
2019-06-11 02:06:00 +04:00
|
|
|
Ast_simplified.Misc.assert_value_eq (expected , result) in
|
2019-05-13 00:56:22 +04:00
|
|
|
expect_evaluate program entry_point expecter
|
|
|
|
|
|
|
|
let expect_n_aux ?options lst program entry_point make_input make_expecter =
|
|
|
|
let aux n =
|
|
|
|
let input = make_input n in
|
|
|
|
let expecter = make_expecter n in
|
|
|
|
trace (simple_error ("expect_n " ^ (string_of_int n))) @@
|
|
|
|
let result = expect ?options program entry_point input expecter in
|
|
|
|
result
|
|
|
|
in
|
|
|
|
let%bind _ = bind_map_list aux lst in
|
|
|
|
ok ()
|
|
|
|
|
2019-11-19 18:36:48 +04:00
|
|
|
let expect_eq_n_trace_aux ?options lst program entry_point make_input make_expected =
|
|
|
|
let aux n =
|
|
|
|
let%bind input = make_input n in
|
|
|
|
let%bind expected = make_expected n in
|
|
|
|
trace (simple_error ("expect_eq_n " ^ (string_of_int n))) @@
|
|
|
|
let result = expect_eq ?options program entry_point input expected in
|
|
|
|
result
|
|
|
|
in
|
|
|
|
let%bind _ = bind_map_list_seq aux lst in
|
|
|
|
ok ()
|
|
|
|
|
2019-11-25 16:00:21 +04:00
|
|
|
let expect_eq_exp_trace_aux ?options explst program entry_point make_input make_expected =
|
|
|
|
let aux exp =
|
|
|
|
let%bind input = make_input exp in
|
|
|
|
let%bind expected = make_expected exp in
|
|
|
|
let pps = Format.asprintf "%a" Ast_simplified.PP.expression exp in
|
|
|
|
trace (simple_error ("expect_eq_exp " ^ pps )) @@
|
|
|
|
let result = expect_eq ?options program entry_point input expected in
|
|
|
|
result
|
|
|
|
in
|
|
|
|
let%bind _ = bind_map_list_seq aux explst in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let expect_failwith_exp_trace_aux ?options explst program entry_point make_input make_expected_failwith =
|
|
|
|
let aux exp =
|
|
|
|
let%bind input = make_input exp in
|
|
|
|
let%bind expected = make_expected_failwith exp in
|
|
|
|
let pps = Format.asprintf "%a" Ast_simplified.PP.expression exp in
|
|
|
|
trace (simple_error ("expect_eq_exp " ^ pps )) @@
|
|
|
|
let result = expect_string_failwith ?options program entry_point input expected in
|
|
|
|
result
|
|
|
|
in
|
|
|
|
let%bind _ = bind_map_list_seq aux explst in
|
|
|
|
ok ()
|
|
|
|
|
2019-11-05 03:01:39 +04:00
|
|
|
let expect_eq_n_aux ?options lst program entry_point make_input make_expected =
|
2019-05-13 00:56:22 +04:00
|
|
|
let aux n =
|
|
|
|
let input = make_input n in
|
|
|
|
let expected = make_expected n in
|
|
|
|
trace (simple_error ("expect_eq_n " ^ (string_of_int n))) @@
|
2019-11-05 03:01:39 +04:00
|
|
|
let result = expect_eq ?options program entry_point input expected in
|
2019-05-13 00:56:22 +04:00
|
|
|
result
|
|
|
|
in
|
2019-08-21 12:28:27 +04:00
|
|
|
let%bind _ = bind_map_list_seq aux lst in
|
2019-05-13 00:56:22 +04:00
|
|
|
ok ()
|
|
|
|
|
2019-11-05 03:01:39 +04:00
|
|
|
let expect_eq_n ?options = expect_eq_n_aux ?options [0 ; 1 ; 2 ; 42 ; 163 ; -1]
|
|
|
|
let expect_eq_n_pos ?options = expect_eq_n_aux ?options [0 ; 1 ; 2 ; 42 ; 163]
|
|
|
|
let expect_eq_n_strict_pos ?options = expect_eq_n_aux ?options [2 ; 42 ; 163]
|
|
|
|
let expect_eq_n_pos_small ?options = expect_eq_n_aux ?options [0 ; 1 ; 2 ; 10]
|
|
|
|
let expect_eq_n_strict_pos_small ?options = expect_eq_n_aux ?options [1 ; 2 ; 10]
|
|
|
|
let expect_eq_n_pos_mid = expect_eq_n_aux [0 ; 1 ; 2 ; 10 ; 33]
|
2019-05-13 00:56:22 +04:00
|
|
|
|
|
|
|
let expect_n_pos_small ?options = expect_n_aux ?options [0 ; 2 ; 10]
|
|
|
|
let expect_n_strict_pos_small ?options = expect_n_aux ?options [2 ; 10]
|
|
|
|
|
|
|
|
let expect_eq_b program entry_point make_expected =
|
|
|
|
let aux b =
|
2019-05-23 10:22:58 +04:00
|
|
|
let input = e_bool b in
|
2019-05-13 00:56:22 +04:00
|
|
|
let expected = make_expected b in
|
|
|
|
expect_eq program entry_point input expected
|
|
|
|
in
|
2019-08-21 12:28:27 +04:00
|
|
|
let%bind _ = bind_map_list_seq aux [false ; true] in
|
2019-05-13 00:56:22 +04:00
|
|
|
ok ()
|
|
|
|
|
|
|
|
let expect_eq_n_int a b c =
|
2019-05-23 10:22:58 +04:00
|
|
|
expect_eq_n a b e_int (fun n -> e_int (c n))
|
2019-05-13 00:56:22 +04:00
|
|
|
|
|
|
|
let expect_eq_b_bool a b c =
|
|
|
|
let open Ast_simplified.Combinators in
|
2019-05-23 10:22:58 +04:00
|
|
|
expect_eq_b a b (fun bool -> e_bool (c bool))
|
2019-06-28 16:05:04 +04:00
|
|
|
|
|
|
|
|
|
|
|
let rec test_height : test -> int = fun t ->
|
|
|
|
match t with
|
|
|
|
| Test _ -> 1
|
|
|
|
| Test_suite (_ , lst) -> (List.fold_left max 1 @@ List.map test_height lst) + 1
|
|
|
|
|
|
|
|
let extract_test : test -> test_case = fun t ->
|
|
|
|
match t with
|
|
|
|
| Test tc -> tc
|
|
|
|
| _ -> assert false
|
|
|
|
|
|
|
|
let extract_param : test -> (string * (string * test_case list) list) =
|
|
|
|
let extract_element = extract_test in
|
|
|
|
let extract_group : test -> (string * test_case list) = fun t ->
|
|
|
|
match t with
|
|
|
|
| Test tc -> ("isolated" , [ tc ])
|
|
|
|
| Test_suite (name , lst) -> (name , List.map extract_element lst) in
|
|
|
|
fun t ->
|
|
|
|
match t with
|
|
|
|
| Test tc -> ("" , [ ("isolated" , [ tc ] ) ])
|
|
|
|
| Test_suite (name , lst) -> (name , List.map extract_group lst)
|
|
|
|
|
|
|
|
let x : _ -> (unit Alcotest.test) = fun x -> x
|
|
|
|
|
|
|
|
(*
|
|
|
|
Alcotest.run parameters:
|
|
|
|
string * (string * f list) list
|
|
|
|
*)
|
|
|
|
|
|
|
|
let rec run_test ?(prefix = "") : test -> unit = fun t ->
|
|
|
|
match t with
|
|
|
|
| Test case -> Alcotest.run "isolated test" [ ("" , [ case ]) ]
|
|
|
|
| Test_suite (name , lst) -> (
|
|
|
|
if (test_height t <= 3) then (
|
|
|
|
let (name , tests) = extract_param t in
|
|
|
|
Alcotest.run (prefix ^ name) tests
|
|
|
|
) else (
|
|
|
|
List.iter (run_test ~prefix:(prefix ^ name ^ "_")) lst
|
|
|
|
)
|
|
|
|
)
|