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
|
use strict;
use warnings;
use RT::Test::REST2 tests => undef;
my $mech = RT::Test::REST2->mech;
my $auth = RT::Test::REST2->authorization_header;
my $rest_base_path = '/REST/2.0';
my $user = RT::Test::REST2->user;
$user->PrincipalObj->GrantRight( Right => 'ModifySelf' );
my $custom_role = RT::CustomRole->new( RT->SystemUser );
my ( $ret, $msg ) = $custom_role->Create(
Name => 'Manager',
MaxValues => 0,
);
ok( $ret, "created custom role: $msg" );
( $ret, $msg ) = $custom_role->AddToObject(1);
ok( $ret, "added custom role to queue: $msg" );
my $custom_role_type = $custom_role->GroupType;
my $cf = RT::CustomField->new( RT->SystemUser );
( $ret, $msg ) = $cf->Create( Name => 'Boss', Type => 'Freeform', LookupType => RT::User->CustomFieldLookupType );
ok( $ret, "created custom field: $msg" );
ok( $cf->AddToObject( RT::User->new( RT->SystemUser ) ) );
ok( $user->SetCountry('US') );
ok( $user->AddCustomFieldValue( Field => $cf, Value => 'root' ) );
my $search1 = RT::SavedSearch->new($user);
( $ret, $msg ) = $search1->Save(
Privacy => 'RT::User-' . $user->Id,
Type => 'Ticket',
Name => 'My tickets',
SearchParams => {
RowsPerPage => 50,
'Format' => join( ',',
RT->Config->Get('DefaultSearchResultFormat'), '__Requestors.Country__',
'__CustomRole.{Manager}.CustomField.{Boss}__' ),
'Query' => "Owner = '" . $user->Name . "'",
},
);
ok( $ret, "created $msg" );
my $search2 = RT::SavedSearch->new( RT->SystemUser );
( $ret, $msg ) = $search2->Save(
Privacy => 'RT::System-1',
Type => 'Ticket',
Name => 'Recently created tickets',
SearchParams => {
'Format' => RT->Config->Get('DefaultSearchResultFormat'),
'Query' => "Created >= 'yesterday'",
},
);
ok( $ret, "created $msg" );
{
my $res = $mech->get( "$rest_base_path/searches", 'Authorization' => $auth, );
is( $res->code, 200, 'got /searches' );
my $content = $mech->json_response;
is( $content->{count}, 4, '4 searches' );
is( $content->{page}, 1, '1 page' );
is( $content->{per_page}, 20, '20 per_page' );
is( $content->{total}, undef, 'No total' );
is( scalar @{ $content->{items} }, 4, 'items count' );
for my $item ( @{ $content->{items} } ) {
ok( $item->{id}, 'search id' );
is( $item->{type}, 'search', 'search type' );
like( $item->{_url}, qr{$rest_base_path/search/$item->{id}}, 'search url' );
}
is( $content->{items}[-1]{id}, $search1->Id, 'search id' );
}
{
my $res = $mech->get( "$rest_base_path/search/" . $search2->Id, 'Authorization' => $auth, );
is( $res->code, 404, 'can not see system search without permission' );
}
$user->PrincipalObj->GrantRight( Right => 'SuperUser' );
{
my $res = $mech->get( "$rest_base_path/search/" . $search2->Id, 'Authorization' => $auth, );
is( $res->code, 200, 'can see system search with permission' );
}
{
my $res = $mech->get( "$rest_base_path/searches", 'Authorization' => $auth, );
is( $res->code, 200, 'got /searches' );
my $content = $mech->json_response;
is( $content->{count}, 5, '5 searches' );
is( $content->{page}, 1, '1 page' );
is( $content->{per_page}, 20, '20 per_page' );
is( $content->{total}, 5, '5 total' );
is( scalar @{ $content->{items} }, 5, 'items count' );
for my $item ( @{ $content->{items} } ) {
ok( $item->{id}, 'search id' );
is( $item->{type}, 'search', 'search type' );
like( $item->{_url}, qr{$rest_base_path/search/$item->{id}}, 'search url' );
}
is( $content->{items}[3]{id}, $search1->Id, 'search id' );
is( $content->{items}[4]{id}, $search2->Id, 'search id' );
}
{
my $res = $mech->post_json(
"$rest_base_path/searches",
[ { field => 'Description', value => 'My tickets' } ],
'Authorization' => $auth,
);
is( $res->code, 200, "got $rest_base_path/searches" );
my $content = $mech->json_response;
is( $content->{count}, 1, '1 search' );
is( $content->{page}, 1, '1 page' );
is( $content->{per_page}, 20, '20 per_page' );
is( $content->{total}, 1, '1 total' );
is( scalar @{ $content->{items} }, 1, 'items count' );
is( $content->{items}[0]{id}, $search1->Id, 'search id' );
}
# Single search
{
my $res = $mech->get( "$rest_base_path/search/" . $search1->Id, 'Authorization' => $auth, );
is( $res->code, 200, "got $rest_base_path/search/" . $search1->Id );
my $content = $mech->json_response;
is( $content->{id}, $search1->id, 'id' );
is( $content->{Name}, 'SavedSearch', 'Name' );
is( $content->{Description}, 'My tickets', 'Description' );
my $links = $content->{_hyperlinks};
is( scalar @$links, 2, 'links count' );
is( $links->[0]{ref}, 'self', 'self link ref' );
is( $links->[0]{id}, $search1->Id, 'self link id' );
is( $links->[0]{type}, 'search', 'self link type' );
like( $links->[0]{_url}, qr[$rest_base_path/search/$links->[0]{id}$], 'self link url' );
is( $links->[1]{ref}, 'tickets', 'results link ref' );
is( $links->[1]{type}, 'results', 'results link type' );
like( $links->[1]{_url}, qr[$rest_base_path/tickets\?search=$content->{id}$], 'results link url' );
$res = $mech->get( "$rest_base_path/search/My tickets", 'Authorization' => $auth, );
is( $res->code, 200, "got $rest_base_path/search/" . $search1->Id );
is_deeply( $content, $mech->json_response, 'Access via search name' );
}
{
my $ticket1 = RT::Test->create_ticket(
Queue => 1,
Subject => 'test ticket',
Owner => $user->Id,
Requestor => $user->Id,
$custom_role_type => $user->Id
);
my $ticket2 = RT::Test->create_ticket( Queue => 1, Subject => 'test ticket' );
my $res = $mech->get( "$rest_base_path/tickets?search=" . $search1->Id, 'Authorization' => $auth, );
is( $res->code, 200, "got $rest_base_path/tickets?search=" . $search1->Id );
my $content = $mech->json_response;
is( $content->{count}, 1, '1 search' );
is( $content->{page}, 1, '1 page' );
is( $content->{per_page}, 50, '50 per_page' );
is( $content->{total}, 1, '1 total' );
is( scalar @{ $content->{items} }, 1, 'items count' );
my $item = $content->{items}[0];
is( $item->{id}, $ticket1->Id, 'ticket id' );
for my $field ( qw/Requestor Owner Status TimeLeft Subject Priority Created LastUpdated Told Queue/,
$custom_role_type )
{
ok( length $item->{$field}, "$field value not empty" );
}
is( $item->{Subject}, 'test ticket', 'Subject value' );
is( $item->{Queue}{Name}, 'General', 'Queue name' );
is( $item->{Requestor}[0]{id}, $user->Name, 'Requestor id' );
is( $item->{Requestor}[0]{Country}, 'US', 'Requestor Country' );
is( $item->{$custom_role_type}[0]{id}, $user->Name, 'Manager id' );
is( $item->{$custom_role_type}[0]{CustomFields}[0]{name}, 'Boss', 'Manager Boss' );
is( $item->{$custom_role_type}[0]{CustomFields}[0]{values}[0], 'root', 'Manager Boss name' );
$res = $mech->get( "$rest_base_path/tickets?search=My tickets", 'Authorization' => $auth, );
is( $res->code, 200, "got $rest_base_path/tickets?search=My tickets" );
is_deeply( $content, $mech->json_response, 'search tickets via search name' );
$res = $mech->get( "$rest_base_path/tickets?search=My tickets&per_page=10&fields=id", 'Authorization' => $auth, );
is( $res->code, 200, "got $rest_base_path/tickets?search=My tickets" );
$content = $mech->json_response;
is( $content->{count}, 1, '1 search' );
is( $content->{page}, 1, '1 page' );
is( $content->{per_page}, 10, '10 per_page' );
is( $content->{total}, 1, '1 total' );
is( scalar @{ $content->{items} }, 1, 'items count' );
$item = $content->{items}[0];
is( $item->{id}, $ticket1->Id, 'ticket id' );
for my $field ( qw/Requestor Owner Status TimeLeft Subject Priority Created LastUpdated Told Queue/,
$custom_role_type )
{
ok( !exists $item->{$field}, "$field not exists" );
}
}
done_testing;
|