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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
|
#!perl -w
# $Id: view.t 2384 2005-12-14 04:27:23Z theory $
##############################################################################
# Set up the tests.
##############################################################################
use strict;
use Test::More $] < 5.008
? (skip_all => 'Older Carp lacks @CARP_NOT support')
: (tests => 394);
use File::Spec;
my $fn = File::Spec->catfile('t', 'view.t');
##############################################################################
# Create a simple class.
##############################################################################
package Class::Meta::Test;
use strict;
BEGIN {
Test::More->import;
use_ok('Class::Meta');
use_ok('Class::Meta::Types::Numeric');
use_ok('Class::Meta::Types::String');
}
BEGIN {
ok( my $c = Class::Meta->new(
key => 'person',
package => __PACKAGE__,
name => 'Class::Meta::TestPerson Class',
trust => 'Class::Meta::TrustMe',
desc => 'Special person class just for testing Class::Meta.',
), "Create Class::Meta object" );
# Add a constructor.
ok( $c->add_constructor( name => 'new',
create => 1 ),
"Add new constructor" );
# Add a protected constructor.
ok( $c->add_constructor( name => 'prot_new',
view => Class::Meta::PROTECTED,
create => 1 ),
"Add protected constructor" );
# Add a private constructor.
ok( $c->add_constructor( name => 'priv_new',
view => Class::Meta::PRIVATE,
create => 1 ),
"Add private constructor" );
# Add a trusted constructor.
ok( $c->add_constructor( name => 'trust_new',
view => Class::Meta::TRUSTED,
create => 1 ),
"Add trusted constructor" );
# Add a couple of attributes with created methods.
ok( $c->add_attribute( name => 'id',
view => Class::Meta::PUBLIC,
type => 'integer',
label => 'ID',
required => 1,
default => 22,
),
"Add id attribute" );
ok( $c->add_attribute( name => 'name',
view => Class::Meta::PROTECTED,
type => 'string',
label => 'Name',
required => 1,
default => '',
),
"Add protected name attribute" );
ok( $c->add_attribute( name => 'age',
view => Class::Meta::PRIVATE,
type => 'integer',
label => 'Age',
desc => "The person's age.",
required => 0,
default => 0,
),
"Add private age attribute" );
ok( $c->add_attribute( name => 'sn',
view => Class::Meta::TRUSTED,
type => 'string',
label => 'SN',
desc => "The person's serial number.",
required => 0,
default => '',
),
"Add trusted sn attribute" );
$c->build;
}
##############################################################################
# From within the package, the all attributes should just work.
##############################################################################
ok( my $obj = __PACKAGE__->new, "Create new object" );
ok( my $class = __PACKAGE__->my_class, "Get class object" );
is_deeply(
[map { $_->name } $class->attributes],
[qw(id name age sn)],
'Call to attributes() should return all attributes'
);
is_deeply(
[map { $_->name } $class->constructors],
[qw(new prot_new priv_new trust_new)],
'Call to constructors() should return all constructors'
);
# Check id public attribute.
is( $obj->id, 22, 'Check default ID' );
ok( $obj->id(12), "Set ID" );
is( $obj->id, 12, 'Check 12 ID' );
ok( my $attr = $class->attributes('id'), 'Get "id" attribute object' );
is( $attr->get($obj), 12, "Check indirect 12 ID" );
ok( $attr->set($obj, 15), "Indirectly set ID" );
is( $attr->get($obj), 15, "Check indirect 15 ID" );
# Check name protected attribute succeeds.
is( $obj->name, '', 'Check empty name' );
ok( $obj->name('Larry'), "Set name" );
is( $obj->name, 'Larry', 'Check "Larry" name' );
ok( $attr = $class->attributes('name'), 'Get "name" attribute object' );
is( $attr->get($obj), 'Larry', 'Check indirect "Larry" name' );
ok( $attr->set($obj, 'Chip'), "Indirectly set name" );
is( $attr->get($obj), 'Chip', 'Check indirect "chip" name' );
# Check age private attribute succeeds.
is( $obj->age, 0, 'Check default age' );
ok( $obj->age(42), "Set age" );
is( $obj->age, 42, 'Check 42 age' );
ok( $attr = $class->attributes('age'), 'Get "age" attribute object' );
is( $attr->get($obj), 42, "Check indirect 12 age" );
ok( $attr->set($obj, 15), "Indirectly set age" );
is( $attr->get($obj), 15, "Check indirect 15 age" );
# Check sn trusted attribute succeeds.
is( $obj->sn, '', 'Check empty sn' );
ok( $obj->sn('123456789'), "Set sn" );
is( $obj->sn, '123456789', 'Check "123456789" sn' );
ok( $attr = $class->attributes('sn'), 'Get "sn" attribute object' );
is( $attr->get($obj), '123456789', 'Check indirect "123456789" sn' );
ok( $attr->set($obj, '987654321'), "Indirectly set sn" );
is( $attr->get($obj), '987654321', 'Check indirect "987654321" sn' );
# Make sure that we can set all of the attributes via new().
ok( $obj = __PACKAGE__->new( id => 10,
name => 'Damian',
sn => 'au',
age => 35),
"Create another new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
is( $obj->age, 35, 'Check 35 age' );
is( $obj->sn, 'au', 'Check sn is "au"');
# Do the same with the constructor object.
ok( my $ctor = $class->constructors('new'), 'Get "new" constructor object' );
ok( $obj = $ctor->call(__PACKAGE__,
id => 10,
name => 'Damian',
sn => 'au',
age => 35),
"Create another new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
is( $obj->age, 35, 'Check 35 age' );
is( $obj->sn, 'au', 'Check sn is "au"');
# Make sure that we can set all of the attributes via prot_new().
ok( $obj = __PACKAGE__->prot_new( id => 10,
name => 'Damian',
sn => 'au',
age => 35),
"Create another prot_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
is( $obj->age, 35, 'Check 35 age' )
;is( $obj->sn, 'au', 'Check sn is "au"');
# Do the same with the constructor object.
ok( $ctor = $class->constructors('prot_new'),
'Get "prot_new" constructor object' );
ok( $obj = $ctor->call(__PACKAGE__,
id => 10,
name => 'Damian',
sn => 'au',
age => 35),
"Create another prot_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
is( $obj->age, 35, 'Check 35 age' );
is( $obj->sn, 'au', 'Check sn is "au"');
# Make sure that we can set all of the attributes via priv_new().
ok( $obj = __PACKAGE__->priv_new( id => 10,
name => 'Damian',
sn => 'au',
age => 35),
"Create another priv_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
is( $obj->age, 35, 'Check 35 age' );
is( $obj->sn, 'au', 'Check sn is "au"');
# Do the same with the constructor object.
ok( $ctor = $class->constructors('priv_new'),
'Get "priv_new" constructor object' );
ok( $obj = $ctor->call(__PACKAGE__,
id => 10,
name => 'Damian',
sn => 'au',
age => 35),
"Create another priv_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
is( $obj->age, 35, 'Check 35 age' );
is( $obj->sn, 'au', 'Check sn is "au"');
# Make sure that we can set all of the attributes via trust_new().
ok( $obj = __PACKAGE__->trust_new( id => 10,
name => 'Damian',
sn => 'au',
age => 35),
"Create another trust_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
is( $obj->age, 35, 'Check 35 age' );
is( $obj->sn, 'au', 'Check sn is "au"');
# Do the same with the constructor object.
ok( $ctor = $class->constructors('trust_new'),
'Get "trust_new" constructor object' );
ok( $obj = $ctor->call(__PACKAGE__,
id => 10,
name => 'Damian',
sn => 'au',
age => 35),
"Create another priv_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
is( $obj->age, 35, 'Check 35 age' );
is( $obj->sn, 'au', 'Check sn is "au"');
##############################################################################
# Set up an inherited package.
##############################################################################
package Class::Meta::Testarama;
use strict;
use base 'Class::Meta::Test';
BEGIN {
Test::More->import;
Class::Meta->new(key => 'testarama')->build;
}
ok( $obj = __PACKAGE__->new, "Create new Testarama object" );
ok( $class = __PACKAGE__->my_class, "Get Testarama class object" );
is_deeply( [map { $_->name } $class->attributes], [qw(id name)],
"Call to attributes() should return public and protected attrs" );
is_deeply( [map { $_->name } $class->constructors], [qw(new prot_new)],
"Call to constructors() should return public and protected ctors" );
# Check id public attribute.
is( $obj->id, 22, 'Check default ID' );
ok( $obj->id(12), "Set ID" );
is( $obj->id, 12, 'Check 12 ID' );
ok( $attr = $class->attributes('id'), 'Get "id" attribute object' );
is( $attr->get($obj), 12, "Check indirect 12 ID" );
ok( $attr->set($obj, 15), "Indirectly set ID" );
is( $attr->get($obj), 15, "Check indirect 15 ID" );
# Check name protected attribute succeeds.
is( $obj->name, '', 'Check empty name' );
ok( $obj->name('Larry'), "Set name" );
is( $obj->name, 'Larry', 'Check Larry name' );
ok( $attr = $class->attributes('name'), 'Get "name" attribute object' );
is( $attr->get($obj), 'Larry', 'Check indirect "Larry" name' );
ok( $attr->set($obj, 'Chip'), "Indirectly set name" );
is( $attr->get($obj), 'Chip', 'Check indirect "chip" name' );
# Check age private attribute
eval { $obj->age(12) };
main::chk( 'private exception',
qr/age is a private attribute of Class::Meta::Test/);
eval { $obj->age };
main::chk( 'private exception again',
qr/age is a private attribute of Class::Meta::Test/);
# Check that age fails when accessed indirectly, too.
ok( $attr = $class->attributes('age'), 'Get "age" attribute object' );
eval { $attr->set($obj, 12) };
main::chk('indirect private exception',
qr/age is a private attribute of Class::Meta::Test/);
eval { $attr->get($obj) };
main::chk('another indirect private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Check sn trusted attribute fails.
eval { $obj->sn('foo') };
main::chk( 'trusted exception',
qr/sn is a trusted attribute of Class::Meta::Test/);
eval { $obj->sn };
main::chk( 'trusted exception again',
qr/sn is a trusted attribute of Class::Meta::Test/);
# Check that sn fails when accessed indirectly, too.
ok( $attr = $class->attributes('sn'), 'Get "sn" attribute object' );
eval { $attr->set($obj, 'foo') };
main::chk('indirect trusted exception',
qr/sn is a trusted attribute of Class::Meta::Test/);
eval { $attr->get($obj) };
main::chk('another indirect trusted exception',
qr/sn is a trusted attribute of Class::Meta::Test/);
# Make sure that we can set protected attributes via new().
ok( $obj = __PACKAGE__->new( id => 10,
name => 'Damian'),
"Create another new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
# Make sure that the private attribute fails.
$ENV{FOO} = 1;
eval { __PACKAGE__->new( age => 44 ) };
delete $ENV{FOO};
main::chk('constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Do the same with the new constructor object.
ok( $ctor = $class->constructors('new'), 'Get "new" constructor object' );
ok( $obj = $ctor->call(__PACKAGE__,
id => 10,
name => 'Damian'),
"Create another new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
# Make sure that the private attribute fails.
eval { $ctor->call(__PACKAGE__, age => 44 ) };
main::chk('indirect constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Make sure that we can set protected attributes via prot_new().
ok( $obj = __PACKAGE__->prot_new( id => 10,
name => 'Damian'),
"Create another prot_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
# Make sure that the private attribute fails.
eval { __PACKAGE__->prot_new( age => 44 ) };
main::chk('constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Do the same with the prot_new constructor object.
ok( $ctor = $class->constructors('prot_new'),
'Get "prot_new" constructor object' );
ok( $obj = $ctor->call(__PACKAGE__,
id => 10,
name => 'Damian'),
"Create another prot_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->name, 'Damian', 'Check Damian name' );
# Make sure that the private attribute fails.
eval { $ctor->call(__PACKAGE__, age => 44 ) };
main::chk('indirect constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Make sure that the private constructor fails.
eval { __PACKAGE__->priv_new };
main::chk('priv_new exeption',
qr/priv_new is a private constructor of Class::Meta::Test/);
# Make sure the same is true of the priv_new constructor object.
ok( $ctor = $class->constructors('priv_new'),
'Get "priv_new" constructor object' );
eval { $ctor->call(__PACKAGE__) };
main::chk('indirect priv_new exeption',
qr/priv_new is a private constructor of Class::Meta::Test/);
##############################################################################
# Set up a trusted package.
##############################################################################
package Class::Meta::TrustMe;
use strict;
BEGIN { Test::More->import }
ok( $obj = Class::Meta::Test->new, "Create new Test object" );
ok( $class = Class::Meta::Test->my_class, "Get Test class object" );
is_deeply( [map { $_->name } $class->attributes], [qw(id sn)],
"Call to attributes() should return public and trusted attrs" );
is_deeply(
[map { $_->name } Class::Meta::Testarama->my_class->attributes],
[qw(id sn)],
'Call to attributes() should return public and trusted attrs',
);
is_deeply(
[map { $_->name } Class::Meta::Testarama->my_class->constructors],
[qw(new trust_new)],
'Call to constructors() should return public and trusted ctors',
);
# Check id public attribute.
is( $obj->id, 22, 'Check default ID' );
ok( $obj->id(12), "Set ID" );
is( $obj->id, 12, 'Check 12 ID' );
ok( $attr = $class->attributes('id'), 'Get "id" attribute object' );
is( $attr->get($obj), 12, "Check indirect 12 ID" );
ok( $attr->set($obj, 15), "Indirectly set ID" );
is( $attr->get($obj), 15, "Check indirect 15 ID" );
# Check name protected attribute
eval { $obj->name('foo') };
main::chk('protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
eval { $obj->name };
main::chk('another protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
# Check that name fails when accessed indirectly, too.
ok( $attr = $class->attributes('name'), 'Get "name" attribute object' );
eval { $attr->set($obj, 'foo') };
main::chk('indirect protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
eval { $attr->get($obj) };
main::chk('another indirect protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
# Check age private attribute
eval { $obj->age(12) };
main::chk( 'private exception',
qr/age is a private attribute of Class::Meta::Test/);
eval { $obj->age };
main::chk( 'private exception again',
qr/age is a private attribute of Class::Meta::Test/);
# Check that age fails when accessed indirectly, too.
ok( $attr = $class->attributes('age'), 'Get "age" attribute object' );
eval { $attr->set($obj, 12) };
main::chk('indirect private exception',
qr/age is a private attribute of Class::Meta::Test/);
eval { $attr->get($obj) };
main::chk('another indirect private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Check sn trusted attribute succeeds.
is( $obj->sn, '', 'Check empty sn' );
ok( $obj->sn('123456789'), "Set sn" );
is( $obj->sn, '123456789', 'Check "123456789" sn' );
ok( $attr = $class->attributes('sn'), 'Get "sn" attribute object' );
is( $attr->get($obj), '123456789', 'Check indirect "123456789" sn' );
ok( $attr->set($obj, '987654321'), "Indirectly set sn" );
is( $attr->get($obj), '987654321', 'Check indirect "987654321" sn' );
# Make sure that sn trusted attribute works for subclasses, too.
ok( $obj = Class::Meta::Testarama->new, "Create new Testarama object" );
is( $obj->sn, '', 'Check empty sn' );
ok( $obj->sn('123456789'), "Set sn" );
is( $obj->sn, '123456789', 'Check "123456789" sn' );
ok( $attr = $class->attributes('sn'), 'Get "sn" attribute object' );
is( $attr->get($obj), '123456789', 'Check indirect "123456789" sn' );
ok( $attr->set($obj, '987654321'), "Indirectly set sn" );
is( $attr->get($obj), '987654321', 'Check indirect "987654321" sn' );
# Make sure that we can set trusted attributes via new().
ok( $obj = Class::Meta::Test->new( id => 10,
sn => 'foo'),
"Create another new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->sn, 'foo', 'Check foo sn' );
# Make sure that the private attribute fails.
eval { Class::Meta::Test->new( age => 44 ) };
main::chk('constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Make sure that the protected attribute fails.
eval { Class::Meta::Test->new( name => 'Damian' ) };
main::chk('constructor protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
# Do the same with the new constructor object.
ok( $ctor = $class->constructors('new'), 'Get "new" constructor object' );
ok( $obj = $ctor->call('Class::Meta::Test',
id => 10,
sn => 'foo'),
"Create another new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->sn, 'foo', 'Check foo sn' );
# Make sure that the private attribute fails.
eval { $ctor->call('Class::Meta::Test', age => 44 ) };
main::chk('indirect constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Make sure that the protected attribute fails.
eval { $ctor->call('Class::Meta::Test', name => 'Damian' ) };
main::chk('indirect constructor protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
# Make sure that we can set trusted attributes via trust_new().
ok( $obj = Class::Meta::Test->trust_new( id => 10,
sn => 'foo'),
"Create another trust_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->sn, 'foo', 'Check foo name' );
# Make sure that the private attribute fails.
eval { Class::Meta::Test->trust_new( age => 44 ) };
main::chk('constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Make sure that the protected attribute fails.
eval { Class::Meta::Test->trust_new( name => 'Damian' ) };
main::chk('constructor protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
# Do the same with the trust_new constructor object.
ok( $ctor = $class->constructors('trust_new'),
'Get "trust_new" constructor object' );
ok( $obj = $ctor->call('Class::Meta::Test',
id => 10,
sn => 'foo'),
"Create another trust_new object" );
is( $obj->id, 10, 'Check 10 ID' );
is( $obj->sn, 'foo', 'Check foo name' );
# Make sure that the private attribute fails.
eval { $ctor->call('Class::Meta::Test', age => 44 ) };
main::chk('indirect constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Make sure that the private attribute fails.
eval { $ctor->call('Class::Meta::Test', age => 44 ) };
main::chk('indirect constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Make sure that the protected constructor fails.
eval { Class::Meta::Test->prot_new };
main::chk('prot_new exeption',
qr/prot_new is a protected constrctor of Class::Meta::Test/);
# Make sure the same is true of the priv_new constructor object.
ok( $ctor = $class->constructors('priv_new'),
'Get "priv_new" constructor object' );
eval { $ctor->call('Class::Meta::Test') };
main::chk('indirect priv_new exeption',
qr/priv_new is a private constructor of Class::Meta::Test/);
##############################################################################
# Now do test in a completely independent package.
##############################################################################
package main;
ok( $obj = Class::Meta::Test->new, "Create new object in main" );
ok( $class = Class::Meta::Test->my_class, "Get class object in main" );
# Make sure we can access id.
is( $obj->id, 22, 'Check default ID' );
ok( $obj->id(12), "Set ID" );
is( $obj->id, 12, 'Check 12 ID' );
ok( $attr = $class->attributes('id'), 'Get "id" attribute object' );
is( $attr->get($obj), 12, "Check indirect 12 ID" );
ok( $attr->set($obj, 15), "Indirectly set ID" );
is( $attr->get($obj), 15, "Check indirect 15 ID" );
# Check name protected attribute
eval { $obj->name('foo') };
chk('protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
eval { $obj->name };
chk('another protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
# Check that name fails when accessed indirectly, too.
ok( $attr = $class->attributes('name'), 'Get "name" attribute object' );
eval { $attr->set($obj, 'foo') };
chk('indirect protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
eval { $attr->get($obj) };
chk('another indirect protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
# Check sn trusted attribute, which can't be accessed by subclasses.
eval { $obj->sn('foo') };
main::chk( 'trusted exception',
qr/sn is a trusted attribute of Class::Meta::Test/);
eval { $obj->sn };
main::chk( 'trusted exception again',
qr/sn is a trusted attribute of Class::Meta::Test/);
# Check that sn fails when accessed indirectly, too.
ok( $attr = $class->attributes('sn'), 'Get "sn" attribute object' );
eval { $attr->set($obj, 'foo') };
main::chk('indirect trusted exception',
qr/sn is a trusted attribute of Class::Meta::Test/);
eval { $attr->get($obj) };
main::chk('another indirect trusted exception',
qr/sn is a trusted attribute of Class::Meta::Test/);
# Check age private attribute
eval { $obj->age(12) };
chk( 'private exception',
qr/age is a private attribute of Class::Meta::Test/ );
eval { $obj->age };
chk( 'another private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Check that age fails when accessed indirectly, too.
ok( $attr = $class->attributes('age'), 'Get "age" attribute object' );
eval { $attr->set($obj, 12) };
chk( 'indirect private exception',
qr/age is a private attribute of Class::Meta::Test/);
eval { $attr->get($obj) };
chk( 'another indirect private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Try the constructor with parameters.
ok( $obj = Class::Meta::Test->new( id => 1 ), "Create new object with id" );
is( $obj->id, 1, 'Check 1 ID' );
ok( $ctor = $class->constructors('new'), "Get new constructor" );
ok( $obj = $ctor->call('Class::Meta::Test', id => 52 ),
"Indirectly create new object with id" );
is( $obj->id, 52, 'Check 52 ID' );
# Make sure that the protected attribute fails.
eval { Class::Meta::Test->new( name => 'foo' ) };
chk( 'constructor protected exception',
qr/name is a protected attribute of Class::Meta::Test/ );
eval { $ctor->call('Class::Meta::Test', name => 'foo' ) };
chk( 'indirect constructor protected exception',
qr/name is a protected attribute of Class::Meta::Test/);
# Make sure that the private attribute fails.
eval { Class::Meta::Test->new( age => 44 ) };
chk('constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
eval { $ctor->call('Class::Meta::Test', age => 44 ) };
chk( 'indirect constructor private exception',
qr/age is a private attribute of Class::Meta::Test/);
# Make sure that the protected constructor fails.
eval { Class::Meta::Test->prot_new };
chk( 'prot_new exeption',
qr/prot_new is a protected constrctor of Class::Meta::Test/ );
# Make sure the same is true of the prot_new constructor object.
ok( $ctor = $class->constructors('prot_new'),
'Get "prot_new" constructor object' );
eval { $ctor->call(__PACKAGE__) };
chk( 'indirect prot_new exeption',
qr/prot_new is a protected constrctor of Class::Meta::Test/ );
# Make sure that the private constructor fails.
eval { Class::Meta::Test->priv_new };
chk( 'priv_new exeption',
qr/priv_new is a private constructor of Class::Meta::Test/ );
# Make sure the same is true of the priv_new constructor object.
ok( $ctor = $class->constructors('priv_new'),
'Get "priv_new" constructor object' );
eval { $ctor->call(__PACKAGE__) };
chk( 'indirect priv_new exeption',
qr/priv_new is a private constructor of Class::Meta::Test/ );
sub chk {
my ($name, $qr) = @_;
# Catch the exception.
ok( my $err = $@, "Caught $name error" );
# Check its message.
like( $err, $qr, "Correct error" );
# Make sure it refers to this file.
like( $err, qr/(?:at\s+\Q$fn\E|\Q$fn\E\s+at)\s+line/, 'Correct context' );
# Make sure it doesn't refer to other Class::Meta files.
unlike( $err, qr|lib/Class/Meta|, 'Not incorrect context')
}
|