kiwi-el8/test/unit/builder/archive_test.py
David Cassany 4b3a105026
Re-structure unit tests folders
This commit relocates unit tests to a folder structure that matches
the source code structure.

Fixes #1128
2019-10-21 14:00:05 +02:00

85 lines
2.6 KiB
Python

from mock import patch
from pytest import raises
import sys
import mock
import kiwi
from ..test_helper import argv_kiwi_tests
from kiwi.exceptions import KiwiArchiveSetupError
from kiwi.builder.archive import ArchiveBuilder
class TestArchiveBuilder:
@patch('platform.machine')
def setup(self, mock_machine):
mock_machine.return_value = 'x86_64'
self.xml_state = mock.Mock()
self.xml_state.get_image_version = mock.Mock(
return_value='1.2.3'
)
self.xml_state.get_build_type_name = mock.Mock(
return_value='tbz'
)
self.xml_state.xml_data.get_name = mock.Mock(
return_value='myimage'
)
self.setup = mock.Mock()
kiwi.builder.archive.SystemSetup = mock.Mock(
return_value=self.setup
)
self.archive = ArchiveBuilder(
self.xml_state, 'target_dir', 'root_dir'
)
def test_create_unknown_archive_type(self):
xml_state = mock.Mock()
xml_state.get_build_type_name = mock.Mock(
return_value='bogus'
)
xml_state.get_image_version = mock.Mock(
return_value='1.2.3'
)
xml_state.xml_data.get_name = mock.Mock(
return_value='myimage'
)
archive = ArchiveBuilder(
xml_state, 'target_dir', 'root_dir'
)
with raises(KiwiArchiveSetupError):
archive.create()
@patch('kiwi.builder.archive.ArchiveTar')
@patch('kiwi.builder.archive.Checksum')
@patch('platform.machine')
def test_create(self, mock_machine, mock_checksum, mock_tar):
mock_machine.return_value = 'x86_64'
checksum = mock.Mock()
mock_checksum.return_value = checksum
archive = mock.Mock()
mock_tar.return_value = archive
self.archive.create()
mock_tar.assert_called_once_with(
'target_dir/myimage.x86_64-1.2.3.tar'
)
archive.create_xz_compressed.assert_called_once_with(
'root_dir', exclude=[
'image', '.profile', '.kconfig', '.buildenv', 'var/cache/kiwi'
], xz_options=None
)
mock_checksum.assert_called_once_with(
'target_dir/myimage.x86_64-1.2.3.tar.xz'
)
checksum.md5.assert_called_once_with(
'target_dir/myimage.x86_64-1.2.3.md5'
)
self.setup.export_package_verification.assert_called_once_with(
'target_dir'
)
self.setup.export_package_list.assert_called_once_with(
'target_dir'
)
def teardown(self):
sys.argv = argv_kiwi_tests