blob: 2d8e03575ae9ba21f52a8dbb76724e9d85118851 (
plain)
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
|
#!/usr/bin/perl
use strict;
use warnings;
use RT::Test tests => 6;
plan skip_all => 'GnuPG required.'
unless eval 'use GnuPG::Interface; 1';
plan skip_all => 'gpg executable is required.'
unless RT::Test->find_executable('gpg');
use Cwd 'getcwd';
my $homedir = RT::Test::get_abs_relocatable_dir(File::Spec->updir(),
qw(data gnupg keyrings));
RT->Config->Set( 'GnuPG',
Enable => 1,
OutgoingMessagesFormat => 'RFC' );
RT->Config->Set( 'GnuPGOptions',
homedir => $homedir,
passphrase => 'test',
'no-permission-warning' => undef);
RT->Config->Set( 'MailPlugins' => 'Auth::MailFrom', 'Auth::GnuPG' );
my ($baseurl, $m) = RT::Test->started_ok;
$m->get( $baseurl."?user=root;pass=password" );
$m->content_like(qr/Logout/, 'we did log in');
$m->get( $baseurl.'/Admin/Queues/');
$m->follow_link_ok( {text => 'General'} );
$m->submit_form( form_number => 3,
fields => { CorrespondAddress => 'rt@example.com' } );
$m->content_like(qr/rt\@example.com.* - never/, 'has key info.');
ok(my $user = RT::User->new($RT::SystemUser));
ok($user->Load('root'), "Loaded user 'root'");
$user->SetEmailAddress('rt@example.com');
if (0) {
# XXX: need to generate these mails
diag "no signature" if $ENV{TEST_VERBOSE};
diag "no encryption on encrypted queue" if $ENV{TEST_VERBOSE};
diag "mismatched signature" if $ENV{TEST_VERBOSE};
diag "unknown public key" if $ENV{TEST_VERBOSE};
diag "unknown private key" if $ENV{TEST_VERBOSE};
diag "signer != sender" if $ENV{TEST_VERBOSE};
diag "encryption to user whose pubkey is not signed" if $ENV{TEST_VERBOSE};
diag "no encryption of attachment on encrypted queue" if $ENV{TEST_VERBOSE};
diag "no signature of attachment" if $ENV{TEST_VERBOSE};
diag "revoked key" if $ENV{TEST_VERBOSE};
diag "expired key" if $ENV{TEST_VERBOSE};
diag "unknown algorithm" if $ENV{TEST_VERBOSE};
}
|