
* Corrected work with default parameters * Fixed module and engineer details screens * Map all robots to *robots company Change-Id: I989e09c04c12f3a0a9035a8ddcd730d93d0ce12f
67 lines
2.0 KiB
Python
67 lines
2.0 KiB
Python
import testtools
|
|
|
|
from dashboard import web
|
|
|
|
|
|
class TestWebUtils(testtools.TestCase):
|
|
def setUp(self):
|
|
super(TestWebUtils, self).setUp()
|
|
|
|
def test_make_commit_message(self):
|
|
message = '''
|
|
During finish_migration the manager calls initialize_connection but doesn't
|
|
update the block_device_mapping with the potentially new connection_info
|
|
returned.
|
|
|
|
|
|
Fixes bug 1076801
|
|
Change-Id: Ie49ccd2138905e178843b375a9b16c3fe572d1db'''
|
|
|
|
module = 'test'
|
|
|
|
record = {
|
|
'message': message,
|
|
'module': module,
|
|
}
|
|
|
|
expected = '''
|
|
During finish_migration the manager calls initialize_connection but doesn't
|
|
update the block_device_mapping with the potentially new connection_info
|
|
returned.
|
|
Fixes bug <a href="https://bugs.launchpad.net/bugs/1076801">1076801</a>
|
|
''' + ('Change-Id: <a href="https://review.openstack.org/#q,'
|
|
'Ie49ccd2138905e178843b375a9b16c3fe572d1db,n,z">'
|
|
'Ie49ccd2138905e178843b375a9b16c3fe572d1db</a>')
|
|
|
|
observed = web.make_commit_message(record)
|
|
|
|
self.assertEqual(expected, observed,
|
|
'Commit message should be processed correctly')
|
|
|
|
def test_make_commit_message_blueprint_link(self):
|
|
message = '''
|
|
Implemented new driver for Cinder <:
|
|
Implements Blueprint super-driver
|
|
Change-Id: Ie49ccd2138905e178843b375a9b16c3fe572d1db'''
|
|
|
|
module = 'cinder'
|
|
|
|
record = {
|
|
'message': message,
|
|
'module': module,
|
|
}
|
|
|
|
expected = '''
|
|
Implemented new driver for Cinder <:
|
|
Implements Blueprint ''' + (
|
|
'<a href="https://blueprints.launchpad.net/cinder/+spec/'
|
|
'super-driver">super-driver</a>' + '\n' +
|
|
'Change-Id: <a href="https://review.openstack.org/#q,'
|
|
'Ie49ccd2138905e178843b375a9b16c3fe572d1db,n,z">'
|
|
'Ie49ccd2138905e178843b375a9b16c3fe572d1db</a>')
|
|
|
|
observed = web.make_commit_message(record)
|
|
|
|
self.assertEqual(expected, observed,
|
|
'Commit message should be processed correctly')
|