_acs-tcl__apm__test_info_file (private)
_acs-tcl__apm__test_info_file
Defined in packages/acs-tcl/tcl/test/acs-tcl-test-procs.tcl
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: set _aa_export {} set body_count 1 foreach testcase_body {{ set test_dir "[acs_package_root_dir acs-tcl]/tcl/test" set spec_path "${test_dir}/tmp-test-info-file.xml" set allowed_type [lindex [apm_supported_callback_types] 0] array set callback_array [list unknown-type proc_name1 $allowed_type proc_name2] set version_id [db_string aa_version_id {select version_id from apm_enabled_package_versions where package_key = 'acs-automated-testing'}] set auto_mount_orig [db_string aa_auto_mount {select auto_mount from apm_package_versions where version_id = :version_id}] set auto_mount $auto_mount_orig if { $auto_mount eq "" } { set auto_mount "test_auto_mount_dir" db_dml set_test_mount {update apm_package_versions set auto_mount = :auto_mount where version_id = :version_id} } set error_p [catch { # Add a few test callbacks foreach {type proc} [array get callback_array] { db_dml insert_callback {insert into apm_package_callbacks (version_id, type, proc) values (:version_id, :type, :proc)} } # Get the XML string set spec [apm_generate_package_spec $version_id] # Write XML to file set spec_file_id [open $spec_path w] puts $spec_file_id $spec close $spec_file_id # Read the XML file aa_silence_log_entries -severities warning { # suppress # ... package info file ... contains an unsupported callback type 'unknown-type' ... array set spec_array [apm_read_package_info_file $spec_path] } # Assert that info parsed from XML file is correct array set parsed_callback_array $spec_array(callbacks) aa_true "Only one permissible callback should be returned, got array [array get parsed_callback_array]" {[array size parsed_callback_array] == 1} aa_equals "Checking name of callback of allowed type $allowed_type" $parsed_callback_array($allowed_type) $callback_array($allowed_type) aa_equals "Checking that auto-callback is correct" $spec_array(auto-mount) $auto_mount } error] # Teardown file delete -- $spec_path foreach {type proc} [array get callback_array] { db_dml remove_callback {delete from apm_package_callbacks where version_id = :version_id and type = :type } } db_dml reset_auto_mount {update apm_package_versions set auto_mount = :auto_mount_orig where version_id = :version_id} if { $error_p } { error "$error - $::errorInfo" } }} { aa_log "Running testcase body $body_count" set ::__aa_test_indent [info level] set catch_val [catch $testcase_body msg] if {$catch_val != 0 && $catch_val != 2} { aa_log_result "fail" "apm__test_info_file (body $body_count): Error during execution: $msg, stack trace: \n$::errorInfo" } incr body_count }XQL Not present: Generic, PostgreSQL, Oracle