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
|
use strict;
use warnings;
use Test::More;
use CiderWebmail::Test {login => 1};
use English qw(-no_match_vars);
$mech->follow_link_ok({ url_regex => qr{/compose} }, 'Compose a new message');
my $unix_time = time();
$mech->submit_form_ok({
with_fields => {
from => $ENV{TEST_MAILADDR},
to => $ENV{TEST_MAILADDR},
sent_folder => find_special_folder('sent'),
subject => 'replymessage-'.$unix_time,
body => 'replymessage',
},
});
$mech->get_ok( 'http://localhost/mailbox/INBOX?length=99999' );
my @messages = $mech->find_all_links( text_regex => qr{\Areplymessage-$unix_time\z});
$messages[0]->attrs->{id} =~ m/link_(\d+)/m;
my $message_id = $1;
ok( (length($message_id) > 0), 'got message id');
$mech->get_ok('http://localhost/mailbox/INBOX/'.$message_id, 'open message');
$mech->follow_link_ok({ url_regex => qr{/reply/sender/root\z} }, "replying");
$mech->submit_form_ok({
with_fields => {
from => $ENV{TEST_MAILADDR},
}
}, 'Send reply');
$mech->get_ok( 'http://localhost/mailbox/INBOX?length=99999' );
$mech->content_like(qr/replymessage-$unix_time/, 'original message is there');
$mech->content_like(qr/Re: replymessage-$unix_time/, 'forwarded message is there');
xpath_test {
my ($tx_answered) = @_;
$tx_answered->like("//tr[\@id='message_$message_id']/\@class", qr/answered/, "message is flagged answered" );
};
cleanup_messages(["Re: replymessage-$unix_time", "replymessage-$unix_time"]);
done_testing();
|