_acs-tcl__apm_tarballs (private)

 _acs-tcl__apm_tarballs

Defined in packages/acs-tcl/tcl/test/apm-file-procs.tcl

Partial Call Graph (max 5 caller/called nodes):
%3 aa_log aa_log (public) aa_log_result aa_log_result (public) aa_run_with_teardown aa_run_with_teardown (public) aa_section aa_section (public) aa_true aa_true (public) _acs-tcl__apm_tarballs _acs-tcl__apm_tarballs _acs-tcl__apm_tarballs->aa_log _acs-tcl__apm_tarballs->aa_log_result _acs-tcl__apm_tarballs->aa_run_with_teardown _acs-tcl__apm_tarballs->aa_section _acs-tcl__apm_tarballs->aa_true

Testcases:
No testcase defined.
Source code:
        
        set _aa_export {}
        set body_count 1
        foreach testcase_body {{
        aa_run_with_teardown -rollback -test_code {
            set package_key acs-tcl
            set version_id [db_string get_latest_version {
                select max(version_id) from apm_package_versions
                where package_key = :package_key
                and enabled_p = 't'
            }]
            aa_log "Latest enabled version for '$package_key' is '$version_id'"


            aa_section "Creating the tarball"

            apm_generate_tarball $version_id

            aa_true "Tarball was found" [db_0or1row get_tarball {
                select max(live_revision) as revision_id from cr_items
                where name = 'tarball-for-package-version-' || :version_id
            }]

            set tarball_path [content::revision::get_cr_file_path -revision_id $revision_id]

            aa_true "File is a gzipped archive"  [util::file_content_check -type gzip -filename $tarball_path]


            aa_section "Extracting the tarball"

            set tmpdir [ad_mktmpdir]
            aa_log "Extracting tarball in '$tmpdir'"
            apm_extract_tarball $version_id $tmpdir

            aa_log "Walking through the extracted tarball..."
            set tmp_length [string length $tmpdir/$package_key/]
            set files [list $tmpdir]
            while {[llength $files] > 0} {
                set f [lindex $files 0]
                set files [lrange $files 1 end]
                if {[file isdirectory $f]} {
                    lappend files {*}[glob -directory $f *]
                } else {
                    set f [string range $f $tmp_length end]
                    set tar_visited($f) 1
                }
            }

            aa_log "Check it against the actual files in the package"
            foreach f [apm_get_package_files -all -package_key acs-tcl] {
                aa_true "File '$f' was found in the tarfile" [info exists tar_visited($f)]
            }
            
            file delete -force $tmpdir
        }
    }} {
          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_tarballs (body $body_count): Error during execution: $msg, stack trace: \n$::errorInfo"
          }
          incr body_count
        }
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: