2019-05-12 20:56:22 +00:00
|
|
|
(* Copyright Coase, Inc 2019 *)
|
|
|
|
|
|
|
|
open Trace
|
|
|
|
open Test_helpers
|
2020-06-12 13:33:14 +02:00
|
|
|
open Main_errors
|
2019-05-12 20:56:22 +00:00
|
|
|
|
2019-11-29 21:22:56 +00:00
|
|
|
let type_file f =
|
2020-03-16 14:28:05 +01:00
|
|
|
let%bind typed,state = Ligo.Compile.Utils.type_file f "pascaligo" (Contract "main") in
|
2019-11-29 21:22:56 +00:00
|
|
|
ok @@ (typed,state)
|
2019-05-31 19:56:51 +00:00
|
|
|
|
2019-05-12 20:56:22 +00:00
|
|
|
let get_program =
|
|
|
|
let s = ref None in
|
|
|
|
fun () -> match !s with
|
|
|
|
| Some s -> ok s
|
|
|
|
| None -> (
|
2019-10-11 17:22:43 -04:00
|
|
|
let%bind (program , state) = type_file "./contracts/coase.ligo" in
|
2020-05-29 20:37:11 +02:00
|
|
|
s := Some (program , state) ;
|
|
|
|
ok (program , state)
|
2019-05-12 20:56:22 +00:00
|
|
|
)
|
|
|
|
|
2019-12-06 15:10:37 +01:00
|
|
|
let compile_main () =
|
2020-05-29 20:37:11 +02:00
|
|
|
let%bind (typed_prg, state) = get_program () in
|
|
|
|
let () = Typer.Solver.discard_state state in
|
|
|
|
let%bind mini_c_prg = Ligo.Compile.Of_typed.compile typed_prg in
|
|
|
|
let%bind michelson_prg = Ligo.Compile.Of_mini_c.aggregate_and_compile_contract mini_c_prg "main" in
|
2019-12-09 19:51:10 +01:00
|
|
|
let%bind (_contract: Tezos_utils.Michelson.michelson) =
|
|
|
|
(* fails if the given entry point is not a valid contract *)
|
2019-12-18 16:34:29 +01:00
|
|
|
Ligo.Compile.Of_michelson.build_contract michelson_prg in
|
2019-12-06 15:10:37 +01:00
|
|
|
ok ()
|
|
|
|
|
2020-03-17 16:04:27 +01:00
|
|
|
open Ast_imperative
|
2019-05-12 20:56:22 +00:00
|
|
|
|
|
|
|
let card owner =
|
2019-12-04 18:30:52 +01:00
|
|
|
e_record_ez [
|
2019-05-12 20:56:22 +00:00
|
|
|
("card_owner" , owner) ;
|
2019-05-23 06:22:58 +00:00
|
|
|
("card_pattern" , e_nat 0) ;
|
2019-05-12 20:56:22 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
let card_ty = t_record_ez [
|
2020-04-09 18:19:22 +02:00
|
|
|
("card_owner" , t_address ()) ;
|
|
|
|
("card_pattern" , t_nat ()) ;
|
2019-05-12 20:56:22 +00:00
|
|
|
]
|
|
|
|
|
2019-05-23 06:22:58 +00:00
|
|
|
let card_ez owner = card (e_address owner)
|
2019-05-12 20:56:22 +00:00
|
|
|
|
|
|
|
let make_cards assoc_lst =
|
2020-04-09 18:19:22 +02:00
|
|
|
let card_id_ty = t_nat () in
|
2019-05-28 16:34:53 +00:00
|
|
|
e_typed_map assoc_lst card_id_ty card_ty
|
2019-05-12 20:56:22 +00:00
|
|
|
|
|
|
|
let card_pattern (coeff , qtt) =
|
2019-12-04 18:30:52 +01:00
|
|
|
e_record_ez [
|
2019-05-12 20:56:22 +00:00
|
|
|
("coefficient" , coeff) ;
|
|
|
|
("quantity" , qtt) ;
|
|
|
|
]
|
|
|
|
|
|
|
|
let card_pattern_ty =
|
|
|
|
t_record_ez [
|
2020-04-09 18:19:22 +02:00
|
|
|
("coefficient" , t_tez ()) ;
|
|
|
|
("quantity" , t_nat ()) ;
|
2019-05-12 20:56:22 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
let card_pattern_ez (coeff , qtt) =
|
2019-09-24 14:29:18 +02:00
|
|
|
card_pattern (e_mutez coeff , e_nat qtt)
|
2019-05-12 20:56:22 +00:00
|
|
|
|
|
|
|
let make_card_patterns lst =
|
2020-04-09 18:19:22 +02:00
|
|
|
let card_pattern_id_ty = t_nat () in
|
2019-05-23 06:22:58 +00:00
|
|
|
let assoc_lst = List.mapi (fun i x -> (e_nat i , x)) lst in
|
2019-05-28 16:34:53 +00:00
|
|
|
e_typed_map assoc_lst card_pattern_id_ty card_pattern_ty
|
2019-05-12 20:56:22 +00:00
|
|
|
|
|
|
|
let storage cards_patterns cards next_id =
|
2019-12-04 18:30:52 +01:00
|
|
|
e_record_ez [
|
2019-05-12 20:56:22 +00:00
|
|
|
("cards" , cards) ;
|
|
|
|
("card_patterns" , cards_patterns) ;
|
|
|
|
("next_id" , next_id) ;
|
|
|
|
]
|
|
|
|
|
|
|
|
let storage_ez cps cs next_id =
|
2019-05-23 06:22:58 +00:00
|
|
|
storage (make_card_patterns cps) (make_cards cs) (e_nat next_id)
|
2019-05-12 20:56:22 +00:00
|
|
|
|
|
|
|
let cards_ez owner n =
|
2019-05-23 06:22:58 +00:00
|
|
|
List.mapi (fun i x -> (e_nat i , x))
|
2019-05-12 20:56:22 +00:00
|
|
|
@@ List.map card_ez
|
|
|
|
@@ List.map (Function.constant owner)
|
|
|
|
@@ List.range n
|
|
|
|
|
|
|
|
let (first_owner , first_contract) =
|
2019-05-15 11:44:05 +00:00
|
|
|
let open Proto_alpha_utils.Memory_proto_alpha in
|
2019-05-12 20:56:22 +00:00
|
|
|
let id = List.nth dummy_environment.identities 0 in
|
|
|
|
let kt = id.implicit_contract in
|
2019-09-06 04:02:18 +02:00
|
|
|
Protocol.Alpha_context.Contract.to_b58check kt , kt
|
2019-05-12 20:56:22 +00:00
|
|
|
|
2020-01-21 02:24:16 -06:00
|
|
|
let (second_owner , second_contract) =
|
2019-05-15 11:44:05 +00:00
|
|
|
let open Proto_alpha_utils.Memory_proto_alpha in
|
2019-05-12 20:56:22 +00:00
|
|
|
let id = List.nth dummy_environment.identities 1 in
|
|
|
|
let kt = id.implicit_contract in
|
2020-01-21 02:24:16 -06:00
|
|
|
Protocol.Alpha_context.Contract.to_b58check kt , kt
|
2019-05-12 20:56:22 +00:00
|
|
|
|
|
|
|
let basic a b cards next_id =
|
|
|
|
let card_patterns = List.map card_pattern_ez [
|
|
|
|
(100 , a) ;
|
|
|
|
(20 , b) ;
|
|
|
|
] in
|
|
|
|
storage_ez card_patterns cards next_id
|
|
|
|
|
|
|
|
let buy () =
|
|
|
|
let%bind program = get_program () in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n ->
|
2019-12-04 18:30:52 +01:00
|
|
|
let buy_action = e_record_ez [
|
2019-05-23 06:22:58 +00:00
|
|
|
("card_to_buy" , e_nat 0) ;
|
2019-05-12 20:56:22 +00:00
|
|
|
] in
|
|
|
|
let storage = basic 100 1000 (cards_ez first_owner n) (2 * n) in
|
2019-05-23 06:22:58 +00:00
|
|
|
e_pair buy_action storage
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
let make_expected = fun n ->
|
2020-04-09 18:19:22 +02:00
|
|
|
let ops = e_typed_list [] (t_operation ()) in
|
2019-05-12 20:56:22 +00:00
|
|
|
let storage =
|
|
|
|
let cards =
|
|
|
|
cards_ez first_owner n @
|
2019-05-23 06:22:58 +00:00
|
|
|
[(e_nat (2 * n) , card (e_address second_owner))]
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
basic 101 1000 cards ((2 * n) + 1) in
|
2019-05-23 06:22:58 +00:00
|
|
|
e_pair ops storage
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let%bind amount =
|
2020-06-12 13:33:14 +02:00
|
|
|
trace_option (test_internal "getting amount for run") @@
|
|
|
|
Memory_proto_alpha.Protocol.Alpha_context.Tez.of_mutez @@ Int64.of_int 10000000000 in
|
2020-01-21 02:24:16 -06:00
|
|
|
let options = Proto_alpha_utils.Memory_proto_alpha.make_options ~amount ~sender:second_contract () in
|
2019-05-12 20:56:22 +00:00
|
|
|
expect_eq_n_pos_small ~options program "buy_single" make_input make_expected in
|
|
|
|
let%bind () =
|
|
|
|
let%bind amount =
|
2020-06-12 13:33:14 +02:00
|
|
|
trace_option (test_internal "getting amount for run") @@
|
|
|
|
Memory_proto_alpha.Protocol.Alpha_context.Tez.of_mutez @@ Int64.of_int 0 in
|
2020-01-21 02:24:16 -06:00
|
|
|
let options = Proto_alpha_utils.Memory_proto_alpha.make_options ~amount ~sender:second_contract () in
|
2020-06-12 13:33:14 +02:00
|
|
|
Assert.assert_fail (test_internal "could buy without money") @@
|
|
|
|
expect_eq_n_pos_small ~options program "buy_single" make_input make_expected in
|
2019-05-12 20:56:22 +00:00
|
|
|
ok ()
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let dispatch_buy () =
|
|
|
|
let%bind program = get_program () in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n ->
|
2019-12-04 18:30:52 +01:00
|
|
|
let buy_action = e_record_ez [
|
2019-05-23 06:22:58 +00:00
|
|
|
("card_to_buy" , e_nat 0) ;
|
2019-05-12 20:56:22 +00:00
|
|
|
] in
|
2019-05-23 06:22:58 +00:00
|
|
|
let action = e_constructor "Buy_single" buy_action in
|
2019-05-12 20:56:22 +00:00
|
|
|
let storage = basic 100 1000 (cards_ez first_owner n) (2 * n) in
|
2019-05-23 06:22:58 +00:00
|
|
|
e_pair action storage
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
let make_expected = fun n ->
|
2020-04-09 18:19:22 +02:00
|
|
|
let ops = e_typed_list [] (t_operation ()) in
|
2019-05-12 20:56:22 +00:00
|
|
|
let storage =
|
|
|
|
let cards =
|
|
|
|
cards_ez first_owner n @
|
2019-05-23 06:22:58 +00:00
|
|
|
[(e_nat (2 * n) , card (e_address second_owner))]
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
basic 101 1000 cards ((2 * n) + 1) in
|
2019-05-23 06:22:58 +00:00
|
|
|
e_pair ops storage
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
let%bind () =
|
|
|
|
let%bind amount =
|
2020-06-12 13:33:14 +02:00
|
|
|
trace_option (test_internal "getting amount for run") @@
|
2019-09-06 04:02:18 +02:00
|
|
|
Memory_proto_alpha.Protocol.Alpha_context.Tez.of_mutez @@ Int64.of_int 10000000000 in
|
2020-01-21 02:24:16 -06:00
|
|
|
let options = Proto_alpha_utils.Memory_proto_alpha.make_options ~amount ~sender:second_contract () in
|
2019-05-12 20:56:22 +00:00
|
|
|
expect_eq_n_pos_small ~options program "main" make_input make_expected in
|
|
|
|
let%bind () =
|
|
|
|
let%bind amount =
|
2020-06-12 13:33:14 +02:00
|
|
|
trace_option (test_internal "getting amount for run") @@
|
2019-09-06 04:02:18 +02:00
|
|
|
Memory_proto_alpha.Protocol.Alpha_context.Tez.of_mutez @@ Int64.of_int 0 in
|
2020-01-21 02:24:16 -06:00
|
|
|
let options = Proto_alpha_utils.Memory_proto_alpha.make_options ~amount ~sender:second_contract () in
|
2020-06-12 13:33:14 +02:00
|
|
|
Assert.assert_fail (test_internal "could buy without money") @@
|
|
|
|
expect_eq_n_pos_small ~options program "buy_single" make_input make_expected in
|
2019-05-12 20:56:22 +00:00
|
|
|
ok ()
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let transfer () =
|
|
|
|
let%bind program = get_program () in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n ->
|
2019-12-04 18:30:52 +01:00
|
|
|
let transfer_action = e_record_ez [
|
2019-05-23 06:22:58 +00:00
|
|
|
("card_to_transfer" , e_nat 0) ;
|
|
|
|
("destination" , e_address second_owner) ;
|
2019-05-12 20:56:22 +00:00
|
|
|
] in
|
|
|
|
let storage = basic 100 1000 (cards_ez first_owner n) (2 * n) in
|
2019-05-23 06:22:58 +00:00
|
|
|
e_pair transfer_action storage
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
let make_expected = fun n ->
|
2020-04-09 18:19:22 +02:00
|
|
|
let ops = e_typed_list [] (t_operation ()) in
|
2019-05-12 20:56:22 +00:00
|
|
|
let storage =
|
|
|
|
let cards =
|
|
|
|
let new_card = card_ez second_owner in
|
|
|
|
let old_cards = cards_ez first_owner n in
|
2019-05-23 06:22:58 +00:00
|
|
|
(e_nat 0 , new_card) :: (List.tl old_cards)
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
basic 100 1000 cards (2 * n) in
|
2019-05-23 06:22:58 +00:00
|
|
|
e_pair ops storage
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
let%bind () =
|
2019-09-06 04:02:18 +02:00
|
|
|
let amount = Memory_proto_alpha.Protocol.Alpha_context.Tez.zero in
|
2020-01-21 02:24:16 -06:00
|
|
|
let sender = first_contract in
|
|
|
|
let options = Proto_alpha_utils.Memory_proto_alpha.make_options ~amount ~sender () in
|
2019-05-12 20:56:22 +00:00
|
|
|
expect_eq_n_strict_pos_small ~options program "transfer_single" make_input make_expected in
|
|
|
|
ok ()
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
let sell () =
|
|
|
|
let%bind program = get_program () in
|
|
|
|
let%bind () =
|
|
|
|
let make_input = fun n ->
|
2019-12-04 18:30:52 +01:00
|
|
|
let sell_action = e_record_ez [
|
2019-05-23 06:22:58 +00:00
|
|
|
("card_to_sell" , e_nat (n - 1)) ;
|
2019-05-12 20:56:22 +00:00
|
|
|
] in
|
|
|
|
let cards = cards_ez first_owner n in
|
|
|
|
let storage = basic 100 1000 cards (2 * n) in
|
2019-05-23 06:22:58 +00:00
|
|
|
e_pair sell_action storage
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
2020-06-12 13:33:14 +02:00
|
|
|
let make_expecter : int -> Ast_core.expression -> (unit,_) result = fun n result ->
|
|
|
|
let%bind (ops , storage) = trace_option (test_internal __LOC__) @@
|
|
|
|
Ast_core.get_e_pair result.expression_content in
|
2019-05-12 20:56:22 +00:00
|
|
|
let%bind () =
|
2020-06-12 13:33:14 +02:00
|
|
|
let%bind lst = trace_option (test_internal __LOC__) @@
|
|
|
|
Ast_core.get_e_list ops.expression_content in
|
|
|
|
Assert.assert_list_size (test_internal __LOC__) lst 1 in
|
2019-05-12 20:56:22 +00:00
|
|
|
let expected_storage =
|
|
|
|
let cards = List.hds @@ cards_ez first_owner n in
|
|
|
|
basic 99 1000 cards (2 * n) in
|
2020-03-17 16:04:27 +01:00
|
|
|
let%bind expected_storage = Test_helpers.expression_to_core expected_storage in
|
2020-06-12 13:33:14 +02:00
|
|
|
trace_option (test_internal __LOC__) @@
|
|
|
|
Ast_core.Misc.assert_value_eq (expected_storage , storage)
|
2019-05-12 20:56:22 +00:00
|
|
|
in
|
|
|
|
let%bind () =
|
2019-09-06 04:02:18 +02:00
|
|
|
let amount = Memory_proto_alpha.Protocol.Alpha_context.Tez.zero in
|
2020-01-21 02:24:16 -06:00
|
|
|
let sender = first_contract in
|
|
|
|
let options = Proto_alpha_utils.Memory_proto_alpha.make_options ~amount ~sender () in
|
2019-05-12 20:56:22 +00:00
|
|
|
expect_n_strict_pos_small ~options program "sell_single" make_input make_expecter in
|
|
|
|
ok ()
|
|
|
|
in
|
|
|
|
ok ()
|
|
|
|
|
|
|
|
|
2019-06-05 06:43:33 +00:00
|
|
|
let main = test_suite "Coase (End to End)" [
|
2019-12-06 15:10:37 +01:00
|
|
|
test "compile" compile_main ;
|
2019-05-12 20:56:22 +00:00
|
|
|
test "buy" buy ;
|
|
|
|
test "dispatch buy" dispatch_buy ;
|
|
|
|
test "transfer" transfer ;
|
|
|
|
test "sell" sell ;
|
|
|
|
]
|