use mpstthree::binary::struct_trait::{end::End, recv::Recv, send::Send, session::Session}; use mpstthree::meshedchannels::MeshedChannels; use mpstthree::checker_concat; use petgraph::dot::Dot; use mpstthree::role::a::RoleA; use mpstthree::role::b::RoleB; use mpstthree::role::c::RoleC; use mpstthree::role::end::RoleEnd; use mpstthree::name::a::NameA; use mpstthree::name::b::NameB; use mpstthree::name::c::NameC; // Creating the binary sessions type AtoB = Send; type AtoC = Recv; type BtoA = as Session>::Dual; type BtoC = Send; type CtoA = as Session>::Dual; type CtoB = as Session>::Dual; // Stacks type StackA = RoleB>; type StackB = RoleA>; type StackC = RoleA>; // Creating the MP sessions type EndpointA = MeshedChannels, AtoC, StackA, NameA>; type EndpointB = MeshedChannels, BtoC, StackB, NameB>; type EndpointC = MeshedChannels, CtoB, StackC, NameC>; ///////////////////////////////////////// pub fn main() { let (graphs, kmc) = checker_concat!( "checking_simple", EndpointA, EndpointC, EndpointB ) .unwrap(); ////////////// Test graph A let graph_a = &graphs["RoleA"]; assert_eq!( format!("{:?}", Dot::new(&graph_a)), "digraph {\n \ 0 [ label = \"\\\"0\\\"\" ]\n \ 1 [ label = \"\\\"1\\\"\" ]\n \ 2 [ label = \"\\\"2\\\"\" ]\n \ 3 [ label = \"\\\"3\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"RoleA!RoleB: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"RoleA?RoleC: i32\\\"\" ]\n \ 2 -> 3 [ label = \"\\\"0\\\"\" ]\n\ }\n" ); ////////////// Test graph B let graph_b = &graphs["RoleB"]; assert_eq!( format!("{:?}", Dot::new(&graph_b)), "digraph {\n \ 0 [ label = \"\\\"0\\\"\" ]\n \ 1 [ label = \"\\\"1\\\"\" ]\n \ 2 [ label = \"\\\"2\\\"\" ]\n \ 3 [ label = \"\\\"3\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"RoleB?RoleA: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"RoleB!RoleC: i32\\\"\" ]\n \ 2 -> 3 [ label = \"\\\"0\\\"\" ]\n\ }\n" ); ////////////// Test graph C let graph_c = &graphs["RoleC"]; assert_eq!( format!("{:?}", Dot::new(&graph_c)), "digraph {\n \ 0 [ label = \"\\\"0\\\"\" ]\n \ 1 [ label = \"\\\"1\\\"\" ]\n \ 2 [ label = \"\\\"2\\\"\" ]\n \ 3 [ label = \"\\\"3\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"RoleC!RoleA: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"RoleC?RoleB: i32\\\"\" ]\n \ 2 -> 3 [ label = \"\\\"0\\\"\" ]\n\ }\n" ); ////////////// Test KMC number assert_eq!(kmc, Some(1)); }