Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / rt / t / web / cf_textarea.t
1 use strict;
2 use warnings;
3
4 use RT::Test tests => 'no_declare';
5
6 my $content = join ' ', ('The quick brown fox jumps over the lazy dog.') x 5;
7 $content = join "\n\n", $content, $content, $content;
8
9 my ($base, $m) = RT::Test->started_ok;
10
11 $m->login;
12
13 my $ticket = RT::Test->create_ticket(
14     Queue   => 1,
15     Subject => 'a test ticket',
16 );
17 ok $ticket && $ticket->id, "Created ticket";
18
19 my $EditUrl = "/Ticket/Modify.html?id=" . $ticket->id;
20
21 my $cfs = {
22     area => {
23         type => 'Text',
24         name => 'TheTextarea',
25     },
26     text => {
27         type => 'FreeformSingle',
28         name => 'TheControlField',
29     },
30 };
31
32 while ( my( $label, $data ) = each %$cfs ) {
33     my $cf = $data->{obj} = RT::Test->load_or_create_custom_field(
34         Name        => $data->{name},
35         Type        => $data->{type},
36         Queue       => 0,
37         LookupType  => 'RT::Queue-RT::Ticket',
38     );
39     ok $cf && $cf->id, "Created $data->{type} CF";
40
41     # get cf input field name
42     $data->{input} = RT::Interface::Web::GetCustomFieldInputName(
43         Object      => $ticket,
44         CustomField => $cf,
45     );
46 }
47
48 # open ticket "Basics" page
49 $m->get_ok($EditUrl, "Fetched $EditUrl");
50 $m->content_contains($_->{name} . ':') for ( values %$cfs );
51
52 $m->submit_form_ok({
53     with_fields => {
54         $cfs->{area}{input}            => $content,
55         $cfs->{area}{input} . '-Magic' => "1",
56         $cfs->{text}{input}            => 'value a',
57         $cfs->{text}{input} . '-Magic' => "1",
58     },
59 }, 'submitted form to initially set CFs');
60 $m->content_contains('<li>TheControlField value a added</li>');
61 $m->content_contains("<li>TheTextarea $content added</li>", 'content found');
62
63 # http://issues.bestpractical.com/Ticket/Display.html?id=30378
64 # #30378: RT 4.2.6 - Very long text fields get updated even when they haven't changed
65 $m->submit_form_ok({
66     with_fields => {
67         $cfs->{text}{input}            => 'value b',
68         $cfs->{text}{input} . '-Magic' => "1",
69     },
70 }, 'submitted form to initially set CFs');
71 $m->content_contains('<li>TheControlField value a changed to value b</li>');
72 $m->content_lacks("<li>TheTextarea $content changed to $content</li>", 'textarea wasnt updated');
73
74 undef $m;
75 done_testing;