From abfb6a97967530d6efc248a95ddef2c9fd85efb5 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Tue, 7 Feb 2017 11:29:59 +0000 Subject: [PATCH] utils: Add 'bundle_to_mbox' helper This includes unit tests to validate correct behavior and prevent regressions. Signed-off-by: Stephen Finucane Reviewed-by: Daniel Axtens --- patchwork/tests/test_bundles.py | 21 +++++++++++++++++++++ patchwork/views/bundle.py | 5 ++--- patchwork/views/utils.py | 12 ++++++++++++ 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/patchwork/tests/test_bundles.py b/patchwork/tests/test_bundles.py index c1851105..7f98d36c 100644 --- a/patchwork/tests/test_bundles.py +++ b/patchwork/tests/test_bundles.py @@ -26,6 +26,7 @@ from django.conf import settings from django.core.urlresolvers import reverse from django.test import TestCase from django.utils.http import urlencode +from django.utils import six from django.utils.six.moves import range from django.utils.six.moves import zip @@ -42,6 +43,11 @@ def bundle_url(bundle): 'username': bundle.owner.username, 'bundlename': bundle.name}) +def bundle_mbox_url(bundle): + return reverse('bundle-mbox', kwargs={ + 'username': bundle.owner.username, 'bundlename': bundle.name}) + + class BundleListTest(TestCase): def setUp(self): @@ -120,6 +126,21 @@ class BundleViewTest(BundleTestBase): pos = next_pos +class BundleMboxTest(BundleTestBase): + + def test_empty_bundle(self): + response = self.client.get(bundle_mbox_url(self.bundle)) + self.assertEqual(response.status_code, 200) + self.assertEqual(response.content, six.b('')) + + def test_non_empty_bundle(self): + self.bundle.append_patch(self.patches[0]) + + response = self.client.get(bundle_mbox_url(self.bundle)) + self.assertEqual(response.status_code, 200) + self.assertNotEqual(response.content, six.b('')) + + class BundleUpdateTest(BundleTestBase): def test_no_action(self): diff --git a/patchwork/views/bundle.py b/patchwork/views/bundle.py index 3e8d0349..89acb348 100644 --- a/patchwork/views/bundle.py +++ b/patchwork/views/bundle.py @@ -33,7 +33,7 @@ from patchwork.models import Bundle from patchwork.models import BundlePatch from patchwork.models import Project from patchwork.views import generic_list -from patchwork.views.utils import patch_to_mbox +from patchwork.views.utils import bundle_to_mbox if settings.ENABLE_REST_API: from rest_framework.authentication import BasicAuthentication # noqa @@ -149,8 +149,7 @@ def bundle_mbox(request, username, bundlename): response = HttpResponse(content_type='text/plain') response['Content-Disposition'] = \ 'attachment; filename=bundle-%d-%s.mbox' % (bundle.id, bundle.name) - response.write('\n'.join( - [patch_to_mbox(p) for p in bundle.ordered_patches()])) + response.write(bundle_to_mbox(bundle)) return response diff --git a/patchwork/views/utils.py b/patchwork/views/utils.py index c9986476..900480b5 100644 --- a/patchwork/views/utils.py +++ b/patchwork/views/utils.py @@ -104,3 +104,15 @@ def patch_to_mbox(patch): mail = mail.as_string(True) return mail + + +def bundle_to_mbox(bundle): + """Get an mbox representation of a bundle. + + Arguments: + patch: The Bundle object to convert. + + Returns: + A string for the mbox file. + """ + return '\n'.join([patch_to_mbox(p) for p in bundle.ordered_patches()]) -- 2.47.3