1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
#!/usr/bin/perl -w
use strict;
use lib './t/lib';
use Test::More tests => 3;
use HTML::Widgets::NavMenu ();
use HTML::Widgets::NavMenu::Test::Data;
my $test_data = get_test_data();
sub test_nav_menu
{
my $rendered = shift;
my $expected_string = shift;
my $test_blurb = shift;
my @result = ( @{ $rendered->{html} } );
my @expected = ( split( /\n/, $expected_string ) );
is_deeply( \@expected, \@result, $test_blurb );
}
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/me/",
@{ $test_data->{'two_sites'} },
);
my $rendered = $nav_menu->render();
my $expected_string = <<"EOF";
<ul>
<li>
<a href="../">Home</a>
</li>
<li>
<b>About Me</b>
<br />
<ul>
<li>
<a href="../round/hello/personal.html" title="Biography of Myself">Bio</a>
</li>
<li>
<a href="../round/toto/" title="A Useful Conspiracy">Gloria</a>
</li>
</ul>
</li>
<li>
<a href="http://www.other-url.co.il/~shlomif/hoola/" title="Drumming is good for your health">Tam Tam Drums</a>
</li>
</ul>
EOF
# TEST
test_nav_menu( $rendered, $expected_string,
"Testing ul classes for no CSS class to be assigned." );
}
# This test tests the show_always directive which causes the entire
# sub-tree to expand at any URL.
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/me/",
@{ $test_data->{'show_always'} },
'ul_classes' => [ "FirstClass", "secondclass 2C", "ThirdClass" ],
);
my $rendered = $nav_menu->render();
my $expected_string = <<"EOF";
<ul class="FirstClass">
<li>
<a href="../">Home</a>
</li>
<li>
<b>About Me</b>
</li>
<li>
<a href="../show-always/">Show Always</a>
<br />
<ul class="secondclass 2C">
<li>
<a href="../show-always/gandalf/">Gandalf</a>
</li>
<li>
<a href="../robin/">Robin</a>
<br />
<ul class="ThirdClass">
<li>
<a href="../robin/hood/">Hood</a>
</li>
</ul>
</li>
<li>
<a href="../esther/">Queen Esther</a>
<br />
<ul class="ThirdClass">
<li>
<a href="../haman/">Haman</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
EOF
# TEST
test_nav_menu( $rendered, $expected_string, "Nav Menu with depth classes" );
}
# This test tests the escaping of the class names.
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/me/",
@{ $test_data->{'show_always'} },
'ul_classes' => [ "F&F Class", "sec<h>", "T\"C" ],
);
my $rendered = $nav_menu->render();
my $expected_string = <<"EOF";
<ul class="F&F Class">
<li>
<a href="../">Home</a>
</li>
<li>
<b>About Me</b>
</li>
<li>
<a href="../show-always/">Show Always</a>
<br />
<ul class="sec<h>">
<li>
<a href="../show-always/gandalf/">Gandalf</a>
</li>
<li>
<a href="../robin/">Robin</a>
<br />
<ul class="T"C">
<li>
<a href="../robin/hood/">Hood</a>
</li>
</ul>
</li>
<li>
<a href="../esther/">Queen Esther</a>
<br />
<ul class="T"C">
<li>
<a href="../haman/">Haman</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
EOF
# TEST
test_nav_menu( $rendered, $expected_string, "Nav Menu with depth classes" );
}
|