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
|
use strict;
use warnings;
use RT::Test tests => undef;
my ( $url, $m ) = RT::Test->started_ok;
diag "Running server at: $url";
$m->login;
my %class = map { $_ => '' } qw/foo bar/;
diag "create classes foo and bar" if $ENV{TEST_VERBOSE};
for my $name ( keys %class ) {
$m->get_ok( '/Admin/Articles/Classes/Modify.html?Create=1',
'class create page' );
$m->submit_form(
form_number => 3,
fields => { Name => $name },
);
$m->content_contains( "Modify the Class $name",
'created class $name' );
my ($id) = ( $m->content =~ /name="id" value="(\d+)"/ );
ok( $id, "id of $name" );
$class{$name} = $id;
}
diag "create articles in foo and bar" if $ENV{TEST_VERBOSE};
for my $name ( keys %class ) {
$m->get_ok( '/Articles/Article/Edit.html?Class=' . $class{$name},
'article create page' );
$m->submit_form(
form_number => 3,
fields => { Name => "article $name",
'Summary' => "$name summary",
'Object-RT::Article--CustomField-1-Values' => "$name content"}
);
$m->content_like( qr/Article \d+ created/, "created article $name" );
}
diag "apply foo to queue General" if $ENV{TEST_VERBOSE};
{
$m->get_ok( '/Admin/Articles/Classes/Objects.html?id=' . $class{foo},
'apply page' );
$m->submit_form(
form_number => 3,
fields => { 'AddClass-' . $class{foo} => 1 },
button => 'UpdateObjs',
);
$m->content_contains( 'Object created', 'applied foo to General' );
}
my $ticket_id;
diag "create ticket in General" if $ENV{TEST_VERBOSE};
{
$m->get_ok( '/Ticket/Create.html?Queue=1', 'ticket create page' );
$m->submit_form(
form_number => 3,
fields => { 'Subject' => 'test article', Content => 'test article' },
button => 'SubmitTicket',
);
($ticket_id) = ( $m->content =~ /Ticket \d+ created/ );
ok( $ticket_id, "id of ticket: $ticket_id" );
}
diag "update ticket to see if there is article foo"
if $ENV{TEST_VERBOSE};
{
$m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id,
'ticket update page' );
$m->content_contains( 'article foo:', 'got article foo in dropdown' );
$m->content_lacks( 'article bar:', 'no article bar in dropdown' );
}
diag "apply bar to globally" if $ENV{TEST_VERBOSE};
{
$m->get_ok( '/Admin/Articles/Classes/Objects.html?id=' . $class{bar},
'apply page' );
$m->submit_form(
form_number => 3,
fields => { 'AddClass-' . $class{bar} => 0 },
button => 'UpdateObjs',
);
$m->content_contains( 'Object created', 'applied bar globally' );
}
diag "update ticket to see if there are both article foo and bar"
if $ENV{TEST_VERBOSE};
{
$m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id,
'ticket update page' );
$m->content_contains( 'article foo:', 'got article foo in dropdown' );
$m->content_contains( 'article bar:', 'got article bar in dropdown' );
$m->submit_form(
form_number => 3,
fields => { 'IncludeArticleId' => '1' },
);
$m->content_like( qr/foo summary/s, 'article included' );
}
diag "remove both foo and bar" if $ENV{TEST_VERBOSE};
{
$m->get_ok( '/Admin/Articles/Classes/Objects.html?id=' . $class{foo},
'apply page' );
$m->submit_form(
form_number => 3,
fields => { 'RemoveClass-' . $class{foo} => 1 },
button => 'UpdateObjs',
);
$m->content_contains( 'Object deleted', 'removed foo' );
$m->get_ok( '/Admin/Articles/Classes/Objects.html?id=' . $class{bar},
'apply page' );
$m->submit_form(
form_number => 3,
fields => { 'RemoveClass-' . $class{bar} => 0 },
button => 'UpdateObjs',
);
$m->content_contains( 'Object deleted', 'removed bar' );
}
diag "update ticket to see if there are both article foo and bar"
if $ENV{TEST_VERBOSE};
{
$m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id,
'ticket update page' );
$m->content_lacks( 'article foo:', 'no article foo in hotlist' );
$m->content_lacks( 'article bar:', 'no article bar in hotlist' );
$m->submit_form(
form_number => 3,
fields => { 'Articles_Content' => 'article' },
);
$m->content_lacks( 'article foo', 'no article foo' );
$m->content_lacks( 'article bar', 'no article bar' );
$m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id,
'ticket update page' );
$m->submit_form(
form_number => 3,
fields => { 'Articles-Include-Article-Named' => 'article foo' },
);
$m->content_lacks( 'article foo', 'no article foo' );
$m->content_lacks( 'article bar', 'no article bar' );
$m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id,
'ticket update page' );
$m->submit_form(
form_number => 3,
fields => { 'Articles-Include-Article-Named' => 'article bar' },
);
$m->content_lacks( 'article foo', 'no article foo' );
$m->content_lacks( 'article bar', 'no article bar' );
}
done_testing();
|