File: hebrew.t

package info (click to toggle)
ciderwebmail 1.05%2B20240702-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,392 kB
  • sloc: perl: 3,201; xml: 782; javascript: 675; sh: 42; makefile: 29
file content (47 lines) | stat: -rw-r--r-- 1,573 bytes parent folder | download | duplicates (4)
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
use strict;
use warnings;
use Test::More;
use CiderWebmail::Test {login => 1};
use English qw(-no_match_vars);

use charnames ':full';


$mech->get_ok('http://localhost/mailbox/INBOX/compose');

my $unix_time = time();

my $body  = "HEBREW_ALEF_\N{HEBREW LETTER ALEF} ";
$body    .= "HEBREW_PE_\N{HEBREW LETTER PE} ";
$body    .= "HEBREW_NUN_\N{HEBREW LETTER NUN} ";
$body    .= "CHECK_\N{CHECK MARK}";
$body    .= "\n\n";
$body    .= "\N{HEBREW LETTER ALEF}\N{HEBREW LETTER PE}\N{HEBREW LETTER NUN}\n\n";

$mech->submit_form(
    with_fields => {
        from        => $ENV{TEST_MAILADDR},
        to          => $ENV{TEST_MAILADDR},
        sent_folder => find_special_folder('sent'),
        subject     => 'hebrew-test-'.$unix_time,
        body        => $body,
    },
);

$mech->get( 'http://localhost/mailbox/INBOX?length=99999' );


my (@inbox_messages) = $mech->find_all_links( text_regex => qr{\Ahebrew-test-$unix_time});
ok((@inbox_messages == 1), 'messages found');
$mech->get_ok($inbox_messages[0]->url, 'open message');

$mech->content_like(qr/HEBREW_ALEF_\N{HEBREW LETTER ALEF}/, 'hebrew character alef');
$mech->content_like(qr/HEBREW_PE_\N{HEBREW LETTER PE}/, 'hebrew character pe');
$mech->content_like(qr/HEBREW_NUN_\N{HEBREW LETTER NUN}/, 'hebrew character nun');
$mech->content_like(qr/CHECK_\N{CHECK MARK}/, 'check mark');

$mech->content_like(qr{<div class='rtl'><br />\N{HEBREW LETTER ALEF}\N{HEBREW LETTER PE}\N{HEBREW LETTER NUN}<br /><br /></div>}, 'check right-to-left display');

cleanup_messages(["hebrew-test-$unix_time"]);

done_testing();