]> git.ozlabs.org Git - patchwork/blob - patchwork/tests/test_xmlrpc.py
2b459b2a509dbe0bd281a1221171b1aa24b11a13
[patchwork] / patchwork / tests / test_xmlrpc.py
1 # Patchwork - automated patch tracking system
2 # Copyright (C) 2014 Jeremy Kerr <jk@ozlabs.org>
3 #
4 # This file is part of the Patchwork package.
5 #
6 # Patchwork is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # Patchwork is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Patchwork; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 import unittest
21 import xmlrpclib
22 from django.test import LiveServerTestCase
23 from django.core.urlresolvers import reverse
24 from django.conf import settings
25 from patchwork.models import Person, Patch
26 from patchwork.tests.utils import defaults
27
28 @unittest.skipUnless(settings.ENABLE_XMLRPC,
29         "requires xmlrpc interface (use the ENABLE_XMLRPC setting)")
30 class XMLRPCTest(LiveServerTestCase):
31
32     def setUp(self):
33         settings.STATIC_URL = '/'
34         self.url = (self.live_server_url + 
35                     reverse('patchwork.views.xmlrpc.xmlrpc'))
36         self.rpc = xmlrpclib.Server(self.url)
37         
38     def testGetRedirect(self):
39         response = self.client.get(self.url)
40         self.assertRedirects(response,
41                 reverse('patchwork.views.help',
42                     kwargs = {'path': 'pwclient/'}))
43
44     def testList(self):
45         defaults.project.save()
46         defaults.patch_author_person.save()
47         patch = Patch(project = defaults.project,
48                 submitter = defaults.patch_author_person,
49                 msgid = defaults.patch_name,
50                 content = defaults.patch)
51         patch.save()
52
53         patches = self.rpc.patch_list()
54         self.assertEqual(len(patches), 1)
55         self.assertEqual(patches[0]['id'], patch.id)