50 lines
2 KiB
Python
50 lines
2 KiB
Python
import unittest
|
|
import koji
|
|
import kojihub
|
|
from unittest import mock
|
|
|
|
|
|
class TestMaven(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.context = mock.patch('kojihub.kojihub.context').start()
|
|
self.exports = kojihub.RootExports()
|
|
self.context.session.assertLogin = mock.MagicMock()
|
|
self.context.session.hasPerm = mock.MagicMock()
|
|
self.get_channel = mock.patch('kojihub.kojihub.get_channel').start()
|
|
self.make_task = mock.patch('kojihub.kojihub.make_task').start()
|
|
self.url = 'https://test-url.com'
|
|
self.target = 'test-target'
|
|
|
|
def tearDown(self):
|
|
mock.patch.stopall()
|
|
|
|
def test_maven_not_supported(self):
|
|
self.context.opts.get.return_value = False
|
|
with self.assertRaises(koji.GenericError) as cm:
|
|
self.exports.mavenBuild(self.url, self.target)
|
|
self.assertEqual("Maven support not enabled", str(cm.exception))
|
|
|
|
def test_url_not_str(self):
|
|
url = ['test-url']
|
|
self.context.opts.get.return_value = True
|
|
with self.assertRaises(koji.GenericError) as cm:
|
|
self.exports.mavenBuild(url, self.target)
|
|
self.assertEqual(f"Invalid type for value '{url}': {type(url)}, "
|
|
f"expected type <class 'str'>", str(cm.exception))
|
|
|
|
def test_priority_without_admin(self):
|
|
priority = -10
|
|
self.context.opts.get.return_value = True
|
|
self.context.session.hasPerm.return_value = False
|
|
with self.assertRaises(koji.GenericError) as cm:
|
|
self.exports.mavenBuild(self.url, self.target, priority=priority)
|
|
self.assertEqual("only admins may create high-priority tasks", str(cm.exception))
|
|
|
|
def test_channel_not_str(self):
|
|
priority = 10
|
|
self.context.opts.get.return_value = True
|
|
self.get_channel.return_value = {'comment': None, 'description': None, 'enabled': True,
|
|
'id': 2, 'name': 'maven'}
|
|
self.make_task.return_value = 123
|
|
self.exports.mavenBuild(self.url, self.target, priority=priority, channel=2)
|