_acs-tcl__ad_html_bars (private)

 _acs-tcl__ad_html_bars

Defined in packages/acs-tcl/tcl/test/navigation-procs.tcl

Partial Call Graph (max 5 caller/called nodes):
%3 _ _ (public) aa_equals aa_equals (public) aa_log aa_log (public) aa_log_result aa_log_result (public) aa_section aa_section (public) _acs-tcl__ad_html_bars _acs-tcl__ad_html_bars _acs-tcl__ad_html_bars->_ _acs-tcl__ad_html_bars->aa_equals _acs-tcl__ad_html_bars->aa_log _acs-tcl__ad_html_bars->aa_log_result _acs-tcl__ad_html_bars->aa_section

Testcases:
No testcase defined.
Source code:
        
        set _aa_export {}
        set body_count 1
        foreach testcase_body {{
        aa_section "ad_choice_bar"

        set items {1 2 3 4}
        set links {a b c d}
        set values {}
        aa_equals "With no values, proc returns nothing"  [ad_choice_bar $items $links $values""

        set items {1 2 3 4}
        set links {a b c d}
        set values {what ever we want to do}
        set bar [ad_choice_bar $items $links $values]
        aa_equals "The 'values' argument decides the number of elements"  [regsub -all -- {</a>} $bar {} _] [llength $values]
        foreach i $items l $links {
            aa_true "'$i' was rendered" {[string first $i $bar] >= 0}
            aa_true "'$l' was rendered" {[string first $l $bar] >= 0}
        }

        set items {1 2 3 4}
        set links {a b c d}
        set values {what ever we want to do}
        set selected what
        aa_true "The item corresponding to the selected value is emphasized"  {[string first <strong>1</strong> [ad_choice_bar $items $links $values $selected]] >= 0}

        aa_section "ad_navbar"

        set items {{a 1} {b 2} {c 3} {d 4}}
        set bar [ad_navbar {*}$items]
        aa_equals "A link is generated for every item in the arguments"  [regsub -all -- {</a>} $bar {} _] [llength $items]
        foreach i $items {
            lassign $i link label
            aa_true "'$link' was rendered" {[string first $link $bar] >= 0}
            aa_true "'$label' was rendered" {[string first $label $bar] >= 0}
        }
    }} {
          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" "ad_html_bars (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: