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
|
use utf8;
use strict;
use warnings;
use JSON;
use RT::Test tests => undef, config => << 'CONFIG';
Set($InitialdataFormatHandlers, [ 'perl', 'RT::Initialdata::JSON' ]);
CONFIG
my $general = RT::Queue->new(RT->SystemUser);
$general->Load('General');
my @tests = (
{
name => 'Simple user-defined group',
create => sub {
my $group = RT::Group->new(RT->SystemUser);
my ($ok, $msg) = $group->CreateUserDefinedGroup(Name => 'Staff');
ok($ok, $msg);
},
absent => sub {
my $group = RT::Group->new(RT->SystemUser);
$group->LoadUserDefinedGroup('Staff');
ok(!$group->Id, 'No such group');
},
present => sub {
my $group = RT::Group->new(RT->SystemUser);
$group->LoadUserDefinedGroup('Staff');
ok($group->Id, 'Loaded group');
is($group->Name, 'Staff', 'Group name');
is($group->Domain, 'UserDefined', 'Domain');
},
},
{
name => 'Group membership and ACLs',
create => sub {
my $outer = RT::Group->new(RT->SystemUser);
my ($ok, $msg) = $outer->CreateUserDefinedGroup(Name => 'Outer');
ok($ok, $msg);
my $inner = RT::Group->new(RT->SystemUser);
($ok, $msg) = $inner->CreateUserDefinedGroup(Name => 'Inner');
ok($ok, $msg);
my $unrelated = RT::Group->new(RT->SystemUser);
($ok, $msg) = $unrelated->CreateUserDefinedGroup(Name => 'Unrelated');
ok($ok, $msg);
my $user = RT::User->new(RT->SystemUser);
($ok, $msg) = $user->Create(Name => 'User');
ok($ok, $msg);
my $unprivileged = RT::User->new(RT->SystemUser);
($ok, $msg) = $unprivileged->Create(Name => 'Unprivileged');
ok($ok, $msg);
($ok, $msg) = $outer->AddMember($inner->PrincipalId);
ok($ok, $msg);
($ok, $msg) = $inner->AddMember($user->PrincipalId);
ok($ok, $msg);
($ok, $msg) = $general->AddWatcher(Type => 'AdminCc', PrincipalId => $outer->PrincipalId);
ok($ok, $msg);
($ok, $msg) = $general->AdminCc->PrincipalObj->GrantRight(Object => $general, Right => 'ShowTicket');
ok($ok, $msg);
($ok, $msg) = $inner->PrincipalObj->GrantRight(Object => $general, Right => 'ModifyTicket');
ok($ok, $msg);
($ok, $msg) = $user->PrincipalObj->GrantRight(Object => $general, Right => 'OwnTicket');
ok($ok, $msg);
($ok, $msg) = $unprivileged->PrincipalObj->GrantRight(Object => RT->System, Right => 'ModifyTicket');
ok($ok, $msg);
($ok, $msg) = $inner->PrincipalObj->GrantRight(Object => $inner, Right => 'SeeGroup');
ok($ok, $msg);
},
present => sub {
my $outer = RT::Group->new(RT->SystemUser);
$outer->LoadUserDefinedGroup('Outer');
ok($outer->Id, 'Loaded group');
is($outer->Name, 'Outer', 'Group name');
my $inner = RT::Group->new(RT->SystemUser);
$inner->LoadUserDefinedGroup('Inner');
ok($inner->Id, 'Loaded group');
is($inner->Name, 'Inner', 'Group name');
my $unrelated = RT::Group->new(RT->SystemUser);
$unrelated->LoadUserDefinedGroup('Unrelated');
ok($unrelated->Id, 'Loaded group');
is($unrelated->Name, 'Unrelated', 'Group name');
my $user = RT::User->new(RT->SystemUser);
$user->Load('User');
ok($user->Id, 'Loaded user');
is($user->Name, 'User', 'User name');
my $unprivileged = RT::User->new(RT->SystemUser);
$unprivileged->Load('Unprivileged');
ok($unprivileged->Id, 'Loaded Unprivileged');
is($unprivileged->Name, 'Unprivileged', 'Unprivileged name');
ok($outer->HasMember($inner->PrincipalId), 'outer hasmember inner');
ok($inner->HasMember($user->PrincipalId), 'inner hasmember user');
ok($outer->HasMemberRecursively($user->PrincipalId), 'outer hasmember user recursively');
ok(!$outer->HasMember($user->PrincipalId), 'outer does not have member user directly');
ok(!$inner->HasMember($outer->PrincipalId), 'inner does not have member outer');
ok($general->AdminCc->HasMember($outer->PrincipalId), 'queue AdminCc');
ok($general->AdminCc->HasMemberRecursively($inner->PrincipalId), 'queue AdminCc');
ok($general->AdminCc->HasMemberRecursively($user->PrincipalId), 'queue AdminCc');
ok(!$outer->HasMemberRecursively($unrelated->PrincipalId), 'unrelated group membership');
ok(!$inner->HasMemberRecursively($unrelated->PrincipalId), 'unrelated group membership');
ok(!$general->AdminCc->HasMemberRecursively($unrelated->PrincipalId), 'unrelated group membership');
ok($general->AdminCc->PrincipalObj->HasRight(Object => $general, Right => 'ShowTicket'), 'AdminCc ShowTicket right');
ok($outer->PrincipalObj->HasRight(Object => $general, Right => 'ShowTicket'), 'outer ShowTicket right');
ok($inner->PrincipalObj->HasRight(Object => $general, Right => 'ShowTicket'), 'inner ShowTicket right');
ok($user->PrincipalObj->HasRight(Object => $general, Right => 'ShowTicket'), 'user ShowTicket right');
ok(!$unrelated->PrincipalObj->HasRight(Object => $general, Right => 'ShowTicket'), 'unrelated ShowTicket right');
ok(!$general->AdminCc->PrincipalObj->HasRight(Object => $general, Right => 'ModifyTicket'), 'AdminCc ModifyTicket right');
ok(!$outer->PrincipalObj->HasRight(Object => $general, Right => 'ModifyTicket'), 'outer ModifyTicket right');
ok($inner->PrincipalObj->HasRight(Object => $general, Right => 'ModifyTicket'), 'inner ModifyTicket right');
ok($user->PrincipalObj->HasRight(Object => $general, Right => 'ModifyTicket'), 'user ModifyTicket right');
ok(!$unrelated->PrincipalObj->HasRight(Object => $general, Right => 'ModifyTicket'), 'unrelated ModifyTicket right');
ok(!$general->AdminCc->PrincipalObj->HasRight(Object => $general, Right => 'OwnTicket'), 'AdminCc OwnTicket right');
ok(!$outer->PrincipalObj->HasRight(Object => $general, Right => 'OwnTicket'), 'outer OwnTicket right');
ok(!$inner->PrincipalObj->HasRight(Object => $general, Right => 'OwnTicket'), 'inner OwnTicket right');
ok($user->PrincipalObj->HasRight(Object => $general, Right => 'OwnTicket'), 'inner OwnTicket right');
ok(!$unrelated->PrincipalObj->HasRight(Object => $general, Right => 'OwnTicket'), 'unrelated OwnTicket right');
ok($unprivileged->PrincipalObj->HasRight(Object => RT->System, Right => 'ModifyTicket'), 'unprivileged ModifyTicket right');
ok(!$general->AdminCc->PrincipalObj->HasRight(Object => $inner, Right => 'SeeGroup'), 'AdminCc SeeGroup right');
ok(!$outer->PrincipalObj->HasRight(Object => $inner, Right => 'SeeGroup'), 'outer SeeGroup right');
ok($inner->PrincipalObj->HasRight(Object => $inner, Right => 'SeeGroup'), 'inner SeeGroup right');
ok($user->PrincipalObj->HasRight(Object => $inner, Right => 'SeeGroup'), 'user SeeGroup right');
ok(!$unrelated->PrincipalObj->HasRight(Object => $inner, Right => 'SeeGroup'), 'unrelated SeeGroup right');
},
},
{
name => 'Custom field on two queues',
create => sub {
my $bugs = RT::Queue->new(RT->SystemUser);
my ($ok, $msg) = $bugs->Create(Name => 'Bugs');
ok($ok, $msg);
my $features = RT::Queue->new(RT->SystemUser);
($ok, $msg) = $features->Create(Name => 'Features');
ok($ok, $msg);
my $cf = RT::CustomField->new(RT->SystemUser);
($ok, $msg) = $cf->Create(
Name => 'Fixed In',
Type => 'SelectSingle',
LookupType => RT::Ticket->CustomFieldLookupType,
);
ok($ok, $msg);
($ok, $msg) = $cf->AddToObject($bugs);
ok($ok, $msg);
($ok, $msg) = $cf->AddToObject($features);
ok($ok, $msg);
($ok, $msg) = $cf->AddValue(Name => '0.1', Description => 'Prototype', SortOrder => '1');
ok($ok, $msg);
($ok, $msg) = $cf->AddValue(Name => '1.0', Description => 'Gold', SortOrder => '10');
ok($ok, $msg);
# these next two are intentionally added in an order different from their SortOrder
($ok, $msg) = $cf->AddValue(Name => '2.0', Description => 'Remaster', SortOrder => '20');
ok($ok, $msg);
($ok, $msg) = $cf->AddValue(Name => '1.1', Description => 'Gold Bugfix', SortOrder => '11');
ok($ok, $msg);
},
present => sub {
my $bugs = RT::Queue->new(RT->SystemUser);
$bugs->Load('Bugs');
ok($bugs->Id, 'Bugs queue loaded');
is($bugs->Name, 'Bugs');
my $features = RT::Queue->new(RT->SystemUser);
$features->Load('Features');
ok($features->Id, 'Features queue loaded');
is($features->Name, 'Features');
my $cf = RT::CustomField->new(RT->SystemUser);
$cf->Load('Fixed In');
ok($cf->Id, 'Fixed In CF loaded');
is($cf->Name, 'Fixed In');
is($cf->Type, 'Select', 'Type');
is($cf->MaxValues, 1, 'MaxValues');
is($cf->LookupType, RT::Ticket->CustomFieldLookupType, 'LookupType');
ok($cf->IsAdded($bugs->Id), 'CF is on Bugs queue');
ok($cf->IsAdded($features->Id), 'CF is on Features queue');
ok(!$cf->IsAdded(0), 'CF is not global');
ok(!$cf->IsAdded($general->Id), 'CF is not on General queue');
my @values = map { {
Name => $_->Name,
Description => $_->Description,
SortOrder => $_->SortOrder,
} } @{ $cf->Values->ItemsArrayRef };
is_deeply(\@values, [
{ Name => '0.1', Description => 'Prototype', SortOrder => '1' },
{ Name => '1.0', Description => 'Gold', SortOrder => '10' },
{ Name => '1.1', Description => 'Gold Bugfix', SortOrder => '11' },
{ Name => '2.0', Description => 'Remaster', SortOrder => '20' },
], 'CF values');
},
},
{
name => 'Custom field lookup types',
create => sub {
my %extra = (
Group => { method => 'CreateUserDefinedGroup' },
Asset => undef,
Article => { Class => 'General' },
Ticket => undef,
Transaction => undef,
User => undef,
);
for my $type (qw/Asset Article Group Queue Ticket Transaction User/) {
my $class = "RT::$type";
my $cf = RT::CustomField->new(RT->SystemUser);
my ($ok, $msg) = $cf->Create(
Name => "$type CF",
Type => "FreeformSingle",
LookupType => $class->CustomFieldLookupType,
);
ok($ok, $msg);
# apply globally
($ok, $msg) = $cf->AddToObject($cf->RecordClassFromLookupType->new(RT->SystemUser));
ok($ok, $msg);
next if exists($extra{$type}) && !defined($extra{$type});
my $obj = $class->new(RT->SystemUser);
my $method = delete($extra{$type}{method}) || 'Create';
($ok, $msg) = $obj->$method(
Name => $type,
%{ $extra{$type} || {} },
);
ok($ok, "created $type: $msg");
ok($obj->Id, "loaded $type");
($ok, $msg) = $obj->AddCustomFieldValue(
Field => $cf->Id,
Value => "$type Value",
);
ok($ok, $msg);
}
},
present => sub {
my %load = (
Transaction => undef,
Ticket => undef,
User => undef,
Asset => undef,
);
for my $type (qw/Asset Article Group Queue Ticket Transaction User/) {
my $class = "RT::$type";
my $cf = RT::CustomField->new(RT->SystemUser);
$cf->Load("$type CF");
ok($cf->Id, "loaded $type CF");
is($cf->Name, "$type CF", 'Name');
is($cf->Type, 'Freeform', 'Type');
is($cf->MaxValues, 1, 'MaxValues');
is($cf->LookupType, $class->CustomFieldLookupType, 'LookupType');
next if exists($load{$type}) && !defined($load{$type});
my $obj = $class->new(RT->SystemUser);
$obj->LoadByCols(
%{ $load{$type} || { Name => $type } },
);
ok($obj->Id, "loaded $type");
is($obj->FirstCustomFieldValue($cf->Id), "$type Value", "CF value for $type");
}
},
},
{
name => 'Custom field LargeContent',
create => sub {
my $cf = RT::CustomField->new(RT->SystemUser);
my ($ok, $msg) = $cf->Create(
Name => "Group CF",
Type => "FreeformSingle",
LookupType => RT::Group->CustomFieldLookupType,
);
ok($ok, $msg);
($ok, $msg) = $cf->AddToObject(RT::Group->new(RT->SystemUser));
ok($ok, $msg);
my $group = RT::Group->new(RT->SystemUser);
($ok, $msg) = $group->CreateUserDefinedGroup(Name => 'Group');
ok($ok, $msg);
($ok, $msg) = $group->AddCustomFieldValue(
Field => $cf->Id,
Value => scalar("abc" x 256),
);
ok($ok, $msg);
},
present => sub {
my $group = RT::Group->new(RT->SystemUser);
$group->LoadUserDefinedGroup('Group');
ok($group->Id, 'loaded Group');
is($group->FirstCustomFieldValue('Group CF'), scalar("abc" x 256), "CF LargeContent");
},
# the following test peers into the initialdata only to make sure that
# we are roundtripping LargeContent as expected; if this starts
# failing it's not necessarily a problem, but it's worthy of
# investigating whether the "present" tests are still testing
# what they were meant to test
raw => sub {
my $json = shift;
my ($group) = grep { $_->{Name} eq 'Group' } @{ $json->{Groups} };
ok($group, 'found the group');
my ($ocfv) = @{ $group->{CustomFields} };
ok($ocfv, 'found the OCFV');
is($ocfv->{CustomField}, 'Group CF', 'CustomField');
is($ocfv->{Content}, undef, 'no Content');
is($ocfv->{LargeContent}, scalar("abc" x 256), 'LargeContent');
is($ocfv->{ContentType}, "text/plain", 'ContentType');
}
},
{
name => 'Scrips including Disabled',
export_args => { FollowDisabled => 1 },
create => sub {
my $bugs = RT::Queue->new(RT->SystemUser);
my ($ok, $msg) = $bugs->Create(Name => 'Bugs');
ok($ok, $msg);
my $features = RT::Queue->new(RT->SystemUser);
($ok, $msg) = $features->Create(Name => 'Features');
ok($ok, $msg);
my $disabled = RT::Scrip->new(RT->SystemUser);
($ok, $msg) = $disabled->Create(
Queue => 0,
Description => 'Disabled Scrip',
Template => 'Blank',
ScripCondition => 'User Defined',
ScripAction => 'User Defined',
CustomIsApplicableCode => 'return "condition"',
CustomPrepareCode => 'return "prepare"',
CustomCommitCode => 'return "commit"',
);
ok($ok, $msg);
($ok, $msg) = $disabled->SetDisabled(1);
ok($ok, $msg);
my $stages = RT::Scrip->new(RT->SystemUser);
($ok, $msg) = $stages->Create(
Description => 'Staged Scrip',
Template => 'Transaction',
ScripCondition => 'On Create',
ScripAction => 'Notify Owner',
);
ok($ok, $msg);
($ok, $msg) = $stages->RemoveFromObject(0);
ok($ok, $msg);
($ok, $msg) = $stages->AddToObject(
ObjectId => $bugs->Id,
Stage => 'TransactionBatch',
SortOrder => 42,
);
ok($ok, $msg);
($ok, $msg) = $stages->AddToObject(
ObjectId => $features->Id,
Stage => 'TransactionCreate',
SortOrder => 99,
);
ok($ok, $msg);
},
present => sub {
my $bugs = RT::Queue->new(RT->SystemUser);
$bugs->Load('Bugs');
ok($bugs->Id, 'Bugs queue loaded');
is($bugs->Name, 'Bugs');
my $features = RT::Queue->new(RT->SystemUser);
$features->Load('Features');
ok($features->Id, 'Features queue loaded');
is($features->Name, 'Features');
my $disabled = RT::Scrip->new(RT->SystemUser);
$disabled->LoadByCols(Description => 'Disabled Scrip');
ok($disabled->Id, 'Disabled scrip loaded');
is($disabled->Description, 'Disabled Scrip', 'Description');
is($disabled->Template, 'Blank', 'Template');
is($disabled->ConditionObj->Name, 'User Defined', 'Condition');
is($disabled->ActionObj->Name, 'User Defined', 'Action');
is($disabled->CustomIsApplicableCode, 'return "condition"', 'Condition code');
is($disabled->CustomPrepareCode, 'return "prepare"', 'Prepare code');
is($disabled->CustomCommitCode, 'return "commit"', 'Commit code');
ok($disabled->Disabled, 'Disabled');
ok($disabled->IsGlobal, 'IsGlobal');
my $stages = RT::Scrip->new(RT->SystemUser);
$stages->LoadByCols(Description => 'Staged Scrip');
ok($stages->Id, 'Staged scrip loaded');
is($stages->Description, 'Staged Scrip');
ok(!$stages->Disabled, 'not Disabled');
ok(!$stages->IsGlobal, 'not Global');
my $bug_objectscrip = $stages->IsAdded($bugs->Id);
ok($bug_objectscrip, 'added to Bugs');
is($bug_objectscrip->Stage, 'TransactionBatch', 'Stage');
is($bug_objectscrip->SortOrder, 42, 'SortOrder');
my $features_objectscrip = $stages->IsAdded($features->Id);
ok($features_objectscrip, 'added to Features');
is($features_objectscrip->Stage, 'TransactionCreate', 'Stage');
is($features_objectscrip->SortOrder, 99, 'SortOrder');
ok(!$stages->IsAdded($general->Id), 'not added to General');
},
},
{
name => 'No disabled scrips',
create => sub {
my $disabled = RT::Scrip->new(RT->SystemUser);
my ($ok, $msg) = $disabled->Create(
Description => 'Disabled Scrip',
Template => 'Transaction',
ScripCondition => 'On Create',
ScripAction => 'Notify Owner',
);
ok($ok, $msg);
($ok, $msg) = $disabled->SetDisabled(1);
ok($ok, $msg);
my $enabled = RT::Scrip->new(RT->SystemUser);
($ok, $msg) = $enabled->Create(
Description => 'Enabled Scrip',
Template => 'Transaction',
ScripCondition => 'On Create',
ScripAction => 'Notify Owner',
);
ok($ok, $msg);
},
present => sub {
my $from_initialdata = shift;
my $disabled = RT::Scrip->new(RT->SystemUser);
$disabled->LoadByCols(Description => 'Disabled Scrip');
if ($from_initialdata) {
ok(!$disabled->Id, 'Disabled scrip absent in initialdata');
}
else {
ok($disabled->Id, 'Disabled scrip present because of the original creation');
ok($disabled->Disabled, 'Disabled scrip disabled');
}
my $enabled = RT::Scrip->new(RT->SystemUser);
$enabled->LoadByCols(Description => 'Enabled Scrip');
ok($enabled->Id, 'Enabled scrip present');
},
},
{
name => 'Disabled many-to-many relationships',
create => sub {
my $enabled_queue = RT::Queue->new(RT->SystemUser);
my ($ok, $msg) = $enabled_queue->Create(
Name => 'Enabled Queue',
);
ok($ok, $msg);
my $disabled_queue = RT::Queue->new(RT->SystemUser);
($ok, $msg) = $disabled_queue->Create(
Name => 'Disabled Queue',
);
ok($ok, $msg);
my $enabled_cf = RT::CustomField->new(RT->SystemUser);
($ok, $msg) = $enabled_cf->Create(
Name => 'Enabled CF',
Type => 'FreeformSingle',
LookupType => RT::Queue->CustomFieldLookupType,
);
ok($ok, $msg);
my $disabled_cf = RT::CustomField->new(RT->SystemUser);
($ok, $msg) = $disabled_cf->Create(
Name => 'Disabled CF',
Type => 'FreeformSingle',
LookupType => RT::Queue->CustomFieldLookupType,
);
ok($ok, $msg);
my $enabled_scrip = RT::Scrip->new(RT->SystemUser);
($ok, $msg) = $enabled_scrip->Create(
Queue => 0,
Description => 'Enabled Scrip',
Template => 'Blank',
ScripCondition => 'On Create',
ScripAction => 'Notify Owner',
);
ok($ok, $msg);
$enabled_scrip->RemoveFromObject(0);
my $disabled_scrip = RT::Scrip->new(RT->SystemUser);
($ok, $msg) = $disabled_scrip->Create(
Queue => 0,
Description => 'Disabled Scrip',
Template => 'Blank',
ScripCondition => 'On Create',
ScripAction => 'Notify Owner',
);
ok($ok, $msg);
$disabled_scrip->RemoveFromObject(0);
my $enabled_class = RT::Class->new(RT->SystemUser);
($ok, $msg) = $enabled_class->Create(
Name => 'Enabled Class',
);
ok($ok, $msg);
my $disabled_class = RT::Class->new(RT->SystemUser);
($ok, $msg) = $disabled_class->Create(
Name => 'Disabled Class',
);
ok($ok, $msg);
my $enabled_role = RT::CustomRole->new(RT->SystemUser);
($ok, $msg) = $enabled_role->Create(
Name => 'Enabled Role',
);
ok($ok, $msg);
my $disabled_role = RT::CustomRole->new(RT->SystemUser);
($ok, $msg) = $disabled_role->Create(
Name => 'Disabled Role',
);
ok($ok, $msg);
my $enabled_group = RT::Group->new(RT->SystemUser);
($ok, $msg) = $enabled_group->CreateUserDefinedGroup(
Name => 'Enabled Group',
);
ok($ok, $msg);
my $disabled_group = RT::Group->new(RT->SystemUser);
($ok, $msg) = $disabled_group->CreateUserDefinedGroup(
Name => 'Disabled Group',
);
ok($ok, $msg);
my $enabled_user = RT::User->new(RT->SystemUser);
($ok, $msg) = $enabled_user->Create(
Name => 'Enabled User',
);
ok($ok, $msg);
my $disabled_user = RT::User->new(RT->SystemUser);
($ok, $msg) = $disabled_user->Create(
Name => 'Disabled User',
);
ok($ok, $msg);
for my $object ($enabled_cf, $disabled_cf,
$enabled_scrip, $disabled_scrip,
$enabled_class, $disabled_class,
$enabled_role, $disabled_role) {
# slightly inconsistent API
my ($queue_a, $queue_b) = ($disabled_queue, $enabled_queue);
($queue_a, $queue_b) = ($queue_a->Id, $queue_b->Id)
if $object->isa('RT::Scrip')
|| $object->isa('RT::CustomRole');
($ok, $msg) = $object->AddToObject($queue_a);
ok($ok, $msg);
($ok, $msg) = $object->AddToObject($queue_b);
ok($ok, $msg);
}
for my $principal ($enabled_group, $disabled_group,
$enabled_user, $disabled_user) {
($ok, $msg) = $principal->PrincipalObj->GrantRight(Object => RT->System, Right => 'SeeQueue');
ok($ok, $msg);
for my $queue ($enabled_queue, $disabled_queue) {
($ok, $msg) = $principal->PrincipalObj->GrantRight(Object => $queue, Right => 'ShowTicket');
ok($ok, $msg);
($ok, $msg) = $queue->AddWatcher(Type => 'AdminCc', PrincipalId => $principal->PrincipalId);
ok($ok, $msg);
}
}
for my $cf ($enabled_cf, $disabled_cf) {
for my $queue ($enabled_queue, $disabled_queue) {
($ok, $msg) = $queue->AddCustomFieldValue(Field => $cf->Id, Value => $cf->Name);
ok($ok, $msg);
}
}
for my $object ($disabled_queue, $disabled_cf,
$disabled_scrip, $disabled_class,
$disabled_role, $disabled_group,
$disabled_user) {
($ok, $msg) = $object->SetDisabled(1);
ok($ok, $msg);
}
},
present => sub {
my $from_initialdata = shift;
my $enabled_queue = RT::Queue->new(RT->SystemUser);
$enabled_queue->Load('Enabled Queue');
ok($enabled_queue->Id, 'loaded Enabled queue');
is($enabled_queue->Name, 'Enabled Queue', 'Enabled Queue Name');
my $disabled_queue = RT::Queue->new(RT->SystemUser);
$disabled_queue->Load('Disabled Queue');
my $enabled_cf = RT::CustomField->new(RT->SystemUser);
$enabled_cf->Load('Enabled CF');
ok($enabled_cf->Id, 'loaded Enabled CF');
is($enabled_cf->Name, 'Enabled CF', 'Enabled CF Name');
ok($enabled_cf->IsAdded($enabled_queue->Id), 'Enabled CF added to General');
is($enabled_queue->FirstCustomFieldValue('Enabled CF'), 'Enabled CF', 'OCFV');
my $disabled_cf = RT::CustomField->new(RT->SystemUser);
$disabled_cf->Load('Disabled CF');
my $enabled_scrip = RT::Scrip->new(RT->SystemUser);
$enabled_scrip->LoadByCols(Description => 'Enabled Scrip');
ok($enabled_scrip->Id, 'loaded Enabled Scrip');
is($enabled_scrip->Description, 'Enabled Scrip', 'Enabled Scrip Name');
ok($enabled_scrip->IsAdded($enabled_queue->Id), 'Enabled Scrip added to General');
my $disabled_scrip = RT::Scrip->new(RT->SystemUser);
$disabled_scrip->LoadByCols(Description => 'Disabled Scrip');
my $enabled_class = RT::Class->new(RT->SystemUser);
$enabled_class->Load('Enabled Class');
ok($enabled_class->Id, 'loaded Enabled Class');
is($enabled_class->Name, 'Enabled Class', 'Enabled Class Name');
ok($enabled_class->IsApplied($enabled_queue->Id), 'Enabled Class added to General');
my $disabled_class = RT::Class->new(RT->SystemUser);
$disabled_class->Load('Disabled Class');
my $enabled_role = RT::CustomRole->new(RT->SystemUser);
$enabled_role->Load('Enabled Role');
ok($enabled_role->Id, 'loaded Enabled Role');
is($enabled_role->Name, 'Enabled Role', 'Enabled Role Name');
ok($enabled_role->IsAdded($enabled_queue->Id), 'Enabled Role added to General');
my $disabled_role = RT::CustomRole->new(RT->SystemUser);
$disabled_role->Load('Disabled Role');
my $enabled_group = RT::Group->new(RT->SystemUser);
$enabled_group->LoadUserDefinedGroup('Enabled Group');
ok($enabled_group->Id, 'loaded Enabled Group');
is($enabled_group->Name, 'Enabled Group', 'Enabled Group Name');
ok($enabled_group->PrincipalObj->HasRight(Object => $enabled_queue, Right => 'ShowTicket'), 'Enabled Group has queue right');
ok($enabled_group->PrincipalObj->HasRight(Object => RT->System, Right => 'SeeQueue'), 'Enabled Group has global right');
ok($enabled_queue->AdminCc->HasMember($enabled_group->PrincipalObj), 'Enabled Group still queue watcher');
my $disabled_group = RT::Group->new(RT->SystemUser);
$disabled_group->LoadUserDefinedGroup('Disabled Group');
my $enabled_user = RT::User->new(RT->SystemUser);
$enabled_user->Load('Enabled User');
ok($enabled_user->Id, 'loaded Enabled User');
is($enabled_user->Name, 'Enabled User', 'Enabled User Name');
ok($enabled_user->PrincipalObj->HasRight(Object => $enabled_queue, Right => 'ShowTicket'), 'Enabled User has queue right');
ok($enabled_user->PrincipalObj->HasRight(Object => RT->System, Right => 'SeeQueue'), 'Enabled User has global right');
ok($enabled_queue->AdminCc->HasMember($enabled_user->PrincipalObj), 'Enabled User still queue watcher');
my $disabled_user = RT::User->new(RT->SystemUser);
$disabled_user->Load('Disabled User');
for my $object ($disabled_queue, $disabled_cf,
$disabled_scrip, $disabled_class,
$disabled_role, $disabled_group,
$disabled_user) {
if ($from_initialdata) {
ok(!$object->Id, "disabled " . ref($object) . " excluded");
}
else {
ok($object->Disabled, "disabled " . ref($object));
}
}
},
},
{
name => 'Unapplied Objects',
create => sub {
my $scrip = RT::Scrip->new(RT->SystemUser);
my ($ok, $msg) = $scrip->Create(
Queue => 0,
Description => 'Unapplied Scrip',
Template => 'Blank',
ScripCondition => 'On Create',
ScripAction => 'Notify Owner',
);
ok($ok, $msg);
($ok, $msg) = $scrip->RemoveFromObject(0);
ok($ok, $msg);
my $cf = RT::CustomField->new(RT->SystemUser);
($ok, $msg) = $cf->Create(
Name => 'Unapplied CF',
Type => 'FreeformSingle',
LookupType => RT::Ticket->CustomFieldLookupType,
);
ok($ok, $msg);
my $class = RT::Class->new(RT->SystemUser);
($ok, $msg) = $class->Create(
Name => 'Unapplied Class',
);
ok($ok, $msg);
my $role = RT::CustomRole->new(RT->SystemUser);
($ok, $msg) = $role->Create(
Name => 'Unapplied Custom Role',
);
ok($ok, $msg);
},
present => sub {
my $scrip = RT::Scrip->new(RT->SystemUser);
$scrip->LoadByCols(Description => 'Unapplied Scrip');
ok($scrip->Id, 'Unapplied scrip loaded');
is($scrip->Description, 'Unapplied Scrip');
ok(!$scrip->Disabled, 'not Disabled');
ok(!$scrip->IsGlobal, 'not Global');
ok(!$scrip->IsAdded($general->Id), 'not applied to General queue');
my $cf = RT::CustomField->new(RT->SystemUser);
$cf->Load('Unapplied CF');
ok($cf->Id, 'Unapplied CF loaded');
is($cf->Name, 'Unapplied CF');
ok(!$cf->Disabled, 'not Disabled');
ok(!$cf->IsGlobal, 'not Global');
ok(!$cf->IsAdded($general->Id), 'not applied to General queue');
my $class = RT::Class->new(RT->SystemUser);
$class->Load('Unapplied Class');
ok($class->Id, 'Unapplied Class loaded');
is($class->Name, 'Unapplied Class');
ok(!$class->Disabled, 'not Disabled');
ok(!$class->IsApplied(0), 'not Global');
ok(!$class->IsApplied($general->Id), 'not applied to General queue');
my $role = RT::CustomRole->new(RT->SystemUser);
$role->Load('Unapplied Custom Role');
ok($role->Id, 'Unapplied Custom Role loaded');
is($role->Name, 'Unapplied Custom Role');
ok(!$role->Disabled, 'not Disabled');
ok(!$role->IsAdded(0), 'not Global');
ok(!$role->IsAdded($general->Id), 'not applied to General queue');
},
},
{
name => 'Global Objects',
create => sub {
my $scrip = RT::Scrip->new(RT->SystemUser);
my ($ok, $msg) = $scrip->Create(
Queue => 0,
Description => 'Global Scrip',
Template => 'Blank',
ScripCondition => 'On Create',
ScripAction => 'Notify Owner',
);
ok($ok, $msg);
my $cf = RT::CustomField->new(RT->SystemUser);
($ok, $msg) = $cf->Create(
Name => 'Global CF',
Type => 'FreeformSingle',
LookupType => RT::Ticket->CustomFieldLookupType,
);
ok($ok, $msg);
($ok, $msg) = $cf->AddToObject(RT::Queue->new(RT->SystemUser));
ok($ok, $msg);
my $class = RT::Class->new(RT->SystemUser);
($ok, $msg) = $class->Create(
Name => 'Global Class',
);
ok($ok, $msg);
($ok, $msg) = $class->AddToObject(RT::Queue->new(RT->SystemUser));
ok($ok, $msg);
},
present => sub {
my $scrip = RT::Scrip->new(RT->SystemUser);
$scrip->LoadByCols(Description => 'Global Scrip');
ok($scrip->Id, 'Global scrip loaded');
is($scrip->Description, 'Global Scrip');
ok(!$scrip->Disabled, 'not Disabled');
ok($scrip->IsGlobal, 'Global');
ok(!$scrip->IsAdded($general->Id), 'not applied to General queue');
my $cf = RT::CustomField->new(RT->SystemUser);
$cf->Load('Global CF');
ok($cf->Id, 'Global CF loaded');
is($cf->Name, 'Global CF');
ok(!$cf->Disabled, 'not Disabled');
ok($cf->IsGlobal, 'Global');
ok(!$cf->IsAdded($general->Id), 'not applied to General queue');
my $class = RT::Class->new(RT->SystemUser);
$class->Load('Global Class');
ok($class->Id, 'Global Class loaded');
is($class->Name, 'Global Class');
ok(!$class->Disabled, 'not Disabled');
ok($class->IsApplied(0), 'Global');
ok(!$class->IsApplied($general->Id), 'not applied to General queue');
},
},
{
name => 'Templates',
create => sub {
my $global = RT::Template->new(RT->SystemUser);
my ($ok, $msg) = $global->Create(
Name => 'Initialdata test',
Queue => 0,
Description => 'foo',
Content => "Hello こんにちは",
Type => "Simple",
);
ok($ok, $msg);
my $queue = RT::Template->new(RT->SystemUser);
($ok, $msg) = $queue->Create(
Name => 'Initialdata test',
Queue => $general->Id,
Description => 'override for Swedes',
Content => "Hello Hallå",
Type => "Simple",
);
ok($ok, $msg);
my $standalone = RT::Template->new(RT->SystemUser);
($ok, $msg) = $standalone->Create(
Name => 'Standalone test',
Queue => $general->Id,
Description => 'no global version',
Content => "this was broken!",
Type => "Perl",
);
ok($ok, $msg);
},
present => sub {
my $global = RT::Template->new(RT->SystemUser);
$global->LoadGlobalTemplate('Initialdata test');
ok($global->Id, 'loaded template');
is($global->Name, 'Initialdata test', 'Name');
is($global->Queue, 0, 'Queue');
is($global->Description, 'foo', 'Description');
is($global->Content, 'Hello こんにちは', 'Content');
is($global->Type, 'Simple', 'Type');
my $queue = RT::Template->new(RT->SystemUser);
$queue->LoadQueueTemplate(Name => 'Initialdata test', Queue => $general->Id);
ok($queue->Id, 'loaded template');
is($queue->Name, 'Initialdata test', 'Name');
is($queue->Queue, $general->Id, 'Queue');
is($queue->Description, 'override for Swedes', 'Description');
is($queue->Content, 'Hello Hallå', 'Content');
is($queue->Type, 'Simple', 'Type');
my $standalone = RT::Template->new(RT->SystemUser);
$standalone->LoadQueueTemplate(Name => 'Standalone test', Queue => $general->Id);
ok($standalone->Id, 'loaded template');
is($standalone->Name, 'Standalone test', 'Name');
is($standalone->Queue, $general->Id, 'Queue');
is($standalone->Description, 'no global version', 'Description');
is($standalone->Content, 'this was broken!', 'Content');
is($standalone->Type, 'Perl', 'Type');
},
},
{
name => 'Articles',
create => sub {
my $class = RT::Class->new(RT->SystemUser);
my ($ok, $msg) = $class->Create(
Name => 'Test',
);
ok($ok, $msg);
my $content = RT::CustomField->new(RT->SystemUser);
$content->LoadByCols(
Name => "Content",
Type => "Text",
LookupType => RT::Article->CustomFieldLookupType,
);
ok($content->Id, "loaded builtin Content CF");
my $tags = RT::CustomField->new(RT->SystemUser);
($ok, $msg) = $tags->Create(
Name => "Tags",
Type => "FreeformMultiple",
LookupType => RT::Article->CustomFieldLookupType,
);
ok($ok, $msg);
($ok, $msg) = $tags->AddToObject($class);
ok($ok, $msg);
my $clearance = RT::CustomField->new(RT->SystemUser);
($ok, $msg) = $clearance->Create(
Name => "Clearance",
Type => "SelectSingle",
LookupType => RT::Article->CustomFieldLookupType,
);
ok($ok, $msg);
($ok, $msg) = $clearance->AddToObject($class);
ok($ok, $msg);
($ok, $msg) = $clearance->AddValue(Name => 'Unclassified');
ok($ok, $msg);
($ok, $msg) = $clearance->AddValue(Name => 'Classified');
ok($ok, $msg);
($ok, $msg) = $clearance->AddValue(Name => 'Top Secret');
ok($ok, $msg);
my $coffee = RT::Article->new(RT->SystemUser);
($ok, $msg) = $coffee->Create(
Class => 'Test',
Name => 'Coffee time',
"CustomField-" . $content->Id => 'Always',
"CustomField-" . $clearance->Id => 'Unclassified',
"CustomField-" . $tags->Id => ['drink', 'coffee', 'how the humans live'],
);
ok($ok, $msg);
my $twd = RT::Article->new(RT->SystemUser);
($ok, $msg) = $twd->Create(
Class => 'Test',
Name => 'Total world domination plans',
"CustomField-" . $content->Id => 'REDACTED',
"CustomField-" . $clearance->Id => 'Top Secret',
"CustomField-" . $tags->Id => ['snakes', 'clowns'],
);
ok($ok, $msg);
},
present => sub {
my $class = RT::Class->new(RT->SystemUser);
$class->Load('Test');
ok($class->Id, 'loaded class');
is($class->Name, 'Test', 'Name');
my $coffee = RT::Article->new(RT->SystemUser);
$coffee->LoadByCols(Name => 'Coffee time');
ok($coffee->Id, 'loaded article');
is($coffee->Name, 'Coffee time', 'Name');
is($coffee->Class, $class->Id, 'Class');
is($coffee->FirstCustomFieldValue('Content'), 'Always', 'Content CF');
is($coffee->FirstCustomFieldValue('Clearance'), 'Unclassified', 'Clearance CF');
is($coffee->CustomFieldValuesAsString('Tags', Separator => '.'), 'drink.coffee.how the humans live', 'Tags CF');
my $twd = RT::Article->new(RT->SystemUser);
$twd->LoadByCols(Name => 'Total world domination plans');
ok($twd->Id, 'loaded article');
is($twd->Name, 'Total world domination plans', 'Name');
is($twd->Class, $class->Id, 'Class');
is($twd->FirstCustomFieldValue('Content'), 'REDACTED', 'Content CF');
is($twd->FirstCustomFieldValue('Clearance'), 'Top Secret', 'Clearance CF');
is($twd->CustomFieldValuesAsString('Tags', Separator => '.'), 'snakes.clowns', 'Tags CF');
},
},
{
name => 'Attributes',
create => sub {
my $root = RT::User->new(RT->SystemUser);
my ($ok, $msg) = $root->Load('root');
ok($ok, $msg);
my $dashboard = RT::Dashboard->new($root);
($ok, $msg) = $dashboard->Save(
Name => 'My Dashboard',
Privacy => 'RT::User-' . $root->Id,
);
ok($ok, $msg);
my $subscription = RT::Attribute->new($root);
($ok, $msg) = $subscription->Create(
Name => 'Subscription',
Description => 'Subscription to dashboard ' . $dashboard->Id,
ContentType => 'storable',
Object => $root,
Content => { 'Tuesday' => '1', 'DashboardId' => $dashboard->Id },
);
},
present => sub {
# Provided in core initialdata
my $homepage = RT::Attribute->new(RT->SystemUser);
$homepage->LoadByNameAndObject(Name => 'Dashboard', Description => 'Homepage', Object => RT->System);
ok($homepage->Id, 'Loaded homepage attribute');
is($homepage->Name, 'Dashboard', 'Name is Dashboard');
is($homepage->Description, 'Homepage', 'Description is Homepage');
is($homepage->ContentType, 'storable', 'ContentType is storable');
my $root = RT::User->new(RT->SystemUser);
my ($ok, $msg) = $root->Load('root');
ok($ok, $msg);
my $dashboard = RT::Attribute->new($root);
$dashboard->LoadByNameAndObject(Name => 'Dashboard', Object => $root);
ok($dashboard->Id, 'Loaded dashboard attribute with id ' . $dashboard->Id);
my $subscription = RT::Attribute->new($root);
$subscription->LoadByNameAndObject(Name => 'Subscription', Object => $root);
ok($subscription->Id, 'Loaded subscription attribute with id ' . $subscription->Id);
is($subscription->ContentType, 'storable', 'ContentType is storable');
is($subscription->Content->{DashboardId}, $dashboard->Id, 'Dashboard Id is ' . $dashboard->Id);
is( $subscription->Description,
'Subscription to dashboard ' . $dashboard->Id,
'Description is "Subscription to dashboard ' . $dashboard->Id . '"'
);
},
},
);
my $id = 0;
for my $test (@tests) {
$id++;
my $directory = File::Spec->catdir(RT::Test->temp_directory, "export-$id");
# we get a lot of warnings about already-existing objects; suppress them
# for now until we clean it up
my $warn = $SIG{__WARN__};
local $SIG{__WARN__} = sub {
return if $_[0] =~ join '|', (
qr/^Name in use$/,
qr/^A Template with that name already exists$/,
qr/^.* already has the right .* on .*$/,
qr/^Invalid value for Name$/,
qr/^Queue already exists$/,
qr/^Invalid Name \(names must be unique and may not be all digits\)$/,
);
# Avoid reporting this anonymous call frame as the source of the warning
goto &$warn;
};
my $name = delete $test->{name};
my $create = delete $test->{create};
my $absent = delete $test->{absent};
my $present = delete $test->{present};
my $raw = delete $test->{raw};
my $export_args = delete $test->{export_args};
fail("Unexpected keys for test #$id ($name): " . join(', ', sort keys %$test)) if keys %$test;
subtest "$name (ordinary creation)" => sub {
autorollback(sub {
$absent->(0) if $absent;
$create->();
$present->(0) if $present;
export_initialdata($directory, %{ $export_args || {} });
});
};
if ($raw) {
subtest "$name (testing initialdata)" => sub {
my $file = File::Spec->catfile($directory, "initialdata.json");
my $content = slurp($file);
my $json = JSON->new->decode($content);
$raw->($json, $content);
};
}
subtest "$name (from export-$id/initialdata.json)" => sub {
autorollback(sub {
$absent->(1) if $absent;
import_initialdata($directory);
$present->(1) if $present;
});
};
}
RT::Test::done_testing();
sub autorollback {
my $code = shift;
$RT::Handle->BeginTransaction;
{
# avoid "Rollback and commit are mixed while escaping nested transaction" warnings
# due to (begin; (begin; commit); rollback)
no warnings 'redefine';
local *DBIx::SearchBuilder::Handle::BeginTransaction = sub {};
local *DBIx::SearchBuilder::Handle::Commit = sub {};
local *DBIx::SearchBuilder::Handle::Rollback = sub {};
$code->();
}
$RT::Handle->Rollback;
}
sub export_initialdata {
my $directory = shift;
my %args = @_;
local @RT::Record::ISA = qw( DBIx::SearchBuilder::Record RT::Base );
use RT::Migrate::Serializer::JSON;
my $migrator = RT::Migrate::Serializer::JSON->new(
Directory => $directory,
Verbose => 0,
AllUsers => 0,
FollowACL => 1,
FollowScrips => 1,
FollowTransactions => 0,
FollowTickets => 0,
FollowAssets => 0,
FollowDisabled => 0,
%args,
);
$migrator->Export;
}
sub import_initialdata {
my $directory = shift;
my $initialdata = File::Spec->catfile($directory, "initialdata.json");
ok(-e $initialdata, "File $initialdata exists");
my ($rv, $msg) = RT->DatabaseHandle->InsertData( $initialdata, undef, disconnect_after => 0 );
ok($rv, "Inserted test data from $initialdata")
or diag "Error: $msg";
}
sub slurp {
my $file = shift;
local $/;
open (my $f, '<:encoding(UTF-8)', $file)
or die "Cannot open initialdata file '$file' for read: $@";
return scalar <$f>;
}
|