use core::fmt::Debug; use dharithri_sc::{ api::ManagedTypeApi, types::{ BigInt, BigUint, ManagedAddress, ManagedBuffer, ManagedByteArray, ManagedRef, ManagedType, TokenIdentifier, }, }; use dharithri_sc_scenario::api::StaticApi; fn test_managed_ref_for_type(obj: T) where M: ManagedTypeApi, T: ManagedType + Clone + Debug + Eq, { let obj_ref = obj.as_ref(); assert_eq!( obj_ref.get_handle(), ManagedRef::get_raw_handle_of_ref(obj_ref.clone()) ); let obj_clone: T = Clone::clone(&obj_ref); assert_eq!(obj, obj_clone); assert_ne!(obj_ref.get_handle(), obj_clone.get_handle()); } #[test] fn test_managed_ref() { test_managed_ref_for_type(BigUint::::from(1u32)); test_managed_ref_for_type(BigInt::::from(2i32)); test_managed_ref_for_type(ManagedBuffer::::from(&b"3abc"[..])); test_managed_ref_for_type(ManagedByteArray::::from(&[4u8; 4])); test_managed_ref_for_type(ManagedAddress::::from(&[5u8; 32])); test_managed_ref_for_type(TokenIdentifier::::from(&b"TOKEN-000006"[..])); } #[test] fn test_managed_ref_clone() { let obj = BigUint::::from(7u32); let obj_ref = obj.as_ref(); assert_eq!(obj.get_handle(), obj_ref.get_handle()); let obj_clone = Clone::clone(&*obj_ref); assert_eq!(obj, obj_clone); assert_ne!(obj.get_handle(), obj_clone.get_handle()); } #[test] fn test_managed_ref_eq() { assert_eq!( BigUint::::from(1u32).as_ref(), BigUint::::from(1u32).as_ref() ); assert_ne!( BigUint::::from(1u32).as_ref(), BigUint::::from(2u32).as_ref() ); }