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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
#============================================================= -*-perl-*-
#
# t/stash-xs.t
#
# Template script testing (some elements of) the XS version of
# Template::Stash
#
# Written by Andy Wardley <abw@wardley.org>
#
# Copyright (C) 1996-2009 Andy Wardley. All Rights Reserved.
#
# This is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
#========================================================================
use strict;
use warnings;
use lib qw( ./lib ../lib ../blib/lib ../blib/arch ./blib/lib ./blib/arch );
use Template::Constants qw( :status );
use Template;
use Template::Test;
eval {
require Template::Stash::XS;
};
if ($@) {
warn $@;
skip_all('cannot load Template::Stash::XS');
}
#------------------------------------------------------------------------
# define some simple objects for testing
#------------------------------------------------------------------------
package Buggy;
sub new { bless {}, shift }
sub croak { my $self = shift; die @_ }
package ListObject;
package HashObject;
sub hello {
my $self = shift;
return "Hello $self->{ planet }";
}
sub goodbye {
my $self = shift;
return $self->no_such_method();
}
sub now_is_the_time_to_test_a_very_long_method_to_see_what_happens {
my $self = shift;
return $self->this_method_does_not_exist();
}
#-----------------------------------------------------------------------
# another object without overloaded comparison.
# http://rt.cpan.org/Ticket/Display.html?id=24044
#-----------------------------------------------------------------------
package CmpOverloadObject;
use overload ('cmp' => 'compare_overload', '<=>', 'compare_overload');
sub new { bless {}, shift };
sub hello {
return "Hello";
}
sub compare_overload {
die "Mayhem!";
}
package main;
my $count = 20;
my $data = {
foo => 10,
bar => {
baz => 20,
},
baz => sub {
return {
boz => ($count += 10),
biz => (shift || '<undef>'),
};
},
obj => bless({
name => 'an object',
}, 'AnObject'),
bop => sub { return ( bless ({ name => 'an object' }, 'AnObject') ) },
listobj => bless([10, 20, 30], 'ListObject'),
hashobj => bless({ planet => 'World' }, 'HashObject'),
cmp_ol => CmpOverloadObject->new(),
clean => sub {
my $error = shift;
$error =~ s/(\s*\(.*?\))?\s+at.*$//;
return $error;
},
correct => sub { die @_ },
buggy => Buggy->new(),
str_eval_die => sub {
# This is to test bug RT#47929
eval "use No::Such::Module::Exists";
return "str_eval_die returned";
},
};
my $stash = Template::Stash::XS->new($data);
match( $stash->get('foo'), 10 );
#match( $stash->get(['foo']), 10 ); # fails
match( $stash->get([ 'bar', 0, 'baz', 0 ]), 20 );
match( $stash->get('bar.baz'), 20 );
match( $stash->get('bar(10).baz'), 20 );
match( $stash->get('baz.boz'), 30 );
match( $stash->get('baz.boz'), 40 );
match( $stash->get('baz.biz'), '<undef>' );
match( $stash->get('baz(50).biz'), '<undef>' ); # args are ignored
#match( $stash->get('str_eval_die'), '' );
$stash->set( 'bar.buz' => 100 );
match( $stash->get('bar.buz'), 100 );
# test the dotop() method
match( $stash->dotop({ foo => 10 }, 'foo'), 10 );
my $stash_dbg = Template::Stash::XS->new({ %$data, _DEBUG => 1 });
my $ttlist = [
'default' => Template->new( STASH => $stash ),
'warn' => Template->new( STASH => $stash_dbg ),
];
test_expect(\*DATA, $ttlist, $data);
__DATA__
-- test --
-- name scalar list method --
[% foo = 'bar'; foo.join %]
-- expect --
bar
-- test --
a: [% a %]
-- expect --
a:
-- test --
-- use warn --
[% TRY; a; CATCH; "ERROR: $error"; END %]
-- expect --
ERROR: undef error - a is undefined
-- test --
-- use default --
[% myitem = 'foo' -%]
1: [% myitem %]
2: [% myitem.item %]
3: [% myitem.item.item %]
-- expect --
1: foo
2: foo
3: foo
-- test --
[% myitem = 'foo' -%]
[% "* $item\n" FOREACH item = myitem -%]
[% "+ $item\n" FOREACH item = myitem.list %]
-- expect --
* foo
+ foo
-- test --
[% myitem = 'foo' -%]
[% myitem.hash.value %]
-- expect --
foo
-- test --
[% myitem = 'foo'
mylist = [ 'one', myitem, 'three' ]
global.mylist = mylist
-%]
[% mylist.item %]
0: [% mylist.item(0) %]
1: [% mylist.item(1) %]
2: [% mylist.item(2) %]
-- expect --
one
0: one
1: foo
2: three
-- test --
[% "* $item\n" FOREACH item = global.mylist -%]
[% "+ $item\n" FOREACH item = global.mylist.list -%]
-- expect --
* one
* foo
* three
+ one
+ foo
+ three
-- test --
[% global.mylist.push('bar');
"* $item.key => $item.value\n" FOREACH item = global.mylist.hash -%]
-- expect --
* one => foo
* three => bar
-- test --
[% myhash = { msg => 'Hello World', things => global.mylist, a => 'alpha' };
global.myhash = myhash
-%]
* [% myhash.item('msg') %]
-- expect --
* Hello World
-- test --
[% global.myhash.delete('things') -%]
keys: [% global.myhash.keys.sort.join(', ') %]
-- expect --
keys: a, msg
-- test --
[% "* $item\n"
FOREACH item IN global.myhash.items.sort -%]
-- expect --
* a
* alpha
* Hello World
* msg
-- test --
[% items = [ 'foo', 'bar', 'baz' ];
take = [ 0, 2 ];
slice = items.$take;
slice.join(', ');
%]
-- expect --
foo, baz
-- test --
-- name slice of lemon --
[% items = {
foo = 'one',
bar = 'two',
baz = 'three'
}
take = [ 'foo', 'baz' ];
slice = items.$take;
slice.join(', ');
%]
-- expect --
one, three
-- test --
-- name slice of toast --
[% items = {
foo = 'one',
bar = 'two',
baz = 'three'
}
keys = items.keys.sort;
items.${keys}.join(', ');
%]
-- expect --
two, three, one
-- test --
[% i = 0 %]
[%- a = [ 0, 1, 2 ] -%]
[%- WHILE i < 3 -%]
[%- i %][% a.$i -%]
[%- i = i + 1 -%]
[%- END %]
-- expect --
001122
-- test --
[%- a = [ "alpha", "beta", "gamma", "delta" ] -%]
[%- b = "foo" -%]
[%- a.$b -%]
-- expect --
-- test --
[%- a = [ "alpha", "beta", "gamma", "delta" ] -%]
[%- b = "2" -%]
[%- a.$b -%]
-- expect --
gamma
-- test --
[% obj.name %]
-- expect --
an object
-- test --
[% obj.name.list.first %]
-- expect --
an object
-- test --
-- name bop --
[% bop.first.name %]
-- expect --
an object
-- test --
[% obj.items.first %]
-- expect --
name
-- test --
[% obj.items.1 %]
-- expect --
an object
-- test --
=[% size %]=
-- expect --
==
-- test --
[% USE Dumper;
TRY;
correct(["hello", "there"]);
CATCH;
error.info.join(', ');
END;
%]
==
[% TRY;
buggy.croak(["hello", "there"]);
CATCH;
error.info.join(', ');
END;
%]
-- expect --
hello, there
==
hello, there
-- test --
[% hash = { }
list = [ hash ]
list.last.message = 'Hello World';
"message: $list.last.message\n"
-%]
-- expect --
message: Hello World
# test Dave Howorth's patch (v2.15) which makes the stash more strict
# about what it considers to be a missing method error
-- test --
[% hashobj.hello %]
-- expect --
Hello World
-- test --
[% TRY; hashobj.goodbye; CATCH; "ERROR: "; clean(error); END %]
-- expect --
ERROR: undef error - Can't locate object method "no_such_method" via package "HashObject"
-- test --
[% TRY;
hashobj.now_is_the_time_to_test_a_very_long_method_to_see_what_happens;
CATCH;
"ERROR: "; clean(error);
END
%]
-- expect --
ERROR: undef error - Can't locate object method "this_method_does_not_exist" via package "HashObject"
-- test --
[% foo = { "one" = "bar" "" = "empty" } -%]
foo is { [% FOREACH k IN foo.keys.sort %]"[% k %]" = "[% foo.$k %]" [% END %]}
setting foo.one to baz
[% fookey = "one" foo.$fookey = "baz" -%]
foo is { [% FOREACH k IN foo.keys.sort %]"[% k %]" = "[% foo.$k %]" [% END %]}
setting foo."" to quux
[% fookey = "" foo.$fookey = "full" -%]
foo is { [% FOREACH k IN foo.keys.sort %]"[% k %]" = "[% foo.$k %]" [% END %]}
--expect --
foo is { "" = "empty" "one" = "bar" }
setting foo.one to baz
foo is { "" = "empty" "one" = "baz" }
setting foo."" to quux
foo is { "" = "full" "one" = "baz" }
# Exercise the object with the funky overloaded comparison
-- test --
[% cmp_ol.hello %]
-- expect --
Hello
-- test --
Before
[% TRY;
str_eval_die;
CATCH;
"caught error: $error";
END;
%]
After
-- expect --
Before
str_eval_die returned
After
-- test --
[% str_eval_die %]
-- expect --
str_eval_die returned
|