ligo/test/test_context.ml

228 lines
8.1 KiB
OCaml
Raw Normal View History

2016-10-12 17:00:19 +04:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
2016-09-08 21:13:10 +04:00
open Hash
open Context
let (>>=) = Lwt.bind
let (>|=) = Lwt.(>|=)
let (//) = Filename.concat
(** Basic blocks *)
let genesis_block =
Block_hash.of_b48check
"eeeeeeeeeeeeeeefcF2dFpTjGjPAxRM3TqDrKkJf7DdkNHpX3DmaD"
2016-09-08 21:13:10 +04:00
let genesis_protocol =
Protocol_hash.of_b48check
"2gagsSEvTKAHRjxAamgSdBNkv39VtNCqpaDXrrH4K8R4KQAAHrhe3"
2016-09-08 21:13:10 +04:00
let genesis_time =
Time.of_seconds 0L
let genesis = {
Store.time = genesis_time ;
block = genesis_block ;
protocol = genesis_protocol ;
}
(** Context creation *)
let block2 =
Block_hash.of_hex
"2222222222222222222222222222222222222222222222222222222222222222"
2016-10-19 22:47:04 +04:00
let faked_block : Store.block = {
2016-09-08 21:13:10 +04:00
shell = {
net_id = Net genesis_block ;
predecessor = genesis_block ;
operations = [] ;
fitness = [] ;
timestamp = Time.of_seconds 0L ;
} ;
proto = MBytes.of_string "" ;
}
let create_block2 idx =
checkout idx genesis_block >>= function
| None | Some (Error _) ->
Assert.fail_msg "checkout genesis_block"
2016-09-08 21:13:10 +04:00
| Some (Ok ctxt) ->
set ctxt ["a"; "b"] (MBytes.of_string "Novembre") >>= fun ctxt ->
set ctxt ["a"; "c"] (MBytes.of_string "Juin") >>= fun ctxt ->
set ctxt ["version";] (MBytes.of_string "0.0") >>= fun ctxt ->
commit idx faked_block block2 ctxt
let block3a =
Block_hash.of_hex
"3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a"
let create_block3a idx =
checkout idx block2 >>= function
| None | Some (Error _) ->
Assert.fail_msg "checkout block2"
2016-09-08 21:13:10 +04:00
| Some (Ok ctxt) ->
del ctxt ["a"; "b"] >>= fun ctxt ->
set ctxt ["a"; "d"] (MBytes.of_string "Mars") >>= fun ctxt ->
commit idx faked_block block3a ctxt
let block3b =
Block_hash.of_hex
"3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b"
let block3c =
Block_hash.of_hex
"3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c"
let create_block3b idx =
checkout idx block2 >>= function
| None | Some (Error _) ->
Assert.fail_msg "checkout block3b"
2016-09-08 21:13:10 +04:00
| Some (Ok ctxt) ->
del ctxt ["a"; "c"] >>= fun ctxt ->
set ctxt ["a"; "d"] (MBytes.of_string "Février") >>= fun ctxt ->
commit idx faked_block block3b ctxt
let wrap_context_init f base_dir =
let root = base_dir // "context" in
Context.init root >>= fun idx ->
Context.create_genesis_context idx genesis genesis_protocol >>= fun _ ->
create_block2 idx >>= fun () ->
create_block3a idx >>= fun () ->
create_block3b idx >>= fun () ->
commit_invalid idx faked_block block3c [Error_monad.Unclassified "TEST"] >>= fun () ->
f idx
(** Simple test *)
let c = function
| None -> None
| Some s -> Some (MBytes.to_string s)
let test_simple idx =
checkout idx block2 >>= function
| None | Some (Error _) ->
Assert.fail_msg "checkout block2"
2016-09-08 21:13:10 +04:00
| Some (Ok ctxt) ->
get ctxt ["version"] >>= fun version ->
Assert.equal_string_option ~msg:__LOC__ (c version) (Some "0.0") ;
2016-09-08 21:13:10 +04:00
get ctxt ["a";"b"] >>= fun novembre ->
Assert.equal_string_option (Some "Novembre") (c novembre) ;
2016-09-08 21:13:10 +04:00
get ctxt ["a";"c"] >>= fun juin ->
Assert.equal_string_option ~msg:__LOC__ (Some "Juin") (c juin) ;
2016-09-08 21:13:10 +04:00
Lwt.return ()
let test_continuation idx =
checkout idx block3a >>= function
| None | Some (Error _) ->
Assert.fail_msg "checkout block3a"
2016-09-08 21:13:10 +04:00
| Some (Ok ctxt) ->
get ctxt ["version"] >>= fun version ->
Assert.equal_string_option ~msg:__LOC__ (Some "0.0") (c version) ;
2016-09-08 21:13:10 +04:00
get ctxt ["a";"b"] >>= fun novembre ->
Assert.is_none ~msg:__LOC__ (c novembre) ;
2016-09-08 21:13:10 +04:00
get ctxt ["a";"c"] >>= fun juin ->
Assert.equal_string_option ~msg:__LOC__ (Some "Juin") (c juin) ;
2016-09-08 21:13:10 +04:00
get ctxt ["a";"d"] >>= fun mars ->
Assert.equal_string_option ~msg:__LOC__ (Some "Mars") (c mars) ;
2016-09-08 21:13:10 +04:00
Lwt.return ()
let test_fork idx =
checkout idx block3b >>= function
| None | Some (Error _) ->
Assert.fail_msg "checkout block3b"
2016-09-08 21:13:10 +04:00
| Some (Ok ctxt) ->
get ctxt ["version"] >>= fun version ->
Assert.equal_string_option ~msg:__LOC__ (Some "0.0") (c version) ;
2016-09-08 21:13:10 +04:00
get ctxt ["a";"b"] >>= fun novembre ->
Assert.equal_string_option ~msg:__LOC__ (Some "Novembre") (c novembre) ;
2016-09-08 21:13:10 +04:00
get ctxt ["a";"c"] >>= fun juin ->
Assert.is_none ~msg:__LOC__ (c juin) ;
2016-09-08 21:13:10 +04:00
get ctxt ["a";"d"] >>= fun mars ->
Assert.equal_string_option ~msg:__LOC__ (Some "Février") (c mars) ;
2016-09-08 21:13:10 +04:00
Lwt.return ()
let test_replay idx =
checkout idx genesis_block >>= function
| None | Some (Error _) ->
Assert.fail_msg "checkout genesis_block"
2016-09-08 21:13:10 +04:00
| Some (Ok ctxt0) ->
set ctxt0 ["version"] (MBytes.of_string "0.0") >>= fun ctxt1 ->
set ctxt1 ["a"; "b"] (MBytes.of_string "Novembre") >>= fun ctxt2 ->
set ctxt2 ["a"; "c"] (MBytes.of_string "Juin") >>= fun ctxt3 ->
set ctxt3 ["a"; "d"] (MBytes.of_string "July") >>= fun ctxt4a ->
set ctxt3 ["a"; "d"] (MBytes.of_string "Juillet") >>= fun ctxt4b ->
set ctxt4a ["a"; "b"] (MBytes.of_string "November") >>= fun ctxt5a ->
get ctxt4a ["a";"b"] >>= fun novembre ->
Assert.equal_string_option ~msg:__LOC__ (Some "Novembre") (c novembre) ;
2016-09-08 21:13:10 +04:00
get ctxt5a ["a";"b"] >>= fun november ->
Assert.equal_string_option ~msg:__LOC__ (Some "November") (c november) ;
2016-09-08 21:13:10 +04:00
get ctxt5a ["a";"d"] >>= fun july ->
Assert.equal_string_option ~msg:__LOC__ (Some "July") (c july) ;
2016-09-08 21:13:10 +04:00
get ctxt4b ["a";"b"] >>= fun novembre ->
Assert.equal_string_option ~msg:__LOC__ (Some "Novembre") (c novembre) ;
2016-09-08 21:13:10 +04:00
get ctxt4b ["a";"d"] >>= fun juillet ->
Assert.equal_string_option ~msg:__LOC__ (Some "Juillet") (c juillet) ;
2016-09-08 21:13:10 +04:00
Lwt.return ()
let test_list idx =
checkout idx genesis_block >>= function
| None | Some (Error _) ->
Assert.fail_msg "checkout genesis_block"
2016-09-08 21:13:10 +04:00
| Some (Ok ctxt) ->
set ctxt ["a"; "b"] (MBytes.of_string "Novembre") >>= fun ctxt ->
set ctxt ["a"; "c"] (MBytes.of_string "Juin") >>= fun ctxt ->
set ctxt ["a"; "d"; "e"] (MBytes.of_string "Septembre") >>= fun ctxt ->
set ctxt ["f";] (MBytes.of_string "Avril") >>= fun ctxt ->
set ctxt ["g"; "h"] (MBytes.of_string "Avril") >>= fun ctxt ->
list ctxt [[]] >>= fun l ->
Assert.equal_persist_list ~msg:__LOC__ [["a"];["f"];["g"]] l ;
2016-09-08 21:13:10 +04:00
list ctxt [["a"]] >>= fun l ->
Assert.equal_persist_list
~msg:__LOC__ [["a";"b"]; ["a";"c"]; ["a";"d"]] l ;
2016-09-08 21:13:10 +04:00
list ctxt [["f"]] >>= fun l ->
Assert.equal_persist_list ~msg:__LOC__ [] l ;
2016-09-08 21:13:10 +04:00
list ctxt [["g"]] >>= fun l ->
Assert.equal_persist_list ~msg:__LOC__ [["g";"h"]] l ;
2016-09-08 21:13:10 +04:00
list ctxt [["i"]] >>= fun l ->
Assert.equal_persist_list ~msg:__LOC__ [] l ;
2016-09-08 21:13:10 +04:00
list ctxt [["a"];["g"]] >>= fun l ->
Assert.equal_persist_list ~msg:__LOC__
[["a"; "b"]; ["a"; "c"]; ["a"; "d"]; ["g"; "h"]] l ;
2016-09-08 21:13:10 +04:00
Lwt.return ()
let test_invalid idx =
checkout idx block3c >>= function
| Some (Error [exn]) ->
Assert.equal_error_monad
~msg:__LOC__(Error_monad.Unclassified "TEST") exn ;
2016-09-08 21:13:10 +04:00
Lwt.return_unit
| Some (Error _) ->
Assert.fail_msg "checkout unexpected error in block3c"
2016-09-08 21:13:10 +04:00
| Some (Ok _) ->
Assert.fail_msg "checkout valid block3c"
2016-09-08 21:13:10 +04:00
| None ->
Assert.fail_msg "checkout absent block3c"
2016-09-08 21:13:10 +04:00
(******************************************************************************)
let tests : (string * (index -> unit Lwt.t)) list = [
"simple", test_simple ;
"continuation", test_continuation ;
"fork", test_fork ;
"replay", test_replay ;
"list", test_list ;
"invalid", test_invalid ;
]
let () =
2016-09-08 21:13:10 +04:00
Test.run "context." (List.map (fun (s, f) -> s, wrap_context_init f) tests)