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
|
use strict;
use warnings;
use RT;
use RT::Test nodata => 1, tests => undef;
{
ok (require RT::Group);
ok (my $group = RT::Group->new(RT->SystemUser), "instantiated a group object");
ok (my ($id, $msg) = $group->CreateUserDefinedGroup( Name => 'TestGroup', Description => 'A test group',
), 'Created a new group');
isnt ($id , 0, "Group id is $id");
is ($group->Name , 'TestGroup', "The group's name is 'TestGroup'");
my $ng = RT::Group->new(RT->SystemUser);
ok($ng->LoadUserDefinedGroup('TestGroup'), "Loaded testgroup");
is($ng->id , $group->id, "Loaded the right group");
my @users = (undef);
for my $number (1..3) {
my $user = RT::User->new(RT->SystemUser);
$user->Create( Name => "User $number" );
push @users, $user->id;
}
ok (($id,$msg) = $ng->AddMember( $users[1] ), "Added a member to the group");
ok($id, $msg);
ok (($id,$msg) = $ng->AddMember( $users[2] ), "Added a member to the group");
ok($id, $msg);
ok (($id,$msg) = $ng->AddMember( $users[3] ), "Added a member to the group");
ok($id, $msg);
# Group 1 now has members 1, 2 ,3
my $group_2 = RT::Group->new(RT->SystemUser);
ok (my ($id_2, $msg_2) = $group_2->CreateUserDefinedGroup( Name => 'TestGroup2', Description => 'A second test group'), , 'Created a new group');
isnt ($id_2 , 0, "Created group 2 ok- $msg_2 ");
ok (($id,$msg) = $group_2->AddMember($ng->PrincipalId), "Made TestGroup a member of testgroup2");
ok($id, $msg);
ok (($id,$msg) = $group_2->AddMember( $users[1] ), "Added member User 1 to the group TestGroup2");
ok($id, $msg);
# Group 2 how has 1, g1->{1, 2,3}
my $group_3 = RT::Group->new(RT->SystemUser);
ok (my ($id_3, $msg_3) = $group_3->CreateUserDefinedGroup( Name => 'TestGroup3', Description => 'A second test group'), 'Created a new group');
isnt ($id_3 , 0, "Created group 3 ok - $msg_3");
ok (($id,$msg) =$group_3->AddMember($group_2->PrincipalId), "Made TestGroup a member of testgroup2");
ok($id, $msg);
# g3 now has g2->{1, g1->{1,2,3}}
my $principal_1 = RT::Principal->new(RT->SystemUser);
$principal_1->Load( $users[1] );
my $principal_2 = RT::Principal->new(RT->SystemUser);
$principal_2->Load( $users[2] );
ok (($id,$msg) = $group_3->AddMember( $users[1] ), "Added member User 1 to the group TestGroup2");
ok($id, $msg);
# g3 now has 1, g2->{1, g1->{1,2,3}}
is($group_3->HasMember($principal_2), undef, "group 3 doesn't have member 2");
ok($group_3->HasMemberRecursively($principal_2), "group 3 has member 2 recursively");
ok($ng->HasMember($principal_2) , "group ".$ng->Id." has member 2");
my ($delid , $delmsg) =$ng->DeleteMember($principal_2->Id);
isnt ($delid ,0, "Sucessfully deleted it-".$delid."-".$delmsg);
#Gotta reload the group objects, since we've been messing with various internals.
# we shouldn't need to do this.
#$ng->LoadUserDefinedGroup('TestGroup');
#$group_2->LoadUserDefinedGroup('TestGroup2');
#$group_3->LoadUserDefinedGroup('TestGroup');
# G1 now has 1, 3
# Group 2 how has 1, g1->{1, 3}
# g3 now has 1, g2->{1, g1->{1, 3}}
ok(!$ng->HasMember($principal_2) , "group ".$ng->Id." no longer has member 2");
is($group_3->HasMemberRecursively($principal_2), undef, "group 3 doesn't have member 2");
is($group_2->HasMemberRecursively($principal_2), undef, "group 2 doesn't have member 2");
is($ng->HasMember($principal_2), undef, "group 1 doesn't have member 2");
is($group_3->HasMemberRecursively($principal_2), undef, "group 3 has member 2 recursively");
}
{
ok(my $u = RT::Group->new(RT->SystemUser));
ok($u->Load(4), "Loaded the first user");
is($u->PrincipalObj->id , 4, "user 4 is the fourth principal");
is($u->PrincipalObj->PrincipalType , 'Group' , "Principal 4 is a group");
}
{
my $u = RT::Group->new(RT->SystemUser);
$u->LoadUserDefinedGroup('TestGroup');
ok( $u->id, 'loaded TestGroup' );
ok( $u->SetName('testgroup'), 'rename to lower cased version: testgroup' );
ok( $u->SetName('TestGroup'), 'rename back' );
my $u2 = RT::Group->new( RT->SystemUser );
my ( $id, $msg ) = $u2->CreateUserDefinedGroup( Name => 'TestGroup' );
ok( !$id, "can't create duplicated group: $msg" );
( $id, $msg ) = $u2->CreateUserDefinedGroup( Name => 'testgroup' );
ok( !$id, "can't create duplicated group even case is different: $msg" );
}
diag "Ticket role group members";
{
RT::Test->load_or_create_queue( Name => 'General' );
my $ticket = RT::Test->create_ticket( Queue => 'General', Subject => 'test ticket role group' );
my $admincc = $ticket->RoleGroup('AdminCc');
my $delegates = RT::Test->load_or_create_group('delegates');
my $core = RT::Test->load_or_create_group('core team');
my $alice = RT::Test->load_or_create_user( Name => 'alice' );
my $bob = RT::Test->load_or_create_user( Name => 'bob' );
ok( $admincc->AddMember( $delegates->PrincipalId ), 'Add delegates to AdminCc' );
ok( $delegates->AddMember( $core->PrincipalId ), 'Add core team to delegates' );
ok( $delegates->AddMember( $bob->PrincipalId ), 'Add bob to delegates' );
ok( $core->AddMember( $alice->PrincipalId ), 'Add alice to core team' );
ok( $admincc->HasMember( $delegates->PrincipalId ), 'AdminCc has direct member of delegates' );
ok( !$admincc->HasMember( $core->PrincipalId ), "AdminCc doesn't have member of core" );
ok( !$admincc->HasMember( $bob->PrincipalId ), "AdminCc doesn't have member of bob" );
ok( !$admincc->HasMember( $alice->PrincipalId ), "AdminCc doesn't have member of bob" );
ok( $admincc->HasMemberRecursively( $core->PrincipalId ), "AdminCc recursively has member of core" );
ok( $admincc->HasMemberRecursively( $bob->PrincipalId ), "AdminCc recursively has member of bob" );
ok( $admincc->HasMemberRecursively( $alice->PrincipalId ), "AdminCc recursively has member of alice" );
my $CGM = RT::CachedGroupMember->new( RT->SystemUser );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $delegates->PrincipalId );
ok( $CGM->id, 'CGM record for admincc <-> delegates' );
$CGM->LoadByCols( GroupId => $delegates->PrincipalId, MemberId => $core->PrincipalId );
ok( $CGM->id, 'CGM record for delegates <-> core' );
$CGM->LoadByCols( GroupId => $core->PrincipalId, MemberId => $alice->PrincipalId );
ok( $CGM->id, 'CGM record for core <-> alice' );
$CGM->LoadByCols( GroupId => $delegates->PrincipalId, MemberId => $alice->PrincipalId );
ok( $CGM->id, 'CGM record for delegates <-> alice' );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $core->PrincipalId );
ok( !$CGM->id, 'No CGM record for admincc <-> core' );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $alice->PrincipalId );
ok( !$CGM->id, 'No CGM record for admincc <-> alice' );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $bob->PrincipalId );
ok( !$CGM->id, 'No CGM record for admincc <-> bob' );
ok( $admincc->DeleteMember( $delegates->PrincipalId ), 'Delete delegates from AdminCc' );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $delegates->PrincipalId );
ok( !$CGM->id, 'No CGM record for admincc <-> delegates' );
ok( $admincc->AddMember( $delegates->PrincipalId ), 'Add delegates to AdminCc again' );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $delegates->PrincipalId );
ok( $CGM->id, 'CGM record for admincc <-> delegates again' );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $core->PrincipalId );
ok( !$CGM->id, 'No CGM record for admincc <-> corei still' );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $alice->PrincipalId );
ok( !$CGM->id, 'No CGM record for admincc <-> alice still' );
$CGM->LoadByCols( GroupId => $admincc->PrincipalId, MemberId => $bob->PrincipalId );
ok( !$CGM->id, 'No CGM record for admincc <-> bob still' );
}
done_testing;
|