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 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
|
use strict;
use warnings;
use Test::More;
use Test::Exception;
use File::Path qw/rmtree make_path/;
use Class::Unload;
use File::Temp qw/tempfile tempdir/;
use IO::File;
use DBIx::Class::Schema::Loader ();
use DBIx::Class::Schema::Loader::Utils 'slurp_file';
use Lingua::EN::Inflect::Number ();
use lib qw(t/lib);
use make_dbictest_db_with_unique;
use dbixcsl_test_dir qw/$tdir/;
my $DUMP_DIR = "$tdir/common_dump";
rmtree $DUMP_DIR;
my $SCHEMA_CLASS = 'DBIXCSL_Test::Schema';
my $RESULT_COUNT = 7;
sub class_content_contains;
sub contains;
# test dynamic schema in 0.04006 mode
{
my $res = run_loader();
my $warning = $res->{warnings}[0];
contains $warning, 'Dynamic schema',
'dynamic schema in backcompat mode detected';
contains $warning, 'run in 0.04006 mode',
'dynamic schema in 0.04006 mode warning';
contains $warning, 'DBIx::Class::Schema::Loader::Manual::UpgradingFromV4',
'warning refers to upgrading doc';
run_v4_tests($res);
}
# setting naming accessor on dynamic schema should disable warning (even when
# we're setting it to 'v4' .)
{
my $res = run_loader(naming => 'v4');
is_deeply $res->{warnings}, [], 'no warnings with naming attribute set';
run_v4_tests($res);
}
# test upgraded dynamic schema
{
my $res = run_loader(naming => 'current');
is_deeply $res->{warnings}, [], 'no warnings with naming attribute set';
run_v7_tests($res);
}
# test upgraded dynamic schema with external content loaded
{
my $temp_dir = setup_load_external({
Quuxs => 'Bazs',
Bar => 'Foos',
});
my $res = run_loader(naming => 'current', use_namespaces => 0);
my $schema = $res->{schema};
is scalar @{ $res->{warnings} }, 1,
'correct nummber of warnings for upgraded dynamic schema with external ' .
'content for unsingularized Result.';
my $warning = $res->{warnings}[0];
contains $warning, 'Detected external content',
'detected external content warning';
lives_and { is $schema->resultset('Quux')->find(1)->a_method, 'hlagh' }
'external custom content for unsingularized Result was loaded by upgraded ' .
'dynamic Schema';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'unsingularized class names in external content are translated';
lives_and { is $schema->resultset('Bar')->find(1)->a_method, 'hlagh' }
'external content from unchanged Result class';
lives_and { isa_ok $schema->resultset('Bar')->find(1)->foorel,
$res->{classes}{foos} }
'unsingularized class names in external content from unchanged Result class ' .
'names are translated';
run_v7_tests($res);
}
# test upgraded dynamic schema with use_namespaces with external content loaded
{
my $temp_dir = setup_load_external({
Quuxs => 'Bazs',
Bar => 'Foos',
});
my $res = run_loader(naming => 'current', use_namespaces => 1);
my $schema = $res->{schema};
is scalar @{ $res->{warnings} }, 2,
'correct nummber of warnings for upgraded dynamic schema with external ' .
'content for unsingularized Result with use_namespaces.';
my $warning = $res->{warnings}[0];
contains $warning, "Detected external content",
'detected external content warning';
lives_and { is $schema->resultset('Quux')->find(1)->a_method, 'hlagh' }
'external custom content for unsingularized Result was loaded by upgraded ' .
'dynamic Schema';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'unsingularized class names in external content are translated';
lives_and { isa_ok $schema->resultset('Bar')->find(1)->foorel,
$res->{classes}{foos} }
'unsingularized class names in external content from unchanged Result class ' .
'names are translated';
run_v7_tests($res);
}
# test upgraded static schema with external content loaded
{
clean_dumpdir();
my $temp_dir = setup_load_external({
Quuxs => 'Bazs',
Bar => 'Foos',
});
write_v4_schema_pm();
my $res = run_loader(static => 1, naming => 'current');
my $schema = $res->{schema};
run_v7_tests($res);
lives_and { is $schema->resultset('Quux')->find(1)->a_method, 'hlagh' }
'external custom content for unsingularized Result was loaded by upgraded ' .
'static Schema';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'unsingularized class names in external content are translated';
lives_and { isa_ok $schema->resultset('Bar')->find(1)->foorel,
$res->{classes}{foos} }
'unsingularized class names in external content from unchanged Result class ' .
'names are translated in static schema';
class_content_contains $schema, $res->{classes}{quuxs}, "package ${SCHEMA_CLASS}::Quux;",
'package line translated correctly from external custom content in static dump';
class_content_contains $schema, $res->{classes}{quuxs}, "sub a_method { 'hlagh' }",
'external custom content loaded into static dump correctly';
}
# test running against v4 schema without upgrade, twice, then upgrade
{
clean_dumpdir();
write_v4_schema_pm();
my $res = run_loader(static => 1);
my $warning = $res->{warnings}[1];
contains $warning, "static schema",
'static schema in backcompat mode detected';
contains $warning, "0.04006",
'correct version detected';
contains $warning, "DBIx::Class::Schema::Loader::Manual::UpgradingFromV4",
'refers to upgrading doc';
is scalar @{ $res->{warnings} }, 4,
'correct number of warnings for static schema in backcompat mode';
run_v4_tests($res);
add_custom_content($res->{schema}, {
Quuxs => 'Bazs'
});
# Rerun the loader in backcompat mode to make sure it's still in backcompat
# mode.
$res = run_loader(static => 1);
run_v4_tests($res);
# now upgrade the schema
$res = run_loader(
static => 1,
naming => 'current',
use_namespaces => 1
);
my $schema = $res->{schema};
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on upgrading static schema (with "naming" set)';
contains $res->{warnings}[1], "dump completed",
'correct warnings on upgrading static schema (with "naming" set)';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on upgrading static schema (with "naming" set)'
or diag @{ $res->{warnings} };
run_v7_tests($res);
is result_count('Result'), $RESULT_COUNT,
'un-singularized results were replaced during upgrade';
# check that custom content was preserved
lives_and { is $schema->resultset('Quux')->find(1)->b_method, 'dongs' }
'custom content was carried over from un-singularized Result';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'unsingularized class names in custom content are translated';
class_content_contains $schema, $res->{classes}{quuxs}, "sub b_method { 'dongs' }",
'custom content from unsingularized Result loaded into static dump correctly';
}
# test running against v4 schema without upgrade, then upgrade with
# use_namespaces not explicitly set
{
clean_dumpdir();
write_v4_schema_pm();
my $res = run_loader(static => 1);
my $warning = $res->{warnings}[1];
contains $warning, "static schema",
'static schema in backcompat mode detected';
contains $warning, "0.04006",
'correct version detected';
contains $warning, "DBIx::Class::Schema::Loader::Manual::UpgradingFromV4",
'refers to upgrading doc';
is scalar @{ $res->{warnings} }, 4,
'correct number of warnings for static schema in backcompat mode';
run_v4_tests($res);
add_custom_content($res->{schema}, {
Quuxs => 'Bazs'
});
# now upgrade the schema
$res = run_loader(
static => 1,
naming => 'current'
);
my $schema = $res->{schema};
contains $res->{warnings}[0], "load_classes",
'correct warnings on upgrading static schema (with "naming" set and ' .
'use_namespaces not set)';
contains $res->{warnings}[1], "Dumping manual schema",
'correct warnings on upgrading static schema (with "naming" set and ' .
'use_namespaces not set)';
contains $res->{warnings}[2], "dump completed",
'correct warnings on upgrading static schema (with "naming" set and ' .
'use_namespaces not set)';
is scalar @{ $res->{warnings} }, 3,
'correct number of warnings on upgrading static schema (with "naming" set)'
or diag @{ $res->{warnings} };
run_v7_tests($res);
is result_count(), $RESULT_COUNT,
'un-singularized results were replaced during upgrade';
# check that custom content was preserved
lives_and { is $schema->resultset('Quux')->find(1)->b_method, 'dongs' }
'custom content was carried over from un-singularized Result';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'unsingularized class names in custom content are translated';
class_content_contains $schema, $res->{classes}{quuxs}, "sub b_method { 'dongs' }",
'custom content from unsingularized Result loaded into static dump correctly';
}
# test running against v4 schema with load_namespaces, upgrade to current but
# downgrade to load_classes, with external content
{
clean_dumpdir();
my $temp_dir = setup_load_external({
Quuxs => 'Bazs',
Bar => 'Foos',
}, { result_namespace => 'Result' });
write_v4_schema_pm(use_namespaces => 1);
my $res = run_loader(static => 1);
my $warning = $res->{warnings}[0];
contains $warning, "static schema",
'static schema in backcompat mode detected';
contains $warning, "0.04006",
'correct version detected';
contains $warning, "DBIx::Class::Schema::Loader::Manual::UpgradingFromV4",
'refers to upgrading doc';
is scalar @{ $res->{warnings} }, 3,
'correct number of warnings for static schema in backcompat mode';
run_v4_tests($res);
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::Result::Quuxs',
'use_namespaces in backcompat mode';
add_custom_content($res->{schema}, {
Quuxs => 'Bazs',
}, {
result_namespace => 'Result',
rel_name_map => { QuuxBaz => 'bazrel2' },
});
# now upgrade the schema to current but downgrade to load_classes
$res = run_loader(
static => 1,
naming => 'current',
use_namespaces => 0,
);
my $schema = $res->{schema};
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on upgrading static schema (with "naming" set and ' .
'use_namespaces => 0)';
contains $res->{warnings}[1], "dump completed",
'correct warnings on upgrading static schema (with "naming" set and ' .
'use_namespaces => 0)';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on upgrading static schema (with "naming" set)'
or diag @{ $res->{warnings} };
run_v7_tests($res);
is result_count(), $RESULT_COUNT,
'un-singularized results were replaced during upgrade and Result dir removed';
ok ((not -d result_dir('Result')),
'Result dir was removed for load_classes downgrade');
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::Quux',
'load_classes in upgraded mode';
# check that custom and external content was preserved
lives_and { is $schema->resultset('Quux')->find(1)->b_method, 'dongs' }
'custom content was carried over from un-singularized Result';
lives_and { is $schema->resultset('Quux')->find(1)->a_method, 'hlagh' }
'external content was carried over from un-singularized Result';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel2,
$res->{classes}{bazs} }
'unsingularized class names in custom content are translated';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'unsingularized class names in external content are translated';
lives_and { isa_ok $schema->resultset('Bar')->find(1)->foorel,
$res->{classes}{foos} }
'unsingularized class names in external content from unchanged Result class ' .
'names are translated in static schema';
class_content_contains $schema, $res->{classes}{quuxs}, "sub a_method { 'hlagh' }",
'external content from unsingularized Result loaded into static dump correctly';
class_content_contains $schema, $res->{classes}{quuxs}, "sub b_method { 'dongs' }",
'custom content from unsingularized Result loaded into static dump correctly';
}
# test a regular schema with use_namespaces => 0 upgraded to
# use_namespaces => 1
{
my $res = run_loader(
clean_dumpdir => 1,
static => 1,
use_namespaces => 0,
naming => 'current',
);
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on dumping static schema with use_namespaces => 0';
contains $res->{warnings}[1], "dump completed",
'correct warnings on dumping static schema with use_namespaces => 0';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on dumping static schema with use_namespaces => 0'
or diag @{ $res->{warnings} };
run_v7_tests($res);
my $schema = $res->{schema};
add_custom_content($res->{schema}, {
Quux => 'Baz'
});
# test that with no use_namespaces option, there is a warning and
# load_classes is preserved
$res = run_loader(static => 1, naming => 'current');
contains $res->{warnings}[0], "load_classes",
'correct warnings on re-dumping static schema with load_classes';
contains $res->{warnings}[1], "Dumping manual schema",
'correct warnings on re-dumping static schema with load_classes';
contains $res->{warnings}[2], "dump completed",
'correct warnings on re-dumping static schema with load_classes';
is scalar @{ $res->{warnings} }, 3,
'correct number of warnings on re-dumping static schema with load_classes'
or diag @{ $res->{warnings} };
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::Quux',
'load_classes preserved on re-dump';
run_v7_tests($res);
# now upgrade the schema to use_namespaces
$res = run_loader(
static => 1,
use_namespaces => 1,
naming => 'current',
);
$schema = $res->{schema};
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on upgrading to use_namespaces';
contains $res->{warnings}[1], "dump completed",
'correct warnings on upgrading to use_namespaces';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on upgrading to use_namespaces'
or diag @{ $res->{warnings} };
run_v7_tests($res);
my @schema_files = schema_files();
is 1, (scalar @schema_files),
"schema dir contains only 1 entry";
like $schema_files[0], qr{/Result\z},
"schema dir contains only a Result/ directory";
# check that custom content was preserved
lives_and { is $schema->resultset('Quux')->find(1)->b_method, 'dongs' }
'custom content was carried over during use_namespaces upgrade';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'un-namespaced class names in custom content are translated';
class_content_contains $schema, $res->{classes}{quuxs}, "sub b_method { 'dongs' }",
'custom content from un-namespaced Result loaded into static dump correctly';
}
# test a regular schema with default use_namespaces => 1, redump, and downgrade
# to load_classes
{
my $res = run_loader(clean_dumpdir => 1, static => 1, naming => 'current');
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on dumping static schema';
contains $res->{warnings}[1], "dump completed",
'correct warnings on dumping static schema';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on dumping static schema'
or diag @{ $res->{warnings} };
run_v7_tests($res);
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::Result::Quux',
'defaults to use_namespaces on regular dump';
add_custom_content($res->{schema}, { Quux => 'Baz' }, { result_namespace => 'Result' });
# test that with no use_namespaces option, use_namespaces is preserved
$res = run_loader(static => 1, naming => 'current');
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on re-dumping static schema';
contains $res->{warnings}[1], "dump completed",
'correct warnings on re-dumping static schema';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on re-dumping static schema'
or diag @{ $res->{warnings} };
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::Result::Quux',
'use_namespaces preserved on re-dump';
run_v7_tests($res);
# now downgrade the schema to load_classes
$res = run_loader(
static => 1,
use_namespaces => 0,
naming => 'current',
);
my $schema = $res->{schema};
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on downgrading to load_classes';
contains $res->{warnings}[1], "dump completed",
'correct warnings on downgrading to load_classes';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on downgrading to load_classes'
or diag @{ $res->{warnings} };
run_v7_tests($res);
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::Quux',
'load_classes downgrade correct';
is result_count(), $RESULT_COUNT,
'correct number of Results after upgrade and Result dir removed';
ok ((not -d result_dir('Result')),
'Result dir was removed for load_classes downgrade');
# check that custom content was preserved
lives_and { is $schema->resultset('Quux')->find(1)->b_method, 'dongs' }
'custom content was carried over during load_classes downgrade';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'namespaced class names in custom content are translated during load_classes '.
'downgrade';
class_content_contains $schema, $res->{classes}{quuxs}, "sub b_method { 'dongs' }",
'custom content from namespaced Result loaded into static dump correctly '.
'during load_classes downgrade';
}
# test a regular schema with use_namespaces => 1 and a custom result_namespace
# downgraded to load_classes
{
my $res = run_loader(
clean_dumpdir => 1,
static => 1,
result_namespace => 'MyResult',
naming => 'current',
);
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on dumping static schema';
contains $res->{warnings}[1], "dump completed",
'correct warnings on dumping static schema';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on dumping static schema'
or diag @{ $res->{warnings} };
run_v7_tests($res);
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::MyResult::Quux',
'defaults to use_namespaces and uses custom result_namespace';
add_custom_content($res->{schema}, { Quux => 'Baz' }, { result_namespace => 'MyResult' });
# test that with no use_namespaces option, use_namespaces is preserved, and
# the custom result_namespace is preserved
$res = run_loader(static => 1, naming => 'current');
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on re-dumping static schema';
contains $res->{warnings}[1], "dump completed",
'correct warnings on re-dumping static schema';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on re-dumping static schema'
or diag @{ $res->{warnings} };
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::MyResult::Quux',
'use_namespaces and custom result_namespace preserved on re-dump';
run_v7_tests($res);
# now downgrade the schema to load_classes
$res = run_loader(
static => 1,
use_namespaces => 0,
naming => 'current',
);
my $schema = $res->{schema};
contains $res->{warnings}[0], "Dumping manual schema",
'correct warnings on downgrading to load_classes';
contains $res->{warnings}[1], "dump completed",
'correct warnings on downgrading to load_classes';
is scalar @{ $res->{warnings} }, 2,
'correct number of warnings on downgrading to load_classes'
or diag @{ $res->{warnings} };
run_v7_tests($res);
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::Quux',
'load_classes downgrade correct';
is result_count(), $RESULT_COUNT,
'correct number of Results after upgrade and Result dir removed';
ok ((not -d result_dir('MyResult')),
'Result dir was removed for load_classes downgrade');
# check that custom content was preserved
lives_and { is $schema->resultset('Quux')->find(1)->b_method, 'dongs' }
'custom content was carried over during load_classes downgrade';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'namespaced class names in custom content are translated during load_classes '.
'downgrade';
class_content_contains $schema, $res->{classes}{quuxs}, "sub b_method { 'dongs' }",
'custom content from namespaced Result loaded into static dump correctly '.
'during load_classes downgrade';
}
# rewrite from one result_namespace to another, with external content
{
clean_dumpdir();
my $temp_dir = setup_load_external({ Quux => 'Baz', Bar => 'Foo' }, { result_namespace => 'Result' });
my $res = run_loader(static => 1, naming => 'current');
# add some custom content to a Result that will be replaced
add_custom_content($res->{schema}, { Quux => 'Baz' }, { result_namespace => 'Result', rel_name_map => { QuuxBaz => 'bazrel2' } });
# Rewrite implicit 'Result' to 'MyResult'
$res = run_loader(
static => 1,
result_namespace => 'MyResult',
naming => 'current',
);
my $schema = $res->{schema};
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::MyResult::Quux',
'using new result_namespace';
is result_count('MyResult'), $RESULT_COUNT,
'correct number of Results after rewritten result_namespace';
ok ((not -d schema_dir('Result')),
'original Result dir was removed when rewriting result_namespace');
# check that custom content was preserved
lives_and { is $schema->resultset('Quux')->find(1)->b_method, 'dongs' }
'custom content was carried over when rewriting result_namespace';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel2,
$res->{classes}{bazs} }
'class names in custom content are translated when rewriting result_namespace';
class_content_contains $schema, $res->{classes}{quuxs}, "sub b_method { 'dongs' }",
'custom content from namespaced Result loaded into static dump correctly '.
'when rewriting result_namespace';
# Now rewrite 'MyResult' to 'Mtfnpy'
$res = run_loader(
static => 1,
result_namespace => 'Mtfnpy',
naming => 'current',
);
$schema = $res->{schema};
is $res->{classes}{quuxs}, 'DBIXCSL_Test::Schema::Mtfnpy::Quux',
'using new result_namespace';
is result_count('Mtfnpy'), $RESULT_COUNT,
'correct number of Results after rewritten result_namespace';
ok ((not -d result_dir('MyResult')),
'original Result dir was removed when rewriting result_namespace');
# check that custom and external content was preserved
lives_and { is $schema->resultset('Quux')->find(1)->a_method, 'hlagh' }
'external content was carried over when rewriting result_namespace';
lives_and { is $schema->resultset('Quux')->find(1)->b_method, 'dongs' }
'custom content was carried over when rewriting result_namespace';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel2,
$res->{classes}{bazs} }
'class names in custom content are translated when rewriting result_namespace';
lives_and { isa_ok $schema->resultset('Quux')->find(1)->bazrel,
$res->{classes}{bazs} }
'class names in external content are translated when rewriting '.
'result_namespace';
lives_and { isa_ok $schema->resultset('Bar')->find(1)->foorel,
$res->{classes}{foos} }
'class names in external content are translated when rewriting '.
'result_namespace';
class_content_contains $schema, $res->{classes}{quuxs}, "sub b_method { 'dongs' }",
'custom content from namespaced Result loaded into static dump correctly '.
'when rewriting result_namespace';
class_content_contains $schema, $res->{classes}{quuxs}, "sub a_method { 'hlagh' }",
'external content from unsingularized Result loaded into static dump correctly';
}
# test upgrading a v4 schema, then check that the version string is correct
{
clean_dumpdir();
write_v4_schema_pm();
run_loader(static => 1);
my $res = run_loader(static => 1, naming => 'current');
my $schema = $res->{schema};
my $file = $schema->loader->get_dump_filename($SCHEMA_CLASS);
my $code = slurp_file $file;
my ($dumped_ver) =
$code =~ /^# Created by DBIx::Class::Schema::Loader v(\S+)/m;
is $dumped_ver, $DBIx::Class::Schema::Loader::VERSION,
'correct version dumped after upgrade of v4 static schema';
}
# Test upgrading an already singular result with custom content that refers to
# old class names.
{
clean_dumpdir();
write_v4_schema_pm();
my $res = run_loader(static => 1);
my $schema = $res->{schema};
run_v4_tests($res);
# add some custom content to a Result that will be replaced
add_custom_content($schema, { Bar => 'Foos' });
# now upgrade the schema
$res = run_loader(static => 1, naming => 'current');
$schema = $res->{schema};
run_v7_tests($res);
# check that custom content was preserved
lives_and { is $schema->resultset('Bar')->find(1)->b_method, 'dongs' }
'custom content was preserved from Result pre-upgrade';
lives_and { isa_ok $schema->resultset('Bar')->find(1)->foorel,
$res->{classes}{foos} }
'unsingularized class names in custom content from Result with unchanged ' .
'name are translated';
class_content_contains $schema, $res->{classes}{bar}, "sub b_method { 'dongs' }",
'custom content from Result with unchanged name loaded into static dump ' .
'correctly';
}
# test creating static schema in v5 mode then upgrade to current with external
# content loaded
{
clean_dumpdir();
write_v5_schema_pm();
my $res = run_loader(static => 1);
contains $res->{warnings}[0], "0.05003 static schema", 'backcompat warning';
run_v5_tests($res);
my $temp_dir = setup_load_external({
Baz => 'StationsVisited',
StationsVisited => 'Quux',
}, { result_namespace => 'Result' });
add_custom_content($res->{schema}, {
Baz => 'StationsVisited',
}, {
result_namespace => 'Result',
rel_name_map => { BazStationsvisited => 'custom_content_rel' },
});
$res = run_loader(static => 1, naming => 'current');
my $schema = $res->{schema};
run_v7_tests($res);
lives_and { is $schema->resultset('Baz')->find(1)->a_method, 'hlagh' }
'external custom content loaded for v5 -> v6';
lives_and { isa_ok $schema->resultset('Baz')->find(1)->stationsvisitedrel,
$res->{classes}{stations_visited} }
'external content rewritten for v5 -> v6';
lives_and { isa_ok $schema->resultset('Baz')->find(1)->custom_content_rel,
$res->{classes}{stations_visited} }
'custom content rewritten for v5 -> v6';
lives_and { isa_ok $schema->resultset('StationVisited')->find(1)->quuxrel,
$res->{classes}{quuxs} }
'external content rewritten for v5 -> v6 for upgraded Result class names';
}
# test creating static schema in v6 mode then upgrade to current with external
# content loaded
{
clean_dumpdir();
write_v6_schema_pm();
my $res = run_loader(static => 1);
contains $res->{warnings}[0], "0.06001 static schema", 'backcompat warning';
run_v6_tests($res);
my $temp_dir = setup_load_external({
Routechange => 'Quux',
}, { result_namespace => 'Result' });
add_custom_content($res->{schema}, {
Routechange => 'Quux',
}, {
result_namespace => 'Result',
rel_name_map => { RoutechangeQuux => 'custom_content_rel' },
});
$res = run_loader(static => 1, naming => 'current');
my $schema = $res->{schema};
run_v7_tests($res);
lives_and { is $schema->resultset('RouteChange')->find(1)->a_method, 'hlagh' }
'external custom content loaded for v6 -> v7';
lives_and { isa_ok $schema->resultset('RouteChange')->find(1)->quuxrel,
$res->{classes}{quuxs} }
'external content rewritten for v6 -> v7';
lives_and { isa_ok $schema->resultset('RouteChange')->find(1)->custom_content_rel,
$res->{classes}{quuxs} }
'custom content rewritten for v6 -> v7';
}
done_testing;
END {
rmtree $DUMP_DIR unless $ENV{SCHEMA_LOADER_TESTS_NOCLEANUP};
}
sub clean_dumpdir {
rmtree $DUMP_DIR;
make_path $DUMP_DIR;
}
sub run_loader {
my %loader_opts = @_;
$loader_opts{dump_directory} = $DUMP_DIR if delete $loader_opts{static};
$loader_opts{preserve_case} = 1 if $loader_opts{naming} && $loader_opts{naming} eq 'current';
clean_dumpdir() if delete $loader_opts{clean_dumpdir};
eval {
foreach my $source_name ($SCHEMA_CLASS->clone->sources) {
Class::Unload->unload("${SCHEMA_CLASS}::${source_name}");
}
Class::Unload->unload($SCHEMA_CLASS);
};
undef $@;
my @connect_info = $make_dbictest_db_with_unique::dsn;
my @loader_warnings;
local $SIG{__WARN__} = sub { push(@loader_warnings, @_); };
eval qq{
package $SCHEMA_CLASS;
use base qw/DBIx::Class::Schema::Loader/;
__PACKAGE__->loader_options(\%loader_opts);
__PACKAGE__->connection(\@connect_info);
};
ok(!$@, "Loader initialization") or diag $@;
my $schema = $SCHEMA_CLASS->clone;
my (%monikers, %classes);
foreach my $source_name ($schema->sources) {
my $table_name = $schema->source($source_name)->from;
$monikers{$table_name} = $source_name;
$classes{$table_name} = $schema->source($source_name)->result_class;
}
return {
schema => $schema,
warnings => \@loader_warnings,
monikers => \%monikers,
classes => \%classes,
};
}
sub write_v4_schema_pm {
my %opts = @_;
(my $schema_dir = "$DUMP_DIR/$SCHEMA_CLASS") =~ s/::[^:]+\z//;
rmtree $schema_dir;
make_path $schema_dir;
my $schema_pm = "$schema_dir/Schema.pm";
open my $fh, '>', $schema_pm or die $!;
if (not $opts{use_namespaces}) {
print $fh <<'EOF';
package DBIXCSL_Test::Schema;
use strict;
use warnings;
use base 'DBIx::Class::Schema';
__PACKAGE__->load_classes;
# Created by DBIx::Class::Schema::Loader v0.04006 @ 2009-12-25 01:49:25
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ibIJTbfM1ji4pyD/lgSEog
# You can replace this text with custom content, and it will be preserved on regeneration
1;
EOF
}
else {
print $fh <<'EOF';
package DBIXCSL_Test::Schema;
use strict;
use warnings;
use base 'DBIx::Class::Schema';
__PACKAGE__->load_namespaces;
# Created by DBIx::Class::Schema::Loader v0.04006 @ 2010-01-12 16:04:12
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:d3wRVsHBNisyhxeaWJZcZQ
# You can replace this text with custom content, and it will be preserved on
# regeneration
1;
EOF
}
}
sub write_v5_schema_pm {
my %opts = @_;
(my $schema_dir = "$DUMP_DIR/$SCHEMA_CLASS") =~ s/::[^:]+\z//;
rmtree $schema_dir;
make_path $schema_dir;
my $schema_pm = "$schema_dir/Schema.pm";
open my $fh, '>', $schema_pm or die $!;
if (exists $opts{use_namespaces} && $opts{use_namespaces} == 0) {
print $fh <<'EOF';
package DBIXCSL_Test::Schema;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
use strict;
use warnings;
use base 'DBIx::Class::Schema';
__PACKAGE__->load_classes;
# Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-03-27 17:07:37
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LIzC/LT5IYvWpgusfbqMrg
# You can replace this text with custom content, and it will be preserved on regeneration
1;
EOF
}
else {
print $fh <<'EOF';
package DBIXCSL_Test::Schema;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
use strict;
use warnings;
use base 'DBIx::Class::Schema';
__PACKAGE__->load_namespaces;
# Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-03-29 19:44:52
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D+MYxtGxz97Ghvido5DTEg
# You can replace this text with custom content, and it will be preserved on regeneration
1;
EOF
}
}
sub write_v6_schema_pm {
my %opts = @_;
(my $schema_dir = "$DUMP_DIR/$SCHEMA_CLASS") =~ s/::[^:]+\z//;
rmtree $schema_dir;
make_path $schema_dir;
my $schema_pm = "$schema_dir/Schema.pm";
open my $fh, '>', $schema_pm or die $!;
if (exists $opts{use_namespaces} && $opts{use_namespaces} == 0) {
print $fh <<'EOF';
package DBIXCSL_Test::Schema;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
use strict;
use warnings;
use base 'DBIx::Class::Schema';
__PACKAGE__->load_classes;
# Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-21 19:56:03
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/fqZCb95hsGIe1g5qyQQZg
# You can replace this text with custom content, and it will be preserved on regeneration
1;
EOF
}
else {
print $fh <<'EOF';
package DBIXCSL_Test::Schema;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
use strict;
use warnings;
use base 'DBIx::Class::Schema';
__PACKAGE__->load_namespaces;
# Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-21 19:54:31
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nwO5Vi47kl0X9SpEoiVO5w
# You can replace this text with custom content, and it will be preserved on regeneration
1;
EOF
}
}
sub run_v4_tests {
my $res = shift;
my $schema = $res->{schema};
is_deeply [ @{ $res->{monikers} }{qw/foos bar bazs quuxs stations_visited RouteChange email/} ],
[qw/Foos Bar Bazs Quuxs StationsVisited Routechange Email/],
'correct monikers in 0.04006 mode';
isa_ok ((my $bar = eval { $schema->resultset('Bar')->find(1) }),
$res->{classes}{bar},
'found a bar');
isa_ok eval { $bar->foo_id }, $res->{classes}{foos},
'correct rel name in 0.04006 mode';
ok my $baz = eval { $schema->resultset('Bazs')->find(1) };
isa_ok eval { $baz->quux }, 'DBIx::Class::ResultSet',
'correct rel type and name for UNIQUE FK in 0.04006 mode';
ok my $foo = eval { $schema->resultset('Foos')->find(1) };
isa_ok eval { $foo->email_to_ids }, 'DBIx::Class::ResultSet',
'correct rel name inflection in 0.04006 mode';
ok (($schema->resultset('Routechange')->find(1)->can('quuxsid')),
'correct column accessor in 0.04006 mode');
is $schema->resultset('Routechange')->find(1)->foo2bar, 3,
'correct column accessor for column with word ending with digit in v4 mode';
}
sub run_v5_tests {
my $res = shift;
my $schema = $res->{schema};
is_deeply [ @{ $res->{monikers} }{qw/foos bar bazs quuxs stations_visited RouteChange email/} ],
[qw/Foo Bar Baz Quux StationsVisited Routechange Email/],
'correct monikers in v5 mode';
ok my $bar = eval { $schema->resultset('Bar')->find(1) };
isa_ok eval { $bar->foo }, $res->{classes}{foos},
'correct rel name in v5 mode';
ok my $baz = eval { $schema->resultset('Baz')->find(1) };
isa_ok eval { $baz->quux }, $res->{classes}{quuxs},
'correct rel type and name for UNIQUE FK in v5 mode';
ok my $foo = eval { $schema->resultset('Foo')->find(1) };
isa_ok eval { $foo->email_to_ids }, 'DBIx::Class::ResultSet',
'correct rel name inflection in v5 mode';
ok (($schema->resultset('Routechange')->find(1)->can('quuxsid')),
'correct column accessor in v5 mode');
is $schema->resultset('Routechange')->find(1)->foo2bar, 3,
'correct column accessor for column with word ending with digit in v5 mode';
}
sub run_v6_tests {
my $res = shift;
my $schema = $res->{schema};
is_deeply [ @{ $res->{monikers} }{qw/foos bar bazs quuxs stations_visited RouteChange email/} ],
[qw/Foo Bar Baz Quux StationVisited Routechange Email/],
'correct monikers in v6 mode';
ok my $bar = eval { $schema->resultset('Bar')->find(1) };
isa_ok eval { $bar->foo }, $res->{classes}{foos},
'correct rel name in v6 mode';
ok my $baz = eval { $schema->resultset('Baz')->find(1) };
isa_ok eval { $baz->quux }, $res->{classes}{quuxs},
'correct rel type and name for UNIQUE FK in v6 mode';
ok my $foo = eval { $schema->resultset('Foo')->find(1) };
isa_ok eval { $foo->emails_to }, 'DBIx::Class::ResultSet',
'correct rel name inflection in v6 mode';
ok my $route_change = eval { $schema->resultset('Routechange')->find(1) };
isa_ok eval { $route_change->quuxsid }, $res->{classes}{quuxs},
'correct rel name in v6 mode';
ok (($schema->resultset('Routechange')->find(1)->can('quuxsid')),
'correct column accessor in v6 mode');
is $schema->resultset('Routechange')->find(1)->foo2bar, 3,
'correct column accessor for column with word ending with digit in v6 mode';
}
sub run_v7_tests {
my $res = shift;
my $schema = $res->{schema};
is_deeply [ @{ $res->{monikers} }{qw/foos bar bazs quuxs stations_visited RouteChange email/} ],
[qw/Foo Bar Baz Quux StationVisited RouteChange Email/],
'correct monikers in current mode';
ok my $bar = eval { $schema->resultset('Bar')->find(1) };
isa_ok eval { $bar->foo }, $res->{classes}{foos},
'correct rel name in current mode';
ok my $baz = eval { $schema->resultset('Baz')->find(1) };
isa_ok eval { $baz->quux }, $res->{classes}{quuxs},
'correct rel type and name for UNIQUE FK in current mode';
ok my $foo = eval { $schema->resultset('Foo')->find(1) };
isa_ok eval { $foo->emails_to }, 'DBIx::Class::ResultSet',
'correct rel name inflection in current mode';
ok my $route_change = eval { $schema->resultset('RouteChange')->find(1) };
isa_ok eval { $route_change->quux }, $res->{classes}{quuxs},
'correct rel name based on mixed-case column name in current mode';
ok (($schema->resultset('RouteChange')->find(1)->can('quuxs_id')),
'correct column accessor in current mode');
is $schema->resultset('RouteChange')->find(1)->foo2_bar, 3,
'correct column accessor for column with word ending with digit in current mode';
}
{
package DBICSL::Test::TempExtDir;
use overload '""' => sub { ${$_[0]} };
sub DESTROY {
pop @INC;
File::Path::rmtree ${$_[0]};
}
}
sub setup_load_external {
my ($rels, $opts) = @_;
my $temp_dir = tempdir(CLEANUP => 1);
push @INC, $temp_dir;
my $external_result_dir = join '/', $temp_dir, (split /::/, $SCHEMA_CLASS),
($opts->{result_namespace} || ());
make_path $external_result_dir;
while (my ($from, $to) = each %$rels) {
write_ext_result($external_result_dir, $from, $to, $opts);
}
my $guard = bless \$temp_dir, 'DBICSL::Test::TempExtDir';
return $guard;
}
sub write_ext_result {
my ($result_dir, $from, $to, $opts) = @_;
my $relname = $opts->{rel_name_map}{_rel_key($from, $to)} || _relname($to);
my $from_class = _qualify_class($from, $opts->{result_namespace});
my $to_class = _qualify_class($to, $opts->{result_namespace});
my $condition = _rel_condition($from, $to);
IO::File->new(">$result_dir/${from}.pm")->print(<<"EOF");
package ${from_class};
sub a_method { 'hlagh' }
__PACKAGE__->has_one('$relname', '$to_class',
{ $condition });
1;
EOF
return $relname;
}
sub _relname {
my $to = shift;
return Lingua::EN::Inflect::Number::to_S(lc $to) . 'rel';
}
sub _qualify_class {
my ($class, $result_namespace) = @_;
return $SCHEMA_CLASS . '::'
. ($result_namespace ? $result_namespace . '::' : '')
. $class;
}
sub _rel_key {
my ($from, $to) = @_;
return join '', map ucfirst(Lingua::EN::Inflect::Number::to_S(lc($_))), $from, $to;
}
sub _rel_condition {
my ($from, $to) = @_;
return +{
QuuxBaz => q{'foreign.baz_num' => 'self.baz_id'},
BarFoo => q{'foreign.fooid' => 'self.foo_id'},
BazStationsvisited => q{'foreign.id' => 'self.stations_visited_id'},
StationsvisitedQuux => q{'foreign.quuxid' => 'self.quuxs_id'},
RoutechangeQuux => q{'foreign.quuxid' => 'self.QuuxsId'},
}->{_rel_key($from, $to)};
}
sub class_content_contains {
my ($schema, $class, $substr, $test_name) = @_;
my $file = $schema->loader->get_dump_filename($class);
my $code = slurp_file $file;
local $Test::Builder::Level = $Test::Builder::Level + 1;
contains $code, $substr, $test_name;
}
sub contains {
my ($haystack, $needle, $test_name) = @_;
local $Test::Builder::Level = $Test::Builder::Level + 1;
like $haystack, qr/\Q$needle\E/, $test_name;
}
sub add_custom_content {
my ($schema, $rels, $opts) = @_;
while (my ($from, $to) = each %$rels) {
my $relname = $opts->{rel_name_map}{_rel_key($from, $to)} || _relname($to);
my $from_class = _qualify_class($from, $opts->{result_namespace});
my $to_class = _qualify_class($to, $opts->{result_namespace});
my $condition = _rel_condition($from, $to);
my $content = <<"EOF";
package ${from_class};
sub b_method { 'dongs' }
__PACKAGE__->has_one('$relname', '$to_class',
{ $condition });
1;
EOF
_write_custom_content($schema, $from_class, $content);
}
}
sub _write_custom_content {
my ($schema, $class, $content) = @_;
my $pm = $schema->loader->get_dump_filename($class);
{
local ($^I, @ARGV) = ('.bak', $pm);
while (<>) {
if (/DO NOT MODIFY THIS OR ANYTHING ABOVE/) {
print;
print $content;
}
else {
print;
}
}
close ARGV;
unlink "${pm}.bak" or die $^E;
}
}
sub result_count {
my $path = shift || '';
my $dir = result_dir($path);
my $file_count =()= glob "$dir/*";
return $file_count;
}
sub result_files {
my $path = shift || '';
my $dir = result_dir($path);
return glob "$dir/*";
}
sub schema_files { result_files(@_) }
sub result_dir {
my $path = shift || '';
(my $dir = "$DUMP_DIR/$SCHEMA_CLASS/$path") =~ s{::}{/}g;
$dir =~ s{/+\z}{};
return $dir;
}
sub schema_dir { result_dir(@_) }
# vim:et sts=4 sw=4 tw=0:
|