2016-04-10 04:00:00 +00:00
|
|
|
#!/usr/bin/python3
|
2015-03-23 11:36:12 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2013-2014 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
|
|
# by the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-05-30 11:20:59 +00:00
|
|
|
__all__ = ["BZ1014545_TestCase"]
|
|
|
|
|
2015-03-23 11:36:12 +00:00
|
|
|
from . import TestCase, TestCaseComponent
|
|
|
|
|
|
|
|
from blivet.size import Size
|
2017-01-09 02:09:07 +00:00
|
|
|
from pykickstart.errors import KickstartParseError
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
class BTRFSOnNonBTRFSComponent(TestCaseComponent):
|
|
|
|
name = "BTRFSOnNonBTRFS"
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
TestCaseComponent.__init__(self, *args, **kwargs)
|
2015-05-30 11:20:59 +00:00
|
|
|
self.disksToCreate = [("btrfs-on-non-btrfs-disk1", Size("1GiB"))]
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def ks(self):
|
|
|
|
return """
|
2015-05-30 11:20:59 +00:00
|
|
|
bootloader --location=none
|
2015-03-23 11:36:12 +00:00
|
|
|
zerombr
|
|
|
|
clearpart --all --initlabel
|
2015-05-30 11:20:59 +00:00
|
|
|
btrfs none --data=0 --metadata=1 btrfs-on-non-btrfs-disk1
|
2015-03-23 11:36:12 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def expectedExceptionType(self):
|
2017-01-09 02:09:07 +00:00
|
|
|
return KickstartParseError
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def expectedExceptionText(self):
|
2015-05-30 11:20:59 +00:00
|
|
|
return "Btrfs partition .* has a format of \"disklabel\", but should have a format of \"btrfs\""
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
class VolGroupOnNonPVsComponent(TestCaseComponent):
|
|
|
|
name = "VolGroupOnNonPVs"
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
TestCaseComponent.__init__(self, *args, **kwargs)
|
2015-05-30 11:20:59 +00:00
|
|
|
self.disksToCreate = [("volgroup-on-non-pv-disk1", Size("1GiB"))]
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def ks(self):
|
|
|
|
return """
|
2015-05-30 11:20:59 +00:00
|
|
|
bootloader --location=none
|
2015-03-23 11:36:12 +00:00
|
|
|
zerombr
|
|
|
|
clearpart --all --initlabel
|
2015-05-30 11:20:59 +00:00
|
|
|
volgroup myvg volgroup-on-non-pv-disk1
|
2015-03-23 11:36:12 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def expectedExceptionType(self):
|
2017-01-09 02:09:07 +00:00
|
|
|
return KickstartParseError
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def expectedExceptionText(self):
|
2015-05-30 11:20:59 +00:00
|
|
|
return "Physical volume .* has a format of \"disklabel\", but should have a format of \"lvmpv\""
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
class RaidOnNonRaidMembersComponent(TestCaseComponent):
|
|
|
|
name = "RaidOnNonRaidMembers"
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
TestCaseComponent.__init__(self, *args, **kwargs)
|
2015-05-30 11:20:59 +00:00
|
|
|
self.disksToCreate = [("raid-on-non-raid-disk1", Size("1GiB")),
|
|
|
|
("raid-on-non-raid-disk2", Size("1GiB"))]
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def ks(self):
|
|
|
|
return """
|
2015-05-30 11:20:59 +00:00
|
|
|
bootloader --location=none
|
2015-03-23 11:36:12 +00:00
|
|
|
zerombr
|
|
|
|
clearpart --all --initlabel
|
2015-05-30 11:20:59 +00:00
|
|
|
raid / --level=1 --device=md0 raid-on-non-raid-disk1 raid-on-non-raid-disk2
|
2015-03-23 11:36:12 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def expectedExceptionType(self):
|
2017-01-09 02:09:07 +00:00
|
|
|
return KickstartParseError
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def expectedExceptionText(self):
|
2015-05-30 11:20:59 +00:00
|
|
|
return "RAID device .* has a format of \"disklabel\", but should have a format of \"mdmember\""
|
2015-03-23 11:36:12 +00:00
|
|
|
|
|
|
|
class BZ1014545_TestCase(TestCase):
|
|
|
|
name = "1014545"
|
|
|
|
desc = """The members of various commands must have the correct format.
|
|
|
|
For instance, raid members must have mdmember, and volgroup members must have
|
2017-01-09 02:09:07 +00:00
|
|
|
lvmpv. If they do not have this format, a KickstartParseError should be raised
|
2015-03-23 11:36:12 +00:00
|
|
|
during storage execution time.
|
|
|
|
|
|
|
|
Note that this is different from the error condition described in the bug.
|
|
|
|
There, anaconda was letting the invalid format go and then hitting errors
|
|
|
|
much further in installation - during bootloader installation. The real
|
|
|
|
bug is that this condition should be detected when the kickstart storage
|
|
|
|
commands are being converted to actions.
|
|
|
|
"""
|
2015-05-30 11:20:59 +00:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
TestCase.__init__(self)
|
|
|
|
self.components = [BTRFSOnNonBTRFSComponent(),
|
|
|
|
RaidOnNonRaidMembersComponent(),
|
|
|
|
VolGroupOnNonPVsComponent()]
|