aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/mta/tests/test_deliver.py
blob: 3b0594f889fb7a3aa9997e329a6b0fd4b348ba9a (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Copyright (C) 2017 Jan Jancar
#
# This file is a part of the Mailman PGP plugin.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program.  If not, see <http://www.gnu.org/licenses/>.

""""""
from unittest import TestCase

from mailman.app.lifecycle import create_list
from mailman.interfaces.mailinglist import Personalization
from mailman.interfaces.mta import SomeRecipientsFailed
from mailman.testing.helpers import (specialized_message_from_string as mfs,
                                     subscribe)

from mailman_pgp.database import transaction
from mailman_pgp.model.address import PGPAddress
from mailman_pgp.model.list import PGPMailingList
from mailman_pgp.mta.deliver import deliver
from mailman_pgp.testing.layers import PGPSMTPLayer
from mailman_pgp.testing.pgp import load_key


class TestDeliver(TestCase):
    layer = PGPSMTPLayer

    def setUp(self):
        with transaction():
            self.mlist = create_list('test@example.com',
                                     style_name='pgp-default')
            self.mlist.personalize = Personalization.individual

        self.list_key = load_key('ecc_p256.priv.asc')
        self.pgp_list = PGPMailingList.for_list(self.mlist)
        self.pgp_list.key = self.list_key

        # Make Anne a member of this mailing list.
        self.anne = subscribe(self.mlist, 'Anne', email='anne@example.org')
        self.anne_key = load_key('rsa_1024.priv.asc')

        self.bart = subscribe(self.mlist, 'Bart', email='bart@example.org')
        self.bart_key = load_key('ecc_secp256k1.priv.asc')

        with transaction() as t:
            self.pgp_anne = PGPAddress(self.anne.address)
            self.pgp_anne.key = self.anne_key.pubkey
            self.pgp_anne.key_confirmed = True
            t.add(self.pgp_anne)

        with transaction() as t:
            self.pgp_bart = PGPAddress(self.bart.address)
            self.pgp_bart.key = self.bart_key.pubkey
            self.pgp_bart.key_confirmed = True
            t.add(self.pgp_bart)
        self.msg = mfs("""\
From: anne@example.org
To: test@example.com
Subject: some subject

Some text.
""")

    def test_deliver(self):
        msgdata = dict(recipients=['anne@example.org', 'bart@example.org'])
        deliver(self.mlist, self.msg, msgdata)

    def test_deliver_no_key(self):
        with transaction():
            self.pgp_anne.key = None
        msgdata = dict(recipients=['anne@example.org', 'bart@example.org'])
        with self.assertRaises(SomeRecipientsFailed) as err:
            deliver(self.mlist, self.msg, msgdata)
        self.assertEqual(err.exception.temporary_failures,
                         ['anne@example.org'])