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
|
use strict;
use warnings;
use Test::More;
use CiderWebmail::Test {login => 1};
use English qw(-no_match_vars);
use FindBin qw($Bin);
$ENV{CIDERWEBMAIL_NODISCONNECT} = 1;
use Catalyst::Test 'CiderWebmail';
use HTTP::Request::Common;
my ($response, $c) = ctx_request POST '/', [
username => $ENV{TEST_USER},
password => $ENV{TEST_PASSWORD},
];
my $unix_time = time();
open my $testmail, '<', "$Bin/testmessages/TEXT.mbox";
my $message_text = join '', <$testmail>;
$message_text =~ s/TIME/$unix_time/gm;
$c->model('IMAPClient')->append_message({ mailbox => 'INBOX', message_text => $message_text });
$mech->get_ok( 'http://localhost/mailbox/INBOX?length=99999' );
$mech->follow_link_ok({ text => 'textmessage-'.$unix_time });
$mech->content_contains('<div class="renderable monospace">textmessage <a href="http://example.com">http://example.com</a>', 'check content for URI to HTML link conversion');
$mech->content_contains("textmessage-$unix_time line that is so long that it should get wrapped<br />by the Text::Autoformat module", 'check content for text wrapping by Text::Autoformat');
$mech->content_contains("testsignature-$unix_time signature line that is so long but still should not get wrapped by the Text::Autoformat module", 'check content for signature handling by Text::Autoformat');
cleanup_messages(["textmessage-$unix_time"]);
done_testing();
|