]> Sergey Matveev's repositories - public-inbox.git/blob - t/view.t
view: drop vestigial elements of quote folding
[public-inbox.git] / t / view.t
1 # Copyright (C) 2013-2015 all contributors <meta@public-inbox.org>
2 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
3 use strict;
4 use warnings;
5 use Test::More;
6 use Email::MIME;
7 use PublicInbox::View;
8
9 # plain text
10 {
11         my $body = <<EOF;
12 So and so wrote:
13 > keep this inline
14
15 OK
16
17 > Long and wordy reply goes here and it is split across multiple lines.
18 > We generate links to a separate full page where quoted-text is inline.
19 > This is
20 >
21 > Currently 12 lines
22 > See MAX_INLINE_QUOTED
23 > See MAX_INLINE_QUOTED
24 > See MAX_INLINE_QUOTED
25 > See MAX_INLINE_QUOTED
26 > See MAX_INLINE_QUOTED
27 > See MAX_INLINE_QUOTED
28 > See MAX_INLINE_QUOTED
29 > See MAX_INLINE_QUOTED
30
31 hello world
32 EOF
33         my $s = Email::Simple->create(
34                 header => [
35                         From => 'a@example.com',
36                         To => 'b@example.com',
37                         'Content-Type' => 'text/plain',
38                         'Message-ID' => '<hello@example.com>',
39                         Subject => 'this is a subject',
40                 ],
41                 body => $body,
42         )->as_string;
43         my $mime = Email::MIME->new($s);
44         my $html = PublicInbox::View::msg_html(undef, $mime);
45
46         # ghetto tests
47         like($html, qr!<a\nhref="\.\./raw"!s, "raw link present");
48         like($html, qr/hello world\b/, "body present");
49         like($html, qr/&gt; keep this inline/, "short quoted text is inline");
50 }
51
52 # multipart crap
53 {
54         my $parts = [
55                 Email::MIME->create(
56                         attributes => { content_type => 'text/plain', },
57                         body => 'hi',
58                 ),
59                 Email::MIME->create(
60                         attributes => { content_type => 'text/plain', },
61                         body => 'bye',
62                 )
63         ];
64         my $mime = Email::MIME->create(
65                 header_str => [
66                         From => 'a@example.com',
67                         Subject => 'blargh',
68                         'Message-ID' => '<blah@example.com>',
69                         'In-Reply-To' => '<irp@example.com>',
70                         ],
71                 parts => $parts,
72         );
73
74         my $html = PublicInbox::View::msg_html(undef, $mime);
75         like($html, qr/hi\n-+ part #2 -+\nbye\n/, "multipart split");
76 }
77
78 # multipart email with attached patch
79 {
80         my $parts = [
81                 Email::MIME->create(
82                         attributes => { content_type => 'text/plain', },
83                         body => 'hi, see attached patch',
84                 ),
85                 Email::MIME->create(
86                         attributes => {
87                                 content_type => 'text/plain',
88                                 filename => "foo.patch",
89                         },
90                         body => "--- a/file\n+++ b/file\n" .
91                                 "@@ -49, 7 +49,34 @@\n",
92                 ),
93         ];
94         my $mime = Email::MIME->create(
95                 header_str => [
96                         From => 'a@example.com',
97                         Subject => '[PATCH] asdf',
98                         'Message-ID' => '<patch@example.com>',
99                         ],
100                 parts => $parts,
101         );
102
103         my $html = PublicInbox::View::msg_html(undef, $mime);
104         like($html, qr!see attached patch\n-+ foo\.patch -+\n--- a/file\n!,
105                 "parts split with filename");
106 }
107
108 # multipart collapsed to single quoted-printable text/plain
109 {
110         my $parts = [
111                 Email::MIME->create(
112                         attributes => {
113                                 content_type => 'text/plain',
114                                 encoding => 'quoted-printable',
115                         },
116                         body => 'hi = bye',
117                 )
118         ];
119         my $mime = Email::MIME->create(
120                 header_str => [
121                         From => 'qp@example.com',
122                         Subject => 'QP',
123                         'Message-ID' => '<qp@example.com>',
124                         ],
125                 parts => $parts,
126         );
127
128         my $orig = $mime->body_raw;
129         my $html = PublicInbox::View::msg_html(undef, $mime);
130         like($orig, qr/hi =3D bye=/, "our test used QP correctly");
131         like($html, qr/\bhi = bye\b/, "HTML output decoded QP");
132 }
133
134 {
135         use PublicInbox::MID qw/id_compress/;
136         like(id_compress('foo%bar@wtf'), qr/\A[a-f0-9]{40}\z/,
137                 "percent always converted to sha1 to workaround buggy httpds");
138         is(id_compress('foobar-wtf'), 'foobar-wtf',
139                 'regular ID not compressed');
140 }
141
142 done_testing();