File: condition-reject.t

package info (click to toggle)
request-tracker5 5.0.3%2Bdfsg-3~deb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 77,648 kB
  • sloc: javascript: 187,930; perl: 79,061; sh: 1,302; makefile: 471; python: 37; php: 15
file content (44 lines) | stat: -rw-r--r-- 1,271 bytes parent folder | download | duplicates (12)
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
#
# Check that the "On Reject" scrip condition exists and is working
#

use strict;
use warnings;
use RT;
use RT::Test tests => 7;


{

my $q = RT::Queue->new(RT->SystemUser);
$q->Create(Name =>'rejectTest');

ok($q->Id, "Created a scriptest queue");

my $s1 = RT::Scrip->new(RT->SystemUser);
my ($val, $msg) =$s1->Create( Queue => $q->Id,
             ScripAction => 'User Defined',
             ScripCondition => 'On reject',
             CustomIsApplicableCode => '',
             CustomPrepareCode => 'return 1',
             CustomCommitCode => '
                    $self->TicketObj->SetPriority($self->TicketObj->Priority+1);
                return(1);
            ',
             Template => 'Blank'
    );
ok($val,$msg);

my $ticket = RT::Ticket->new(RT->SystemUser);
my ($tv,$ttv,$tm) = $ticket->Create(Queue => $q->Id,
                                    Subject => "hair on fire",
                                    InitialPriority => '20'
                                    );
ok($tv, $tm);
ok($ticket->SetStatus('rejected'), "Status set to \"rejected\"");
is ($ticket->Priority , '21', "Condition is true, scrip triggered");
ok($ticket->SetStatus('open'), "Status set to \"open\"");
is ($ticket->Priority , '21', "Condition is false, scrip skipped");

}