Index: openacs-4/packages/chat-portlet/tcl/test/chat-portlet-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/chat-portlet/tcl/test/Attic/chat-portlet-procs.tcl,v diff -u -N -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/chat-portlet/tcl/test/chat-portlet-procs.tcl 21 Aug 2020 17:33:27 -0000 1.1.2.2 +++ openacs-4/packages/chat-portlet/tcl/test/chat-portlet-procs.tcl 2 Oct 2020 17:41:51 -0000 1.1.2.3 @@ -23,6 +23,90 @@ aa_equals "Chat portlet admin pretty name" "[chat_admin_portlet::get_pretty_name]" "#chat-portlet.admin_pretty_name#" } +aa_register_case -procs { + chat_portlet::add_self_to_page + chat_portlet::remove_self_from_page + chat_admin_portlet::add_self_to_page + chat_admin_portlet::remove_self_from_page + } -cats { + api + } chat_portlet_add_remove_from_page { + Test add/remove portlet procs. +} { + # + # Helper proc to check portal elements + # + proc portlet_exists_p {portal_id portlet_name} { + return [db_0or1row portlet_in_portal { + select 1 from dual where exists ( + select 1 + from portal_element_map pem, + portal_pages pp + where pp.portal_id = :portal_id + and pp.page_id = pem.page_id + and pem.name = :portlet_name + ) + }] + } + # + # Start the tests + # + aa_run_with_teardown -rollback -test_code { + # + # Create a community. + # + # As this is running in a transaction, it should be cleaned up + # automatically. + # + set community_id [dotlrn_community::new -community_type dotlrn_community -pretty_name foo] + if {$community_id ne ""} { + aa_log "Community created: $community_id" + set portal_id [dotlrn_community::get_admin_portal_id -community_id $community_id] + set package_id [dotlrn::instantiate_and_mount $community_id [chat_portlet::my_package_key]] + # + # chat_portlet + # + set portlet_name [chat_portlet::get_my_name] + # + # Add portlet. + # + chat_portlet::add_self_to_page -portal_id $portal_id -package_id $package_id -param_action "" + aa_true "Portlet is in community portal after addition" "[portlet_exists_p $portal_id $portlet_name]" + # + # Remove portlet. + # + chat_portlet::remove_self_from_page -portal_id $portal_id -package_id $package_id + aa_false "Portlet is in community portal after removal" "[portlet_exists_p $portal_id $portlet_name]" + # + # Add portlet. + # + chat_portlet::add_self_to_page -portal_id $portal_id -package_id $package_id -param_action "" + aa_true "Portlet is in community portal after addition" "[portlet_exists_p $portal_id $portlet_name]" + # + # admin_portlet + # + set portlet_name [chat_admin_portlet::get_my_name] + # + # Add portlet. + # + chat_admin_portlet::add_self_to_page -portal_id $portal_id -package_id $package_id + aa_true "Admin portlet is in community portal after addition" "[portlet_exists_p $portal_id $portlet_name]" + # + # Remove portlet. + # + chat_admin_portlet::remove_self_from_page -portal_id $portal_id + aa_false "Admin portlet is in community portal after removal" "[portlet_exists_p $portal_id $portlet_name]" + # + # Add portlet. + # + chat_admin_portlet::add_self_to_page -portal_id $portal_id -package_id $package_id + aa_true "Admin portlet is in community portal after addition" "[portlet_exists_p $portal_id $portlet_name]" + } else { + aa_error "Community creation failed" + } + } +} + # Local variables: # mode: tcl # tcl-indent-level: 4