Check the given file name for its compression format and only uncompress if a supported format could be detected. This Fixes #730
106 lines
3.7 KiB
Python
106 lines
3.7 KiB
Python
import mock
|
|
from mock import patch
|
|
|
|
from kiwi.system.uri import Uri
|
|
from kiwi.system.root_import.docker import RootImportDocker
|
|
|
|
|
|
class TestRootImportDocker(object):
|
|
@patch('os.path.exists')
|
|
@patch('kiwi.command.Command.run')
|
|
@patch('kiwi.system.root_import.docker.Compress')
|
|
@patch('kiwi.system.root_import.oci.mkdtemp')
|
|
@patch('kiwi.system.uri.Defaults.is_buildservice_worker')
|
|
def test_extract_compressed_oci_image(
|
|
self, mock_buildservice, mock_mkdtemp, mock_compress,
|
|
mock_run, mock_exists
|
|
):
|
|
mock_buildservice.return_value = False
|
|
mock_exists.return_value = True
|
|
uncompress = mock.Mock()
|
|
uncompress.get_format = mock.Mock(
|
|
return_value='xz'
|
|
)
|
|
uncompress.uncompressed_filename = 'tmp_uncompressed.tar'
|
|
mock_compress.return_value = uncompress
|
|
tmpdirs = ['kiwi_unpack_dir', 'kiwi_layout_dir']
|
|
|
|
def call_mkdtemp(prefix):
|
|
return tmpdirs.pop()
|
|
|
|
mock_mkdtemp.side_effect = call_mkdtemp
|
|
|
|
with patch.dict('os.environ', {'HOME': '../data'}):
|
|
docker_import = RootImportDocker(
|
|
'root_dir', Uri('file:///image.tar.xz')
|
|
)
|
|
docker_import.extract_oci_image()
|
|
mock_compress.assert_called_once_with('/image.tar.xz')
|
|
uncompress.uncompress.assert_called_once_with(True)
|
|
mock_run.assert_called_once_with([
|
|
'skopeo', 'copy', 'docker-archive:tmp_uncompressed.tar',
|
|
'oci:kiwi_layout_dir:base_layer'
|
|
])
|
|
|
|
@patch('os.path.exists')
|
|
@patch('kiwi.command.Command.run')
|
|
@patch('kiwi.system.root_import.docker.Compress')
|
|
@patch('kiwi.system.root_import.oci.mkdtemp')
|
|
@patch('kiwi.system.uri.Defaults.is_buildservice_worker')
|
|
def test_extract_uncompressed_oci_image(
|
|
self, mock_buildservice, mock_mkdtemp, mock_compress,
|
|
mock_run, mock_exists
|
|
):
|
|
mock_buildservice.return_value = False
|
|
mock_exists.return_value = True
|
|
uncompress = mock.Mock()
|
|
uncompress.get_format = mock.Mock(
|
|
return_value=None
|
|
)
|
|
mock_compress.return_value = uncompress
|
|
tmpdirs = ['kiwi_unpack_dir', 'kiwi_layout_dir']
|
|
|
|
def call_mkdtemp(prefix):
|
|
return tmpdirs.pop()
|
|
|
|
mock_mkdtemp.side_effect = call_mkdtemp
|
|
|
|
with patch.dict('os.environ', {'HOME': '../data'}):
|
|
docker_import = RootImportDocker(
|
|
'root_dir', Uri('file:///image.tar')
|
|
)
|
|
docker_import.extract_oci_image()
|
|
mock_compress.assert_called_once_with('/image.tar')
|
|
mock_run.assert_called_once_with([
|
|
'skopeo', 'copy', 'docker-archive:/image.tar',
|
|
'oci:kiwi_layout_dir:base_layer'
|
|
])
|
|
|
|
@patch('os.path.exists')
|
|
@patch('kiwi.command.Command.run')
|
|
@patch('kiwi.system.root_import.oci.mkdtemp')
|
|
@patch('kiwi.system.root_import.base.log.warning')
|
|
@patch('kiwi.system.uri.Defaults.is_buildservice_worker')
|
|
def test_extract_oci_image_unknown_uri(
|
|
self, mock_buildservice, mock_warn, mock_mkdtemp, mock_run, mock_exists
|
|
):
|
|
mock_buildservice.return_value = False
|
|
mock_exists.return_value = True
|
|
tmpdirs = ['kiwi_unpack_dir', 'kiwi_layout_dir']
|
|
|
|
def call_mkdtemp(prefix):
|
|
return tmpdirs.pop()
|
|
|
|
mock_mkdtemp.side_effect = call_mkdtemp
|
|
|
|
with patch.dict('os.environ', {'HOME': '../data'}):
|
|
docker_import = RootImportDocker(
|
|
'root_dir', Uri('docker://opensuse')
|
|
)
|
|
docker_import.extract_oci_image()
|
|
mock_run.assert_called_once_with([
|
|
'skopeo', 'copy', 'docker://opensuse',
|
|
'oci:kiwi_layout_dir:base_layer'
|
|
])
|
|
assert mock_warn.called
|