test_generator.py 7.44 KB
Newer Older
1 2 3 4 5 6
import io
import textwrap
import unittest
from email import message_from_string, message_from_bytes
from email.generator import Generator, BytesGenerator
from email import policy
7
from test.test_email import TestEmailBase, parameterize
8 9


10 11
@parameterize
class TestGeneratorBase:
12

13
    policy = policy.default
14

15 16 17
    def msgmaker(self, msg, policy=None):
        policy = self.policy if policy is None else policy
        return self.msgfunc(msg, policy=policy)
18

19
    refold_long_expected = {
20 21 22 23 24 25 26 27 28
        0: textwrap.dedent("""\
            To: whom_it_may_concern@example.com
            From: nobody_you_want_to_know@example.com
            Subject: We the willing led by the unknowing are doing the
             impossible for the ungrateful. We have done so much for so long with so little
             we are now qualified to do anything with nothing.

            None
            """),
29
        # From is wrapped because wrapped it fits in 40.
30 31
        40: textwrap.dedent("""\
            To: whom_it_may_concern@example.com
32
            From:
33 34
             nobody_you_want_to_know@example.com
            Subject: We the willing led by the
35 36 37 38
             unknowing are doing the impossible for
             the ungrateful. We have done so much
             for so long with so little we are now
             qualified to do anything with nothing.
39 40 41

            None
            """),
42 43
        # Neither to nor from fit even if put on a new line,
        # so we leave them sticking out on the first line.
44
        20: textwrap.dedent("""\
45 46
            To: whom_it_may_concern@example.com
            From: nobody_you_want_to_know@example.com
47 48 49
            Subject: We the
             willing led by the
             unknowing are doing
50 51 52 53 54
             the impossible for
             the ungrateful. We
             have done so much
             for so long with so
             little we are now
55 56 57 58 59 60 61
             qualified to do
             anything with
             nothing.

            None
            """),
        }
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
    refold_long_expected[100] = refold_long_expected[0]

    refold_all_expected = refold_long_expected.copy()
    refold_all_expected[0] = (
            "To: whom_it_may_concern@example.com\n"
            "From: nobody_you_want_to_know@example.com\n"
            "Subject: We the willing led by the unknowing are doing the "
              "impossible for the ungrateful. We have done so much for "
              "so long with so little we are now qualified to do anything "
              "with nothing.\n"
              "\n"
              "None\n")
    refold_all_expected[100] = (
            "To: whom_it_may_concern@example.com\n"
            "From: nobody_you_want_to_know@example.com\n"
            "Subject: We the willing led by the unknowing are doing the "
                "impossible for the ungrateful. We have\n"
              " done so much for so long with so little we are now qualified "
                "to do anything with nothing.\n"
              "\n"
              "None\n")

84 85 86
    length_params = [n for n in refold_long_expected]

    def length_as_maxheaderlen_parameter(self, n):
87
        msg = self.msgmaker(self.typ(self.refold_long_expected[0]))
88
        s = self.ioclass()
89
        g = self.genclass(s, maxheaderlen=n, policy=self.policy)
90
        g.flatten(msg)
91
        self.assertEqual(s.getvalue(), self.typ(self.refold_long_expected[n]))
92

93
    def length_as_max_line_length_policy(self, n):
94
        msg = self.msgmaker(self.typ(self.refold_long_expected[0]))
95
        s = self.ioclass()
96
        g = self.genclass(s, policy=self.policy.clone(max_line_length=n))
97
        g.flatten(msg)
98
        self.assertEqual(s.getvalue(), self.typ(self.refold_long_expected[n]))
99

100
    def length_as_maxheaderlen_parm_overrides_policy(self, n):
101
        msg = self.msgmaker(self.typ(self.refold_long_expected[0]))
102 103
        s = self.ioclass()
        g = self.genclass(s, maxheaderlen=n,
104
                          policy=self.policy.clone(max_line_length=10))
105
        g.flatten(msg)
106
        self.assertEqual(s.getvalue(), self.typ(self.refold_long_expected[n]))
107

108
    def length_as_max_line_length_with_refold_none_does_not_fold(self, n):
109 110 111 112 113 114 115
        msg = self.msgmaker(self.typ(self.refold_long_expected[0]))
        s = self.ioclass()
        g = self.genclass(s, policy=self.policy.clone(refold_source='none',
                                                      max_line_length=n))
        g.flatten(msg)
        self.assertEqual(s.getvalue(), self.typ(self.refold_long_expected[0]))

116
    def length_as_max_line_length_with_refold_all_folds(self, n):
117 118 119 120 121 122
        msg = self.msgmaker(self.typ(self.refold_long_expected[0]))
        s = self.ioclass()
        g = self.genclass(s, policy=self.policy.clone(refold_source='all',
                                                      max_line_length=n))
        g.flatten(msg)
        self.assertEqual(s.getvalue(), self.typ(self.refold_all_expected[n]))
123

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
    def test_crlf_control_via_policy(self):
        source = "Subject: test\r\n\r\ntest body\r\n"
        expected = source
        msg = self.msgmaker(self.typ(source))
        s = self.ioclass()
        g = self.genclass(s, policy=policy.SMTP)
        g.flatten(msg)
        self.assertEqual(s.getvalue(), self.typ(expected))

    def test_flatten_linesep_overrides_policy(self):
        source = "Subject: test\n\ntest body\n"
        expected = source
        msg = self.msgmaker(self.typ(source))
        s = self.ioclass()
        g = self.genclass(s, policy=policy.SMTP)
        g.flatten(msg, linesep='\n')
        self.assertEqual(s.getvalue(), self.typ(expected))

142 143 144

class TestGenerator(TestGeneratorBase, TestEmailBase):

145
    msgfunc = staticmethod(message_from_string)
146 147
    genclass = Generator
    ioclass = io.StringIO
148 149
    typ = str

150 151 152

class TestBytesGenerator(TestGeneratorBase, TestEmailBase):

153
    msgfunc = staticmethod(message_from_bytes)
154 155
    genclass = BytesGenerator
    ioclass = io.BytesIO
156 157 158 159 160
    typ = lambda self, x: x.encode('ascii')

    def test_cte_type_7bit_handles_unknown_8bit(self):
        source = ("Subject: Maintenant je vous présente mon "
                 "collègue\n\n").encode('utf-8')
161 162
        expected = ('Subject: Maintenant je vous =?unknown-8bit?q?'
                    'pr=C3=A9sente_mon_coll=C3=A8gue?=\n\n').encode('ascii')
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
        msg = message_from_bytes(source)
        s = io.BytesIO()
        g = BytesGenerator(s, policy=self.policy.clone(cte_type='7bit'))
        g.flatten(msg)
        self.assertEqual(s.getvalue(), expected)

    def test_cte_type_7bit_transforms_8bit_cte(self):
        source = textwrap.dedent("""\
            From: foo@bar.com
            To: Dinsdale
            Subject: Nudge nudge, wink, wink
            Mime-Version: 1.0
            Content-Type: text/plain; charset="latin-1"
            Content-Transfer-Encoding: 8bit

            oh là là, know what I mean, know what I mean?
            """).encode('latin1')
        msg = message_from_bytes(source)
        expected =  textwrap.dedent("""\
            From: foo@bar.com
            To: Dinsdale
            Subject: Nudge nudge, wink, wink
            Mime-Version: 1.0
            Content-Type: text/plain; charset="iso-8859-1"
            Content-Transfer-Encoding: quoted-printable

            oh l=E0 l=E0, know what I mean, know what I mean?
            """).encode('ascii')
        s = io.BytesIO()
        g = BytesGenerator(s, policy=self.policy.clone(cte_type='7bit',
                                                       linesep='\n'))
        g.flatten(msg)
        self.assertEqual(s.getvalue(), expected)
196 197 198 199


if __name__ == '__main__':
    unittest.main()