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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
#!/usr/bin/perl -w
use strict;
use lib './t/lib';
use Test::More tests => 34;
use HTML::Widgets::NavMenu ();
use HTML::Widgets::NavMenu::Test::Data;
my $test_data = get_test_data();
# This check tests that a leading path with a URL that is not registered
# in the nav menu still has one component of the root.
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/non-existent-path/",
@{ $test_data->{'minimal'} },
);
my $rendered = $nav_menu->render();
my @leading_path = @{ $rendered->{'leading_path'} };
# TEST
ok( ( scalar(@leading_path) == 1 ),
"Checking for a leading path of len 1" );
my $component = $leading_path[0];
# TEST
is( $component->label(), "Home", "Testing for title of leading_path" );
# TEST
is( $component->direct_url(), "../", "Testing for direct_url" );
}
# This check tests the url_type behaviour of the leading-path
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/yowza/howza/",
@{ $test_data->{'rec_url_type_menu'} },
);
my $rendered = $nav_menu->render();
my @leading_path = @{ $rendered->{'leading_path'} };
# TEST
ok( ( scalar(@leading_path) == 3 ),
"Checking for a leading path of len 3" );
my $component = $leading_path[0];
# TEST
is( $component->label(), "Home", "Testing for title of leading_path" );
# TEST
is(
$component->direct_url(),
"http://www.hello.com/~shlomif/",
"Testing for direct_url"
);
# TEST
is( $component->url_type(), "full_abs", "Testing for url_type" );
$component = $leading_path[1];
# TEST
is( $component->label(), "Yowza", "Testing for label of leading_path" );
# TEST
is( $component->direct_url(), "../", "Testing for direct_url" );
# TEST
is( $component->url_type(), "rel", "Testing for url_type" );
$component = $leading_path[2];
# TEST
is(
$component->label(),
"This should be full_abs again",
"Testing for label of leading_path"
);
# TEST
is(
$component->direct_url(),
"http://www.hello.com/~shlomif/yowza/howza/",
"Testing for direct_url"
);
# TEST
is( $component->url_type(), "full_abs", "Testing for url_type" );
}
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/sub-dir/",
@{ $test_data->{'url_is_abs_menu'} },
);
my $rendered = $nav_menu->render();
my @leading_path = @{ $rendered->{'leading_path'} };
# TEST
ok( ( scalar(@leading_path) == 3 ),
"Checking for a leading path of len 1" );
my $component = $leading_path[0];
# TEST
is( $component->label(), "Home", "Testing for title of leading_path" );
# TEST
is( $component->direct_url(), "../", "Testing for direct_url" );
$component = $leading_path[1];
# TEST
is( $component->title(), "Google it!",
"Testing for title of leading_path" );
# TEST
is( $component->direct_url(),
"http://www.google.com/", "Testing for direct_url" );
# TEST
is( $component->url_type(), "full_abs", "Testing for url_type" );
$component = $leading_path[2];
# TEST
is( $component->direct_url(), "./", "Testing for direct_url" );
# TEST
is( $component->url_type(), "rel", "Testing for url_type" );
}
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/open-source/alohaware/",
@{ $test_data->{'selective_expand'} },
);
my $rendered = $nav_menu->render();
my @leading_path = @{ $rendered->{'leading_path'} };
# TEST
ok( ( scalar(@leading_path) == 2 ),
"Checking for a leading path of len 2" );
my $component = $leading_path[-1];
# TEST
is(
$component->title(),
"Open Source Software I Wrote",
"Testing for title of leading_path"
);
# TEST
is( $component->direct_url(), "../", "Testing for direct_url" );
}
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/puzzles/bar/",
@{ $test_data->{'root_path_not_slash'} },
);
my $rendered = $nav_menu->render();
my @leading_path = @{ $rendered->{'leading_path'} };
# TEST
is( scalar(@leading_path), 2, "Checking for a leading path of len 2" );
my $component = $leading_path[0];
# TEST
is( $component->label(), "Home", "Points to Home" );
# TEST
is( $component->direct_url(), "../", "Testing for direct_url" );
}
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/humour/by-others/foo.html",
@{ $test_data->{'non_capturing_expand'} },
);
my $rendered = $nav_menu->render();
my @lp = @{ $rendered->{'leading_path'} };
# TEST
is( scalar(@lp), 3, "Checking for a leading path of len 2" );
# TEST
is( $lp[0]->direct_url(), "./../../", "lp[0]" );
# TEST
is( $lp[1]->direct_url(), "./../", "lp[1]" );
# TEST
is( $lp[2]->direct_url(), "./", "lp[2]" );
}
# This test is to check that a non-capturing expand does not influence
# the upper capturing expands to not capture.
{
my $nav_menu = HTML::Widgets::NavMenu->new(
'path_info' => "/humour/humanity/",
@{ $test_data->{'non_capturing_expand_nested'} },
);
my $rendered = $nav_menu->render();
my @lp = @{ $rendered->{'leading_path'} };
# TEST
is( scalar(@lp), 2, "Checking for a leading path of len 2" );
# TEST
is( $lp[0]->direct_url(), "../../", "Pointing to the home" );
# TEST
is( $lp[1]->direct_url(), "../", "Pointing to the humour" );
}
|