from mock import patch from pytest import raises import mock from kiwi.filesystem import FileSystem from kiwi.exceptions import KiwiFileSystemSetupError class TestFileSystem: def test_filesystem_not_implemented(self): with raises(KiwiFileSystemSetupError): FileSystem('foo', mock.Mock(), 'root_dir') @patch('kiwi.filesystem.FileSystemExt2') def test_filesystem_ext2(self, mock_ext2): provider = mock.Mock() FileSystem('ext2', provider, 'root_dir') mock_ext2.assert_called_once_with(provider, 'root_dir', None) @patch('kiwi.filesystem.FileSystemExt3') def test_filesystem_ext3(self, mock_ext3): provider = mock.Mock() FileSystem('ext3', provider, 'root_dir') mock_ext3.assert_called_once_with(provider, 'root_dir', None) @patch('kiwi.filesystem.FileSystemExt4') def test_filesystem_ext4(self, mock_ext4): provider = mock.Mock() FileSystem('ext4', provider, 'root_dir') mock_ext4.assert_called_once_with(provider, 'root_dir', None) @patch('kiwi.filesystem.FileSystemXfs') def test_filesystem_xfs(self, mock_xfs): provider = mock.Mock() FileSystem('xfs', provider, 'root_dir') mock_xfs.assert_called_once_with(provider, 'root_dir', None) @patch('kiwi.filesystem.FileSystemBtrfs') def test_filesystem_btrfs(self, mock_btrfs): provider = mock.Mock() FileSystem('btrfs', provider, 'root_dir') mock_btrfs.assert_called_once_with(provider, 'root_dir', None) @patch('kiwi.filesystem.FileSystemFat16') def test_filesystem_fat16(self, mock_fat16): provider = mock.Mock() FileSystem('fat16', provider, 'root_dir') mock_fat16.assert_called_once_with(provider, 'root_dir', None) @patch('kiwi.filesystem.FileSystemFat32') def test_filesystem_fat32(self, mock_fat32): provider = mock.Mock() FileSystem('fat32', provider, 'root_dir') mock_fat32.assert_called_once_with(provider, 'root_dir', None) @patch('kiwi.filesystem.FileSystemSquashFs') def test_filesystem_squashfs(self, mock_squashfs): provider = mock.Mock() FileSystem('squashfs', provider, 'root_dir') mock_squashfs.assert_called_once_with(provider, 'root_dir', None) @patch('kiwi.filesystem.FileSystemClicFs') def test_filesystem_clicfs(self, mock_clicfs): provider = mock.Mock() FileSystem('clicfs', provider, 'root_dir') mock_clicfs.assert_called_once_with(provider, 'root_dir', None)