Increase www unit tests
This commit is contained in:
parent
9e51cd5537
commit
d4f3995202
16 changed files with 997 additions and 17 deletions
105
tests/test_www/test_notificationedit.py
Normal file
105
tests/test_www/test_notificationedit.py
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
import unittest
|
||||
import koji
|
||||
import cgi
|
||||
|
||||
import mock
|
||||
from io import BytesIO
|
||||
from .loadwebindex import webidx
|
||||
from koji.server import ServerRedirect
|
||||
|
||||
|
||||
class TestNotificationEdit(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.get_server = mock.patch.object(webidx, "_getServer").start()
|
||||
self.assert_login = mock.patch.object(webidx, "_assertLogin").start()
|
||||
self.server = mock.MagicMock()
|
||||
self.environ = {
|
||||
'koji.options': {
|
||||
'SiteName': 'test',
|
||||
'KojiFilesURL': 'https://server.local/files',
|
||||
},
|
||||
'koji.currentUser': None
|
||||
}
|
||||
self.notification_id = '1'
|
||||
self.pkg_id = 2
|
||||
self.tag_id = 11
|
||||
|
||||
def tearDown(self):
|
||||
mock.patch.stopall()
|
||||
|
||||
def get_fs(self, urlencode_data):
|
||||
urlencode_environ = {
|
||||
'CONTENT_LENGTH': str(len(urlencode_data)),
|
||||
'CONTENT_TYPE': 'application/x-www-form-urlencoded',
|
||||
'QUERY_STRING': '',
|
||||
'REQUEST_METHOD': 'POST',
|
||||
}
|
||||
data = BytesIO(urlencode_data)
|
||||
data.seek(0)
|
||||
return cgi.FieldStorage(fp=data, environ=urlencode_environ)
|
||||
|
||||
def test_notificationedit_exception(self):
|
||||
"""Test notificationedit function raises exception when notification ID is not exists."""
|
||||
self.server.getBuildNotification.return_value = None
|
||||
self.get_server.return_value = self.server
|
||||
|
||||
with self.assertRaises(koji.GenericError) as cm:
|
||||
webidx.notificationedit(self.environ, self.notification_id)
|
||||
self.assertEqual(str(cm.exception), f'no notification with ID: {self.notification_id}')
|
||||
|
||||
def test_notificationedit_save_case_int(self):
|
||||
"""Test notificationedit function valid case (save)."""
|
||||
urlencode_data = b"save=True&package=2&tag=11&success_only=True"
|
||||
fs = self.get_fs(urlencode_data)
|
||||
|
||||
def __get_server(env):
|
||||
env['koji.session'] = self.server
|
||||
env['koji.form'] = fs
|
||||
return self.server
|
||||
|
||||
self.get_server.side_effect = __get_server
|
||||
self.server.getBuildNotification.return_value = {'id': self.notification_id}
|
||||
self.server.updateNotification.return_value = 1
|
||||
|
||||
with self.assertRaises(ServerRedirect):
|
||||
webidx.notificationedit(self.environ, self.notification_id)
|
||||
self.server.updateNotification.assert_called_with(self.notification_id, self.pkg_id,
|
||||
self.tag_id, True)
|
||||
self.assertEqual(self.environ['koji.redirect'], 'index')
|
||||
|
||||
def test_notificationedit_save_case_all(self):
|
||||
"""Test notificationedit function valid case (all)."""
|
||||
urlencode_data = b"save=True&package=all&tag=all"
|
||||
fs = self.get_fs(urlencode_data)
|
||||
|
||||
def __get_server(env):
|
||||
env['koji.session'] = self.server
|
||||
env['koji.form'] = fs
|
||||
return self.server
|
||||
|
||||
self.server.getBuildNotification.return_value = {'id': self.notification_id}
|
||||
self.get_server.side_effect = __get_server
|
||||
self.server.updateNotification.return_value = 1
|
||||
|
||||
with self.assertRaises(ServerRedirect):
|
||||
webidx.notificationedit(self.environ, self.notification_id)
|
||||
self.server.updateNotification.assert_called_with(self.notification_id, None, None, False)
|
||||
self.assertEqual(self.environ['koji.redirect'], 'index')
|
||||
|
||||
def test_notificationedit_cancel_case(self):
|
||||
"""Test notificationedit function valid case (cancel)."""
|
||||
urlencode_data = b"cancel=True"
|
||||
fs = self.get_fs(urlencode_data)
|
||||
|
||||
def __get_server(env):
|
||||
env['koji.session'] = self.server
|
||||
env['koji.form'] = fs
|
||||
return self.server
|
||||
|
||||
self.server.getBuildNotification.return_value = {'id': self.notification_id}
|
||||
self.get_server.side_effect = __get_server
|
||||
|
||||
with self.assertRaises(ServerRedirect):
|
||||
webidx.notificationedit(self.environ, self.notification_id)
|
||||
self.server.updateNotification.assert_not_called()
|
||||
self.assertEqual(self.environ['koji.redirect'], 'index')
|
||||
Loading…
Add table
Add a link
Reference in a new issue