summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2019-02-09 16:13:14 +0100
committerJelle van der Waa <jelle@vdwaa.nl>2019-02-09 16:13:14 +0100
commite58c11fd52eb9c3ffca7412b5560982fcec16239 (patch)
tree8a0460c71e53ea1658cbd5cd4b59aa5b7e53caa9
parent24406b2764ecfd9923136feae9031e08b40ef85b (diff)
downloadarchweb-e58c11fd52eb9c3ffca7412b5560982fcec16239.tar.gz
archweb-e58c11fd52eb9c3ffca7412b5560982fcec16239.zip
tests: add test for pgp_import keys
Add a test to check the pgp_import functionality with one key, by patching call_pgp so there is no need of a local pacman keyring.
-rw-r--r--devel/tests/test_pgp_import.py36
1 files changed, 35 insertions, 1 deletions
diff --git a/devel/tests/test_pgp_import.py b/devel/tests/test_pgp_import.py
index 2b41b980..f01e73a3 100644
--- a/devel/tests/test_pgp_import.py
+++ b/devel/tests/test_pgp_import.py
@@ -1,12 +1,46 @@
+from unittest.mock import patch
+
from django.core.management import call_command
from django.core.management.base import CommandError
from django.test import TransactionTestCase
+CREATED = 1541685162
+USER = 'John Doe <jdoe@archlinux.org>'
+ID1 = 'D6C055F238843F1C'
+ID2 = 'D8AFDDA07A5B6EDFA7D8CCDAD6D055F927843F1C'
+ID3 = 'B588C0234ECADD3F0BBBEEBA44F9F02E089294E7'
+
+SIG_DATA = [
+ 'pub:-:4096:1:{id1}:{created}:::-:::scESCA::::::23::0:'.format(id1=ID1, created=CREATED),
+ 'fpr:::::::::{id2}:'.format(id2=ID2),
+ 'uid:-::::{created}::{id3}::{user}::::::::::0:'.format(created=CREATED, id3=ID3, user=USER),
+ 'sig:::1:{id1}:{created}::::{user}:13x::{id2}:::10:'.format(id1=ID1, created=CREATED, user=USER, id2=ID2)
+]
+
+
class PGPImportTest(TransactionTestCase):
fixtures = ['main/fixtures/arches.json', 'main/fixtures/repos.json']
- def test_pgp_import(self):
+ def test_pgp_import_error(self):
with self.assertRaises(CommandError) as e:
call_command('pgp_import')
self.assertIn('keyring_path', str(e.exception))
+
+ @patch('devel.management.commands.pgp_import.call_gpg')
+ def test_pgp_import_garbage_data(self, mock_call_gpg):
+ mock_call_gpg.return_value = 'barf'
+ with patch('devel.management.commands.pgp_import.logger') as logger:
+ call_command('pgp_import', '/tmp')
+ logger.info.assert_called()
+ logger.info.assert_any_call('created %d, updated %d signatures', 0, 0)
+ logger.info.assert_any_call('created %d, updated %d keys', 0, 0)
+
+ @patch('devel.management.commands.pgp_import.call_gpg')
+ def test_pgp_import(self, mock_call_gpg):
+ mock_call_gpg.return_value = '\n'.join(SIG_DATA)
+ with patch('devel.management.commands.pgp_import.logger') as logger:
+ call_command('pgp_import', '/tmp')
+ logger.info.assert_called()
+ logger.info.assert_any_call('created %d, updated %d signatures', 0, 0)
+ logger.info.assert_any_call('created %d, updated %d keys', 1, 0)