mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-05-20 01:10:45 +02:00
Moved existing test for local mailbox into generation of tests for matrix of email configurations;
This commit is contained in:
parent
1f63691dbe
commit
72a99cc99a
@ -1,12 +1,10 @@
|
|||||||
from helpdesk.models import Queue, Ticket
|
from helpdesk.models import Queue, Ticket
|
||||||
from helpdesk.management.commands.get_email import process_email
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.core import mail
|
|
||||||
from django.core.management import call_command
|
from django.core.management import call_command
|
||||||
from django.test.client import Client
|
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
from django.core.urlresolvers import reverse
|
|
||||||
from django.shortcuts import get_object_or_404
|
from django.shortcuts import get_object_or_404
|
||||||
|
import itertools
|
||||||
|
import sys
|
||||||
|
|
||||||
try: # python 3
|
try: # python 3
|
||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
@ -21,39 +19,89 @@ except ImportError:
|
|||||||
import mock
|
import mock
|
||||||
|
|
||||||
|
|
||||||
class GetEmailTestCase(TestCase):
|
class GetEmailCommonTests(TestCase):
|
||||||
''' Test reading emails from a local directory '''
|
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self.queue_public = Queue.objects.create(title='Queue 1', slug='QQ', allow_public_submission=True, allow_email_submission=True, email_box_type='local', email_box_local_dir='/var/lib/mail/helpdesk/')
|
|
||||||
|
|
||||||
# tests correct syntax for command line option
|
# tests correct syntax for command line option
|
||||||
def test_get_email_quiet_option(self):
|
def test_get_email_quiet_option(self):
|
||||||
|
"""Test quiet option is properly propagated"""
|
||||||
with mock.patch('helpdesk.management.commands.get_email.process_email') as mocked_processemail:
|
with mock.patch('helpdesk.management.commands.get_email.process_email') as mocked_processemail:
|
||||||
call_command('get_email', quiet=True)
|
call_command('get_email', quiet=True)
|
||||||
mocked_processemail.assert_called_with(quiet=True)
|
mocked_processemail.assert_called_with(quiet=True)
|
||||||
call_command('get_email')
|
call_command('get_email')
|
||||||
mocked_processemail.assert_called_with(quiet=False)
|
mocked_processemail.assert_called_with(quiet=False)
|
||||||
|
|
||||||
# tests reading emails from a queue and creating tickets
|
|
||||||
|
class GetEmailParametricTemplate(object):
|
||||||
|
"""TestCase that checks email functionality accross methods and socks configs."""
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
|
||||||
|
kwargs = {
|
||||||
|
"title": 'Queue 1',
|
||||||
|
"slug": 'QQ',
|
||||||
|
"allow_public_submission": True,
|
||||||
|
"allow_email_submission": True,
|
||||||
|
"email_box_type": self.method}
|
||||||
|
|
||||||
|
if self.method == 'local':
|
||||||
|
kwargs["email_box_local_dir"] = '/var/lib/mail/helpdesk/'
|
||||||
|
|
||||||
|
if self.socks:
|
||||||
|
kwargs["socks_proxy_type"] = self.socks
|
||||||
|
kwargs["socks_proxy_host"] = "127.0.0.1"
|
||||||
|
kwargs["socks_proxy_host"] = "9150" # default for tor
|
||||||
|
|
||||||
|
self.queue_public = Queue.objects.create(**kwargs)
|
||||||
|
|
||||||
def test_read_email(self):
|
def test_read_email(self):
|
||||||
|
"""Tests reading emails from a queue and creating tickets."""
|
||||||
test_email = "To: update.public@example.com\nFrom: comment@example.com\nSubject: Some Comment\n\nThis is the helpdesk comment via email."
|
test_email = "To: update.public@example.com\nFrom: comment@example.com\nSubject: Some Comment\n\nThis is the helpdesk comment via email."
|
||||||
with mock.patch('helpdesk.management.commands.get_email.listdir') as mocked_listdir, \
|
|
||||||
mock.patch('helpdesk.management.commands.get_email.isfile') as mocked_isfile, \
|
|
||||||
mock.patch('builtins.open' if six.PY3 else '__builtin__.open', mock.mock_open(read_data=test_email)):
|
|
||||||
mocked_isfile.return_value = True
|
|
||||||
mocked_listdir.return_value = ['filename1', 'filename2']
|
|
||||||
|
|
||||||
call_command('get_email')
|
# Test local email reading
|
||||||
|
if self.method == 'local':
|
||||||
|
with mock.patch('helpdesk.management.commands.get_email.listdir') as mocked_listdir, \
|
||||||
|
mock.patch('helpdesk.management.commands.get_email.isfile') as mocked_isfile, \
|
||||||
|
mock.patch('builtins.open' if six.PY3 else '__builtin__.open', mock.mock_open(read_data=test_email)):
|
||||||
|
mocked_isfile.return_value = True
|
||||||
|
mocked_listdir.return_value = ['filename1', 'filename2']
|
||||||
|
|
||||||
mocked_listdir.assert_called_with('/var/lib/mail/helpdesk/')
|
call_command('get_email')
|
||||||
mocked_isfile.assert_any_call('/var/lib/mail/helpdesk/filename1')
|
|
||||||
mocked_isfile.assert_any_call('/var/lib/mail/helpdesk/filename2')
|
|
||||||
|
|
||||||
ticket1 = get_object_or_404(Ticket, pk=1)
|
mocked_listdir.assert_called_with('/var/lib/mail/helpdesk/')
|
||||||
self.assertEqual(ticket1.ticket_for_url, "QQ-%s" % ticket1.id)
|
mocked_isfile.assert_any_call('/var/lib/mail/helpdesk/filename1')
|
||||||
self.assertEqual(ticket1.description, "This is the helpdesk comment via email.")
|
mocked_isfile.assert_any_call('/var/lib/mail/helpdesk/filename2')
|
||||||
|
|
||||||
ticket2 = get_object_or_404(Ticket, pk=2)
|
# Other methods go here, not implemented yet.
|
||||||
self.assertEqual(ticket2.ticket_for_url, "QQ-%s" % ticket2.id)
|
else:
|
||||||
self.assertEqual(ticket2.description, "This is the helpdesk comment via email.")
|
return True
|
||||||
|
|
||||||
|
ticket1 = get_object_or_404(Ticket, pk=1)
|
||||||
|
self.assertEqual(ticket1.ticket_for_url, "QQ-%s" % ticket1.id)
|
||||||
|
self.assertEqual(ticket1.description, "This is the helpdesk comment via email.")
|
||||||
|
|
||||||
|
ticket2 = get_object_or_404(Ticket, pk=2)
|
||||||
|
self.assertEqual(ticket2.ticket_for_url, "QQ-%s" % ticket2.id)
|
||||||
|
self.assertEqual(ticket2.description, "This is the helpdesk comment via email.")
|
||||||
|
|
||||||
|
# build matrix of test cases
|
||||||
|
case_methods = [c[0] for c in Queue._meta.get_field('email_box_type').choices]
|
||||||
|
case_socks = ("SOCKS4", "SOCKS5", False)
|
||||||
|
case_matrix = list(itertools.product(case_methods, case_socks))
|
||||||
|
|
||||||
|
# Populate TestCases from the matrix of parameters
|
||||||
|
thismodule = sys.modules[__name__]
|
||||||
|
for method, socks in case_matrix:
|
||||||
|
|
||||||
|
if method == "local" and socks:
|
||||||
|
continue
|
||||||
|
|
||||||
|
socks_str = "Nosocks"
|
||||||
|
if socks:
|
||||||
|
socks_str = socks.capitalize()
|
||||||
|
test_name = str(
|
||||||
|
"TestGetEmail%s%s" % (method.capitalize(), socks_str))
|
||||||
|
|
||||||
|
cl = type(test_name, (GetEmailParametricTemplate, TestCase,), {
|
||||||
|
"method": method,
|
||||||
|
"socks": socks})
|
||||||
|
setattr(thismodule, test_name, cl)
|
||||||
|
Loading…
Reference in New Issue
Block a user