2017-04-06 00:42:40 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2017-04-06 00:42:40 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
module Helpers = Proto_alpha_helpers
|
|
|
|
module Assert = Helpers.Assert
|
|
|
|
|
|
|
|
let run blkid ({ b1 ; b2 ; _ } : Helpers.Account.bootstrap_accounts) =
|
|
|
|
|
2017-11-20 06:37:06 +04:00
|
|
|
Helpers.Baking.bake blkid b1 [] >>=? fun blkh ->
|
2017-04-06 00:42:40 +04:00
|
|
|
let foo = Helpers.Account.create "foo" in
|
|
|
|
|
|
|
|
(* Origination with amount = 0 tez *)
|
|
|
|
Helpers.Account.originate
|
|
|
|
~src:foo
|
|
|
|
~manager_pkh:foo.pkh
|
|
|
|
~balance:0L () >>= fun result ->
|
|
|
|
Assert.unknown_contract ~msg:__LOC__ result ;
|
|
|
|
|
|
|
|
(* Origination with amount = .5 tez *)
|
|
|
|
Helpers.Account.originate
|
|
|
|
~src:b1
|
|
|
|
~manager_pkh:foo.pkh
|
|
|
|
~balance:50L () >>= fun result ->
|
|
|
|
Assert.initial_amount_too_low ~msg:__LOC__ result ;
|
|
|
|
|
|
|
|
(* Origination with amount = 1 tez *)
|
|
|
|
Helpers.Account.originate
|
|
|
|
~src:b1
|
|
|
|
~manager_pkh:foo.pkh
|
2017-08-28 17:07:14 +04:00
|
|
|
~balance:99L () >>= fun result ->
|
2017-04-06 00:42:40 +04:00
|
|
|
Assert.initial_amount_too_low ~msg:__LOC__ result ;
|
|
|
|
|
|
|
|
(* Origination with amount > 1 tez *)
|
|
|
|
Helpers.Account.originate
|
|
|
|
~src:b1
|
|
|
|
~manager_pkh:foo.pkh
|
2017-08-28 17:07:14 +04:00
|
|
|
~balance:100L () >>= fun _result ->
|
2017-04-06 00:42:40 +04:00
|
|
|
(* TODO: test if new contract exists *)
|
|
|
|
|
|
|
|
(* Non-delegatable contract *)
|
|
|
|
Helpers.Account.originate
|
|
|
|
~src:b1
|
|
|
|
~manager_pkh:b1.pkh
|
|
|
|
~balance:500L () >>=? fun (_oph, nd_contract) ->
|
|
|
|
|
|
|
|
(* Delegatable contract *)
|
|
|
|
Helpers.Account.originate
|
|
|
|
~src:b1
|
|
|
|
~manager_pkh:b1.pkh
|
|
|
|
~delegate:b1.pkh
|
|
|
|
~balance:500L () >>=? fun (_oph, d_contract) ->
|
|
|
|
|
|
|
|
(* Change delegate of a non-delegatable contract *)
|
|
|
|
Helpers.Account.set_delegate
|
2017-11-07 20:38:11 +04:00
|
|
|
~fee:5L
|
2017-04-06 00:42:40 +04:00
|
|
|
~contract:nd_contract
|
|
|
|
~manager_sk:b1.sk
|
2017-11-07 20:38:11 +04:00
|
|
|
~src_pk:b1.pk
|
2017-04-06 00:42:40 +04:00
|
|
|
(Some b2.pkh) >>= fun result ->
|
|
|
|
Assert.non_delegatable ~msg:__LOC__ result ;
|
|
|
|
|
|
|
|
(* Change delegate of a delegatable contract *)
|
|
|
|
Helpers.Account.set_delegate
|
|
|
|
~contract:d_contract
|
|
|
|
~manager_sk:b1.sk
|
2017-11-07 20:38:11 +04:00
|
|
|
~src_pk:b1.pk
|
2017-04-06 00:42:40 +04:00
|
|
|
(Some b2.pkh) >>= fun _result ->
|
|
|
|
Assert.delegate_equal ~msg:__LOC__ d_contract (Some b2.pkh) >>=? fun () ->
|
|
|
|
|
|
|
|
return blkh
|
|
|
|
|
|
|
|
let main () =
|
2017-10-28 22:32:39 +04:00
|
|
|
Helpers.init ~rpc_port:18200 () >>=? fun (_node_pid, hash) ->
|
2017-04-06 00:42:40 +04:00
|
|
|
run (`Hash hash) Helpers.Account.bootstrap_accounts >>=? fun _blkh ->
|
|
|
|
return ()
|
|
|
|
|
|
|
|
let tests = [
|
|
|
|
"main", (fun _ -> main ()) ;
|
|
|
|
]
|
|
|
|
|
|
|
|
let () =
|
|
|
|
Test.run "origination." tests
|