aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/pgp/tests/test_pgp.py
diff options
context:
space:
mode:
authorJ08nY2017-07-28 01:41:51 +0200
committerJ08nY2017-07-28 01:41:51 +0200
commit13908d8825b7e3478a1360bbf84e9db12157fd4b (patch)
tree8f95f7aec55a3ba0aaf3b7616c7f6dcc0b1213ce /src/mailman_pgp/pgp/tests/test_pgp.py
parentbe2cd43be30809a0e69f1458348aa057276137aa (diff)
downloadmailman-pgp-13908d8825b7e3478a1360bbf84e9db12157fd4b.tar.gz
mailman-pgp-13908d8825b7e3478a1360bbf84e9db12157fd4b.tar.zst
mailman-pgp-13908d8825b7e3478a1360bbf84e9db12157fd4b.zip
Diffstat (limited to 'src/mailman_pgp/pgp/tests/test_pgp.py')
-rw-r--r--src/mailman_pgp/pgp/tests/test_pgp.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/mailman_pgp/pgp/tests/test_pgp.py b/src/mailman_pgp/pgp/tests/test_pgp.py
new file mode 100644
index 0000000..6ff674d
--- /dev/null
+++ b/src/mailman_pgp/pgp/tests/test_pgp.py
@@ -0,0 +1,63 @@
+# 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/>.
+
+"""Tests for the module global PGP instance."""
+from unittest import TestCase
+
+from mailman.app.lifecycle import create_list
+from mailman.testing.helpers import subscribe
+
+from mailman_pgp.config import config
+from mailman_pgp.database import mm_transaction, transaction
+from mailman_pgp.model.address import PGPAddress
+from mailman_pgp.model.list import PGPMailingList
+from mailman_pgp.pgp.tests.base import load_key
+from mailman_pgp.testing.layers import PGPConfigLayer
+
+
+class TestPGP(TestCase):
+ layer = PGPConfigLayer
+
+ def setUp(self):
+ with mm_transaction():
+ self.mlist = create_list('test@example.com',
+ style_name='pgp-default')
+ self.pgp_list = PGPMailingList.for_list(self.mlist)
+ self.list_key = self.pgp_list.generate_key(True)
+
+ # 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')
+
+ 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)
+
+ def test_list_keydir(self):
+ keyring = config.pgp.list_keyring
+ self.assertEqual(len(keyring), 2)
+ with keyring.key(self.pgp_list.mlist.fqdn_listname) as key:
+ self.assertEqual(key.fingerprint, self.list_key.fingerprint)
+
+ def test_user_keydir(self):
+ keyring = config.pgp.user_keyring
+ self.assertEqual(len(keyring), 2)
+ with keyring.key(self.anne_key.fingerprint) as key:
+ self.assertTrue(key.is_public)
+ self.assertEqual(key.fingerprint, self.anne_key.fingerprint)