Merge #190 [live-images] Rename log file
This commit is contained in:
commit
e6596d818c
@ -213,7 +213,7 @@ class CreateLiveImageThread(WorkerThread):
|
||||
|
||||
def worker(self, compose, cmd, variant, arch, num):
|
||||
self.basename = '%(name)s-%(version)s-%(release)s' % cmd
|
||||
log_file = compose.paths.log.log_file(arch, "createiso-%s" % self.basename)
|
||||
log_file = compose.paths.log.log_file(arch, "liveimage-%s" % self.basename)
|
||||
|
||||
msg = "Creating ISO (arch: %s, variant: %s): %s" % (arch, variant, self.basename)
|
||||
self.pool.log_info("[BEGIN] %s" % msg)
|
||||
|
@ -307,7 +307,7 @@ class TestCreateLiveImageThread(PungiTestCase):
|
||||
|
||||
self.assertEqual(koji_wrapper.run_blocking_cmd.mock_calls,
|
||||
[mock.call('koji spin-livecd ...',
|
||||
log_file=self.topdir + '/logs/amd64/createiso-None-None-None.amd64.log')])
|
||||
log_file=self.topdir + '/logs/amd64/liveimage-None-None-None.amd64.log')])
|
||||
self.assertEqual(koji_wrapper.get_image_path.mock_calls, [mock.call(123)])
|
||||
self.assertEqual(copy2.mock_calls,
|
||||
[mock.call('/path/to/image.iso', self.topdir + '/compose/Client/amd64/iso/image-name')])
|
||||
@ -385,7 +385,7 @@ class TestCreateLiveImageThread(PungiTestCase):
|
||||
|
||||
self.assertEqual(koji_wrapper.run_blocking_cmd.mock_calls,
|
||||
[mock.call('koji spin-livecd ...',
|
||||
log_file=self.topdir + '/logs/amd64/createiso-None-None-None.amd64.log')])
|
||||
log_file=self.topdir + '/logs/amd64/liveimage-None-None-None.amd64.log')])
|
||||
self.assertEqual(koji_wrapper.get_image_path.mock_calls, [mock.call(123)])
|
||||
self.assertEqual(copy2.mock_calls,
|
||||
[mock.call('/path/to/image.iso', self.topdir + '/compose/Client/amd64/iso/image.iso')])
|
||||
@ -464,7 +464,7 @@ class TestCreateLiveImageThread(PungiTestCase):
|
||||
|
||||
self.assertEqual(koji_wrapper.run_blocking_cmd.mock_calls,
|
||||
[mock.call('koji spin-livecd ...',
|
||||
log_file=self.topdir + '/logs/amd64/createiso-None-None-None.amd64.log')])
|
||||
log_file=self.topdir + '/logs/amd64/liveimage-None-None-None.amd64.log')])
|
||||
self.assertEqual(koji_wrapper.get_image_path.mock_calls, [mock.call(123)])
|
||||
self.assertEqual(copy2.mock_calls,
|
||||
[mock.call('/path/to/image-a.b-sda.raw.xz', self.topdir + '/compose/Client/amd64/iso/image-name')])
|
||||
|
Loading…
Reference in New Issue
Block a user