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
|
#!/usr/bin/perl -w
use strict;
use RT::Test tests => 14;
my ($baseurl, $m) = RT::Test->started_ok;
ok $m->login, 'logged in';
diag "Create a queue CF" if $ENV{'TEST_VERBOSE'};
{
$m->follow_link( text => 'Configuration' );
$m->title_is(q/RT Administration/, 'admin screen');
$m->follow_link( text => 'Custom Fields' );
$m->title_is(q/Select a Custom Field/, 'admin-cf screen');
$m->follow_link( text => 'Create' );
$m->submit_form(
form_name => "ModifyCustomField",
fields => {
TypeComposite => 'Freeform-1',
LookupType => 'RT::Queue',
Name => 'QueueCFTest',
Description => 'QueueCFTest',
},
);
$m->content_like( qr/Object created/, 'CF QueueCFTest created' );
}
diag "Apply the new CF globally" if $ENV{'TEST_VERBOSE'};
{
$m->follow_link( text => 'Global' );
$m->title_is(q!Admin/Global configuration!, 'global configuration screen');
$m->follow_link( url_regex => qr!Admin/Global/CustomFields/index! );
$m->title_is(q/Global custom field configuration/, 'global custom field configuration screen');
$m->follow_link( url => 'Queues.html' );
$m->title_is(q/Edit Custom Fields for all queues/, 'global custom field for all queues configuration screen');
$m->content_like( qr/QueueCFTest/, 'CF QueueCFTest displayed on page' );
$m->submit_form(
form_name => "EditCustomFields",
fields => {
'Object--CF-1' => '1',
},
);
$m->content_like( qr/Object created/, 'CF QueueCFTest enabled globally' );
}
diag "Edit the CF value for default queue" if $ENV{'TEST_VERBOSE'};
{
$m->follow_link( url => '/Admin/Queues/' );
$m->title_is(q/Admin queues/, 'queues configuration screen');
$m->follow_link( text => "1" );
$m->title_is(q/Editing Configuration for queue General/, 'default queue configuration screen');
$m->content_like( qr/QueueCFTest/, 'CF QueueCFTest displayed on default queue' );
$m->submit_form(
form_number => 3,
# The following doesn't want to works :(
#with_fields => { 'Object-RT::Queue-1-CustomField-1-Value' },
fields => {
'Object-RT::Queue-1-CustomField-1-Value' => 'QueueCFTest content',
},
);
$m->content_like( qr/QueueCFTest QueueCFTest content added/, 'Content filed in CF QueueCFTest for default queue' );
}
__END__
|