Codecoverage are 100% and tests are green Changes: * Refactor archive_*.py -> archive subpackage * Refactor partitioner_*.py -> partitioner subpackage * Refactor package_manager_*.py -> package_manager/ subpackage * Refactor bootloader_config*.py -> bootloader/config/ subpackage * Refactor bootloader_template*.py -> bootloader/template/ subpackage * Refactor bootloader_install*.py -> bootloader/install/ subpackage * Refactor repository*.py -> repository/ subpackage * Refactor filesystem*.py -> filesystem/ subpackage * Refactor dist_*.py -> dist/dformat subpackage The name `dformat` as package name is needed to avoid any name conflicts with the built-in function `format`. * Refactor volume_manager*.py -> volume_manager/ subpackage * Refactor boot_image*.py -> boot/image/ subpackage
144 lines
4.7 KiB
Python
144 lines
4.7 KiB
Python
from nose.tools import *
|
|
from mock import patch
|
|
|
|
import mock
|
|
|
|
from . import nose_helper
|
|
|
|
from kiwi.bootloader.template.isolinux import BootLoaderTemplateIsoLinux
|
|
|
|
|
|
class TestBootLoaderTemplateIsoLinux(object):
|
|
def setup(self):
|
|
self.isolinux = BootLoaderTemplateIsoLinux()
|
|
|
|
def test_get_template(self):
|
|
assert self.isolinux.get_template().substitute(
|
|
default_boot='LimeJeOS-SLE12-Community',
|
|
kernel_file='boot/linux.vmx',
|
|
initrd_file='boot/initrd.vmx',
|
|
boot_options='cdinst=1 splash',
|
|
failsafe_boot_options='cdinst=1 splash',
|
|
gfxmode='800x600',
|
|
theme='SLE',
|
|
boot_timeout='10',
|
|
title='LimeJeOS-SLE12-Community',
|
|
bootpath='/boot'
|
|
)
|
|
|
|
def test_get_template_plain_ui(self):
|
|
assert self.isolinux.get_template(with_theme=False).substitute(
|
|
default_boot='LimeJeOS-SLE12-Community',
|
|
kernel_file='boot/linux.vmx',
|
|
initrd_file='boot/initrd.vmx',
|
|
boot_options='cdinst=1 splash',
|
|
failsafe_boot_options='cdinst=1 splash',
|
|
gfxmode='800x600',
|
|
theme='SLE',
|
|
boot_timeout='10',
|
|
title='LimeJeOS-SLE12-Community',
|
|
bootpath='/boot'
|
|
)
|
|
|
|
def test_get_multiboot_template(self):
|
|
assert self.isolinux.get_multiboot_template().substitute(
|
|
default_boot='LimeJeOS-SLE12-Community',
|
|
kernel_file='linux.vmx',
|
|
initrd_file='initrd.vmx',
|
|
boot_options='splash',
|
|
failsafe_boot_options='splash',
|
|
gfxmode='800x600',
|
|
theme='SLE',
|
|
boot_timeout='10',
|
|
title='LimeJeOS-SLE12-Community',
|
|
bootpath='/boot',
|
|
hypervisor='xen.gz'
|
|
)
|
|
|
|
def test_get_multiboot_template_plain_ui(self):
|
|
assert self.isolinux.get_multiboot_template(
|
|
with_theme=False
|
|
).substitute(
|
|
default_boot='LimeJeOS-SLE12-Community',
|
|
kernel_file='linux.vmx',
|
|
initrd_file='initrd.vmx',
|
|
boot_options='splash',
|
|
failsafe_boot_options='splash',
|
|
gfxmode='800x600',
|
|
theme='SLE',
|
|
boot_timeout='10',
|
|
title='LimeJeOS-SLE12-Community',
|
|
bootpath='/boot',
|
|
hypervisor='xen.gz'
|
|
)
|
|
|
|
def test_get_multiboot_install_template(self):
|
|
assert self.isolinux.get_multiboot_install_template().substitute(
|
|
default_boot='0',
|
|
kernel_file='linux.vmx',
|
|
initrd_file='initrd.vmx',
|
|
boot_options='splash',
|
|
failsafe_boot_options='splash',
|
|
gfxmode='800x600',
|
|
theme='SLE',
|
|
boot_timeout='10',
|
|
title='LimeJeOS-SLE12-Community [ VMX ]',
|
|
bootpath='/boot',
|
|
hypervisor='xen.gz'
|
|
)
|
|
|
|
def test_get_install_template(self):
|
|
assert self.isolinux.get_install_template().substitute(
|
|
default_boot='0',
|
|
kernel_file='boot/linux.vmx',
|
|
initrd_file='boot/initrd.vmx',
|
|
boot_options='cdinst=1 splash',
|
|
failsafe_boot_options='cdinst=1 splash',
|
|
gfxmode='800x600',
|
|
theme='SLE',
|
|
boot_timeout='10',
|
|
title='LimeJeOS-SLE12-Community [ VMX ]',
|
|
bootpath='/boot'
|
|
)
|
|
|
|
def test_get_multiboot_install_template_plain_ui(self):
|
|
assert self.isolinux.get_multiboot_install_template(
|
|
with_theme=False
|
|
).substitute(
|
|
default_boot='0',
|
|
kernel_file='linux.vmx',
|
|
initrd_file='initrd.vmx',
|
|
boot_options='splash',
|
|
failsafe_boot_options='splash',
|
|
gfxmode='800x600',
|
|
theme='SLE',
|
|
boot_timeout='10',
|
|
title='LimeJeOS-SLE12-Community [ VMX ]',
|
|
bootpath='/boot',
|
|
hypervisor='xen.gz'
|
|
)
|
|
|
|
def test_get_install_template_plan_ui(self):
|
|
assert self.isolinux.get_install_template(with_theme=False).substitute(
|
|
default_boot='0',
|
|
kernel_file='boot/linux.vmx',
|
|
initrd_file='boot/initrd.vmx',
|
|
boot_options='cdinst=1 splash',
|
|
failsafe_boot_options='cdinst=1 splash',
|
|
gfxmode='800x600',
|
|
theme='SLE',
|
|
boot_timeout='10',
|
|
title='LimeJeOS-SLE12-Community [ VMX ]',
|
|
bootpath='/boot'
|
|
)
|
|
|
|
def test_get_message_template(self):
|
|
assert self.isolinux.get_message_template().substitute(
|
|
title='LimeJeOS-SLE12-Community [ VMX ]'
|
|
)
|
|
|
|
def test_get_install_message_template(self):
|
|
assert self.isolinux.get_install_message_template().substitute(
|
|
title='LimeJeOS-SLE12-Community [ VMX ]'
|
|
)
|