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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
use strict;
use warnings;
use HTML::Mason::Tests;
my $tests = make_tests();
$tests->run;
sub make_tests
{
my $group = HTML::Mason::Tests->tests_class->new( name => 'syntax',
description => 'Basic component syntax tests' );
#------------------------------------------------------------
$group->add_test( name => 'replace',
description => 'tests <% %> tag',
component => <<'EOF',
<HTML>
<HEAD>
<TITLE>
Replacement Test
</TITLE>
</HEAD>
<BODY>
<% "Hello World!" %>
</BODY>
</HTML>
EOF
expect => <<'EOF',
<HTML>
<HEAD>
<TITLE>
Replacement Test
</TITLE>
</HEAD>
<BODY>
Hello World!
</BODY>
</HTML>
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'percent',
description => 'tests %-line syntax',
component => <<'EOF',
<HTML>
<HEAD>
<TITLE>
Percent Test
</TITLE>
</HEAD>
<BODY>
% my $message = "Hello World!";
<% $message %>
</BODY>
</HTML>
EOF
expect => <<'EOF',
<HTML>
<HEAD>
<TITLE>
Percent Test
</TITLE>
</HEAD>
<BODY>
Hello World!
</BODY>
</HTML>
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'fake_percent',
description => 'tests % in text section',
component => 'some text, a %, and some text',
expect => 'some text, a %, and some text',
);
#------------------------------------------------------------
$group->add_test( name => 'empty_percents',
description => 'tests empty %-lines',
component => <<'EOF',
some text,
%
and some more
EOF
expect => "some text,\nand some more\n",
);
#------------------------------------------------------------
$group->add_test( name => 'empty_percents2',
description => 'tests empty %-lines followed by other %-lines',
component => <<'EOF',
some text,
%
% $m->print('foo, ');
and some more
EOF
expect => "some text,\nfoo, and some more\n",
);
#------------------------------------------------------------
$group->add_test( name => 'space_after_method_name',
description => 'tests that spaces are allowed after method/subcomp names',
component => <<'EOF',
a
<%def foo >
</%def>
<%method bar
>
</%method>
b
EOF
expect => <<'EOF',
a
b
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'comment_in_attr_flags',
description => 'tests that comments are allowed at end of flag/attr lines',
component => <<'EOF',
a
<%flags>
inherit => undef # foo bar
</%flags>
<%attr>
a => 1 # a is 1
b => 2 # ya ay
</%attr>
b
EOF
expect => <<'EOF',
a
b
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'dash in subcomp named',
description => 'tests that dashes are allowed in subcomponent names',
component => <<'EOF',
a
<%def has-dashes>
foo
</%def>
b
EOF
expect => <<'EOF',
a
b
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'flags_on_one_line',
description => 'tests that a flags block can be one line',
component => <<'EOF',
a
<%flags>inherit => undef</%flags>
b
EOF
expect => <<'EOF',
a
b
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'attr_uc_ending',
description => 'tests that an attr ending tag can be upper-case',
component => <<'EOF',
<%ATTR>
thing => 1</%ATTR>
thing: <% $m->request_comp->attr('thing') %>
EOF
expect => <<'EOF',
thing: 1
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'args_uc_ending',
description => 'tests that args ending tag can be mixed case',
component => <<'EOF',
<%ARGS>
$a => 1</%ARGS>
a is <% $a %>
b
EOF
expect => <<'EOF',
a is 1
b
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'comment_in_call',
description => 'make a comp call with a commented line',
component => <<'EOF',
<& .foo,
foo => 1,
# bar => 2,
&>
<& .foo,
# foo => 1,
bar => 2,
&>
<%def .foo>foo! args are <% join(", ", %ARGS) %></%def>
EOF
expect => <<'EOF',
foo! args are foo, 1
foo! args are bar, 2
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'comment_in_call2',
description => 'make a comp call with content with a commented line',
component => <<'EOF',
<&| .show_content,
foo => 1,
# bar => 2,
&>\
This is the content\
</&>
<%def .show_content>\
<% $m->content %>\
</%def>
EOF
expect => <<'EOF',
This is the content
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'call_starts_with_newline',
description => 'make a comp call where the tag starts with a newline',
component => <<'EOF',
<&
.foo,
x => 1
&>\
<%def .foo>\
x is <% $ARGS{x} %>
</%def>
EOF
expect => <<'EOF',
x is 1
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'cleanup_init',
description => 'test that cleanup block has access to variables from init section',
component => <<'EOF',
<%init>
my $x = 7;
</%init>
<%cleanup>
$m->print("x is $x");
</%cleanup>
EOF
expect => <<'EOF',
x is 7
EOF
);
#------------------------------------------------------------
$group->add_test( name => 'cleanup_perl',
description => 'test that cleanup block has access to variables from perl section',
component => <<'EOF',
<%perl>
my $x = 7;
</%perl>
<%cleanup>
$m->print("x is $x");
</%cleanup>
EOF
expect => <<'EOF',
x is 7
EOF
);
#------------------------------------------------------------
return $group;
}
|