rt 4.2.15
[freeside.git] / rt / lib / RT / Test / GnuPG.pm
1 # BEGIN BPS TAGGED BLOCK {{{
2 #
3 # COPYRIGHT:
4 #
5 # This software is Copyright (c) 1996-2018 Best Practical Solutions, LLC
6 #                                          <sales@bestpractical.com>
7 #
8 # (Except where explicitly superseded by other copyright notices)
9 #
10 #
11 # LICENSE:
12 #
13 # This work is made available to you under the terms of Version 2 of
14 # the GNU General Public License. A copy of that license should have
15 # been provided with this software, but in any event can be snarfed
16 # from www.gnu.org.
17 #
18 # This work is distributed in the hope that it will be useful, but
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 # General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 # 02110-1301 or visit their web page on the internet at
27 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 #
29 #
30 # CONTRIBUTION SUBMISSION POLICY:
31 #
32 # (The following paragraph is not intended to limit the rights granted
33 # to you to modify and distribute this software under the terms of
34 # the GNU General Public License and is only of importance to you if
35 # you choose to contribute your changes and enhancements to the
36 # community by submitting them to Best Practical Solutions, LLC.)
37 #
38 # By intentionally submitting any modifications, corrections or
39 # derivatives to this work, or any other work intended for use with
40 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 # you are the copyright holder for those contributions and you grant
42 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 # royalty-free, perpetual, license to use, copy, create derivative
44 # works based on those contributions, and sublicense and distribute
45 # those contributions and any derivatives thereof.
46 #
47 # END BPS TAGGED BLOCK }}}
48
49 package RT::Test::GnuPG;
50 use strict;
51 use warnings;
52 use Test::More;
53 use base qw(RT::Test);
54 use File::Temp qw(tempdir);
55
56 our @EXPORT =
57   qw(create_a_ticket update_ticket cleanup_headers set_queue_crypt_options 
58           check_text_emails send_email_and_check_transaction
59           create_and_test_outgoing_emails
60           );
61
62 sub import {
63     my $class = shift;
64     my %args  = @_;
65     my $t     = $class->builder;
66
67     RT::Test::plan( skip_all => 'GnuPG required.' )
68       unless GnuPG::Interface->require;
69     RT::Test::plan( skip_all => 'gpg executable is required.' )
70       unless RT::Test->find_executable('gpg');
71
72     $class->SUPER::import(%args);
73     return $class->export_to_level(1)
74         if $^C;
75
76     RT::Test::diag "GnuPG --homedir " . RT->Config->Get('GnuPGOptions')->{'homedir'};
77
78     $class->set_rights(
79         Principal => 'Everyone',
80         Right => ['CreateTicket', 'ShowTicket', 'SeeQueue', 'ReplyToTicket', 'ModifyTicket'],
81     );
82
83     $class->export_to_level(1);
84 }
85
86 sub bootstrap_more_config {
87     my $self = shift;
88     my $handle = shift;
89     my $args = shift;
90
91     $self->SUPER::bootstrap_more_config($handle, $args, @_);
92
93     my %gnupg_options = (
94         'no-permission-warning' => undef,
95         $args->{gnupg_options} ? %{ $args->{gnupg_options} } : (),
96     );
97     $gnupg_options{homedir} ||= scalar tempdir( CLEANUP => 1 );
98
99     use Data::Dumper;
100     local $Data::Dumper::Terse = 1; # "{...}" instead of "$VAR1 = {...};"
101     my $dumped_gnupg_options = Dumper(\%gnupg_options);
102
103     print $handle qq{
104 Set(\%GnuPG, (
105     Enable                 => 1,
106     OutgoingMessagesFormat => 'RFC',
107 ));
108 Set(\%GnuPGOptions => \%{ $dumped_gnupg_options });
109 Set(\@MailPlugins => qw(Auth::MailFrom Auth::Crypt));
110 };
111
112 }
113
114 sub create_a_ticket {
115     my $queue = shift;
116     my $mail = shift;
117     my $m = shift;
118     my %args = (@_);
119
120     RT::Test->clean_caught_mails;
121
122     $m->goto_create_ticket( $queue );
123     $m->form_name('TicketCreate');
124     $m->field( Subject    => 'test' );
125     $m->field( Requestors => 'rt-test@example.com' );
126     $m->field( Content    => 'Some content' );
127
128     foreach ( qw(Sign Encrypt) ) {
129         if ( $args{ $_ } ) {
130             $m->tick( $_ => 1 );
131         } else {
132             $m->untick( $_ => 1 );
133         }
134     }
135
136     $m->submit;
137     is $m->status, 200, "request successful";
138
139     $m->content_lacks("unable to sign outgoing email messages");
140
141
142     my @mail = RT::Test->fetch_caught_mails;
143     check_text_emails(\%args, @mail );
144     categorize_emails($mail, \%args, @mail );
145 }
146
147 sub update_ticket {
148     my $tid = shift;
149     my $mail = shift;
150     my $m = shift;
151     my %args = (@_);
152
153     RT::Test->clean_caught_mails;
154
155     $m->get( $m->rt_base_url . "/Ticket/Update.html?Action=Respond&id=$tid" );
156     $m->form_number(3);
157     $m->field( UpdateContent => 'Some content' );
158
159     foreach ( qw(Sign Encrypt) ) {
160         if ( $args{ $_ } ) {
161             $m->tick( $_ => 1 );
162         } else {
163             $m->untick( $_ => 1 );
164         }
165     }
166
167     $m->click('SubmitTicket');
168     is $m->status, 200, "request successful";
169     $m->content_contains("Correspondence added", 'Correspondence added') or diag $m->content;
170
171
172     my @mail = RT::Test->fetch_caught_mails;
173     check_text_emails(\%args, @mail );
174     categorize_emails($mail, \%args, @mail );
175 }
176
177 sub categorize_emails {
178     my $mail = shift;
179     my $args = shift;
180     my @mail = @_;
181
182     if ( $args->{'Sign'} && $args->{'Encrypt'} ) {
183         push @{ $mail->{'signed_encrypted'} }, @mail;
184     }
185     elsif ( $args->{'Sign'} ) {
186         push @{ $mail->{'signed'} }, @mail;
187     }
188     elsif ( $args->{'Encrypt'} ) {
189         push @{ $mail->{'encrypted'} }, @mail;
190     }
191     else {
192         push @{ $mail->{'plain'} }, @mail;
193     }
194 }
195
196 sub check_text_emails {
197     my %args = %{ shift @_ };
198     my @mail = @_;
199
200     ok scalar @mail, "got some mail";
201     for my $mail (@mail) {
202         for my $type ('email', 'attachment') {
203             next if $type eq 'attachment' && !$args{'Attachment'};
204
205             my $content = $type eq 'email'
206                         ? "Some content"
207                         : $args{Attachment};
208
209             if ( $args{'Encrypt'} ) {
210                 unlike $mail, qr/$content/, "outgoing $type is not in plaintext";
211                 my $entity = RT::Test::parse_mail($mail);
212                 my @res = RT::Crypt->VerifyDecrypt(Entity => $entity);
213                 like $res[0]{'status'}, qr/DECRYPTION_OKAY/, "Decrypts OK";
214                 like $entity->as_string, qr/$content/, "outgoing decrypts to contain $type content";
215             } else {
216                 like $mail, qr/$content/, "outgoing $type was not encrypted";
217             }
218
219             next unless $type eq 'email';
220
221             if ( $args{'Sign'} && $args{'Encrypt'} ) {
222                 like $mail, qr/BEGIN PGP MESSAGE/, 'outgoing email was signed';
223             } elsif ( $args{'Sign'} ) {
224                 like $mail, qr/SIGNATURE/, 'outgoing email was signed';
225             } else {
226                 unlike $mail, qr/SIGNATURE/, 'outgoing email was not signed';
227             }
228         }
229     }
230 }
231
232 sub cleanup_headers {
233     my $mail = shift;
234     # strip id from subject to create new ticket
235     $mail =~ s/^(Subject:)\s*\[.*?\s+#\d+\]\s*/$1 /m;
236     # strip several headers
237     foreach my $field ( qw(Message-ID RT-Originator RT-Ticket X-RT-Loop-Prevention) ) {
238         $mail =~ s/^$field:.*?\n(?! |\t)//gmsi;
239     }
240     return $mail;
241 }
242
243 sub set_queue_crypt_options {
244     my $queue = shift;
245     my %args = @_;
246     $queue->SetEncrypt($args{'Encrypt'});
247     $queue->SetSign($args{'Sign'});
248 }
249
250 sub send_email_and_check_transaction {
251     my $mail = shift;
252     my $type = shift;
253
254     my ( $status, $id ) = RT::Test->send_via_mailgate($mail);
255     is( $status >> 8, 0, "The mail gateway exited normally" );
256     ok( $id, "got id of a newly created ticket - $id" );
257
258     my $tick = RT::Ticket->new( RT->SystemUser );
259     $tick->Load($id);
260     ok( $tick->id, "loaded ticket #$id" );
261
262     my $txn = $tick->Transactions->First;
263     my ( $msg, @attachments ) = @{ $txn->Attachments->ItemsArrayRef };
264
265     if ( $attachments[0] ) {
266         like $attachments[0]->Content, qr/Some content/,
267           "RT's mail includes copy of ticket text";
268     }
269     else {
270         like $msg->Content, qr/Some content/,
271           "RT's mail includes copy of ticket text";
272     }
273
274     if ( $type eq 'plain' ) {
275         ok !$msg->GetHeader('X-RT-Privacy'), "RT's outgoing mail has no crypto";
276         is $msg->GetHeader('X-RT-Incoming-Encryption'), 'Not encrypted',
277           "RT's outgoing mail looks not encrypted";
278         ok !$msg->GetHeader('X-RT-Incoming-Signature'),
279           "RT's outgoing mail looks not signed";
280     }
281     elsif ( $type eq 'signed' ) {
282         is $msg->GetHeader('X-RT-Privacy'), 'GnuPG',
283           "RT's outgoing mail has crypto";
284         is $msg->GetHeader('X-RT-Incoming-Encryption'), 'Not encrypted',
285           "RT's outgoing mail looks not encrypted";
286         like $msg->GetHeader('X-RT-Incoming-Signature'),
287           qr/<rt-recipient\@example.com>/,
288           "RT's outgoing mail looks signed";
289     }
290     elsif ( $type eq 'encrypted' ) {
291         is $msg->GetHeader('X-RT-Privacy'), 'GnuPG',
292           "RT's outgoing mail has crypto";
293         is $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success',
294           "RT's outgoing mail looks encrypted";
295         ok !$msg->GetHeader('X-RT-Incoming-Signature'),
296           "RT's outgoing mail looks not signed";
297
298     }
299     elsif ( $type eq 'signed_encrypted' ) {
300         is $msg->GetHeader('X-RT-Privacy'), 'GnuPG',
301           "RT's outgoing mail has crypto";
302         is $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success',
303           "RT's outgoing mail looks encrypted";
304         like $msg->GetHeader('X-RT-Incoming-Signature'),
305           qr/<rt-recipient\@example.com>/,
306           "RT's outgoing mail looks signed";
307     }
308     else {
309         die "unknown type: $type";
310     }
311 }
312
313 sub create_and_test_outgoing_emails {
314     my $queue = shift;
315     my $m     = shift;
316     my @variants =
317       ( {}, { Sign => 1 }, { Encrypt => 1 }, { Sign => 1, Encrypt => 1 }, );
318
319     # collect emails
320     my %mail;
321
322     # create a ticket for each combination
323     foreach my $ticket_set (@variants) {
324         create_a_ticket( $queue, \%mail, $m, %$ticket_set );
325     }
326
327     my $tid;
328     {
329         my $ticket = RT::Ticket->new( RT->SystemUser );
330         ($tid) = $ticket->Create(
331             Subject   => 'test',
332             Queue     => $queue->id,
333             Requestor => 'rt-test@example.com',
334         );
335         ok $tid, 'ticket created';
336     }
337
338     # again for each combination add a reply message
339     foreach my $ticket_set (@variants) {
340         update_ticket( $tid, \%mail, $m, %$ticket_set );
341     }
342
343 # ------------------------------------------------------------------------------
344 # now delete all keys from the keyring and put back secret/pub pair for rt-test@
345 # and only public key for rt-recipient@ so we can verify signatures and decrypt
346 # like we are on another side recieve emails
347 # ------------------------------------------------------------------------------
348
349     unlink $_
350       foreach glob( RT->Config->Get('GnuPGOptions')->{'homedir'} . "/*" );
351     RT::Test->import_gnupg_key( 'rt-recipient@example.com', 'public' );
352     RT::Test->import_gnupg_key('rt-test@example.com');
353
354     $queue = RT::Test->load_or_create_queue(
355         Name              => 'Regression',
356         CorrespondAddress => 'rt-test@example.com',
357         CommentAddress    => 'rt-test@example.com',
358     );
359     ok $queue && $queue->id, 'changed props of the queue';
360
361     for my $type ( keys %mail ) {
362         for my $mail ( map cleanup_headers($_), @{ $mail{$type} } ) {
363             send_email_and_check_transaction( $mail, $type );
364         }
365     }
366 }