f37345
From b9021fde8ccdd14cbe192b6597f7ca350b4bb585 Mon Sep 17 00:00:00 2001
585101
From: Vojtech Trefny <vtrefny@redhat.com>
585101
Date: Wed, 26 May 2021 12:15:54 +0200
585101
Subject: [PATCH] Revert "More consistent lvm errors (API break)"
585101
585101
This reverts commit 49ec071c6d0673224a0774d613904387c52c7381.
585101
---
f37345
 blivet/devices/lvm.py                     | 72 +++++++++++------------
f37345
 tests/unit_tests/devices_test/lvm_test.py | 14 ++---
585101
 2 files changed, 43 insertions(+), 43 deletions(-)
585101
585101
diff --git a/blivet/devices/lvm.py b/blivet/devices/lvm.py
f37345
index 38e49e18..b8595d63 100644
585101
--- a/blivet/devices/lvm.py
585101
+++ b/blivet/devices/lvm.py
f37345
@@ -304,7 +304,7 @@ class LVMVolumeGroupDevice(ContainerDevice):
585101
     def _add_log_vol(self, lv):
585101
         """ Add an LV to this VG. """
585101
         if lv in self._lvs:
585101
-            raise errors.DeviceError("lv is already part of this vg")
585101
+            raise ValueError("lv is already part of this vg")
585101
 
585101
         # verify we have the space, then add it
585101
         # do not verify for growing vg (because of ks)
f37345
@@ -337,7 +337,7 @@ class LVMVolumeGroupDevice(ContainerDevice):
585101
     def _remove_log_vol(self, lv):
585101
         """ Remove an LV from this VG. """
585101
         if lv not in self.lvs:
585101
-            raise errors.DeviceError("specified lv is not part of this vg")
585101
+            raise ValueError("specified lv is not part of this vg")
585101
 
585101
         self._lvs.remove(lv)
585101
 
f37345
@@ -430,7 +430,7 @@ class LVMVolumeGroupDevice(ContainerDevice):
585101
     @thpool_reserve.setter
585101
     def thpool_reserve(self, value):
585101
         if value is not None and not isinstance(value, ThPoolReserveSpec):
585101
-            raise AttributeError("Invalid thpool_reserve given, must be of type ThPoolReserveSpec")
585101
+            raise ValueError("Invalid thpool_reserve given, must be of type ThPoolReserveSpec")
585101
         self._thpool_reserve = value
585101
 
585101
     @property
f37345
@@ -665,14 +665,14 @@ class LVMLogicalVolumeBase(DMDevice, RaidDevice):
f37345
             if seg_type not in [None, "linear", "thin", "thin-pool", "cache", "vdo-pool", "vdo", "cache-pool"] + lvm.raid_seg_types:
585101
                 raise ValueError("Invalid or unsupported segment type: %s" % seg_type)
585101
             if seg_type and seg_type in lvm.raid_seg_types and not pvs:
585101
-                raise errors.DeviceError("List of PVs has to be given for every non-linear LV")
585101
+                raise ValueError("List of PVs has to be given for every non-linear LV")
585101
             elif (not seg_type or seg_type == "linear") and pvs:
585101
                 if not all(isinstance(pv, LVPVSpec) for pv in pvs):
585101
-                    raise errors.DeviceError("Invalid specification of PVs for a linear LV: either no or complete "
585101
-                                             "specification (with all space split into PVs has to be given")
585101
+                    raise ValueError("Invalid specification of PVs for a linear LV: either no or complete "
585101
+                                     "specification (with all space split into PVs has to be given")
585101
                 elif sum(spec.size for spec in pvs) != size:
585101
-                    raise errors.DeviceError("Invalid specification of PVs for a linear LV: the sum of space "
585101
-                                             "assigned to PVs is not equal to the size of the LV")
585101
+                    raise ValueError("Invalid specification of PVs for a linear LV: the sum of space "
585101
+                                     "assigned to PVs is not equal to the size of the LV")
585101
 
585101
         # When this device's format is set in the superclass constructor it will
585101
         # try to access self.snapshots.
f37345
@@ -721,13 +721,13 @@ class LVMLogicalVolumeBase(DMDevice, RaidDevice):
585101
         self._from_lvs = from_lvs
585101
         if self._from_lvs:
585101
             if exists:
585101
-                raise errors.DeviceError("Only new LVs can be created from other LVs")
585101
+                raise ValueError("Only new LVs can be created from other LVs")
585101
             if size or maxsize or percent:
585101
-                raise errors.DeviceError("Cannot specify size for a converted LV")
585101
+                raise ValueError("Cannot specify size for a converted LV")
585101
             if fmt:
585101
-                raise errors.DeviceError("Cannot specify format for a converted LV")
585101
+                raise ValueError("Cannot specify format for a converted LV")
585101
             if any(lv.vg != self.vg for lv in self._from_lvs):
585101
-                raise errors.DeviceError("Conversion of LVs only possible inside a VG")
585101
+                raise ValueError("Conversion of LVs only possible inside a VG")
585101
 
585101
         self._cache = None
585101
         if cache_request and not self.exists:
f37345
@@ -746,13 +746,13 @@ class LVMLogicalVolumeBase(DMDevice, RaidDevice):
585101
             elif isinstance(pv_spec, StorageDevice):
585101
                 self._pv_specs.append(LVPVSpec(pv_spec, Size(0)))
585101
             else:
585101
-                raise AttributeError("Invalid PV spec '%s' for the '%s' LV" % (pv_spec, self.name))
585101
+                raise ValueError("Invalid PV spec '%s' for the '%s' LV" % (pv_spec, self.name))
585101
         # Make sure any destination PVs are actually PVs in this VG
585101
         if not set(spec.pv for spec in self._pv_specs).issubset(set(self.vg.parents)):
585101
             missing = [r.name for r in
585101
                        set(spec.pv for spec in self._pv_specs).difference(set(self.vg.parents))]
585101
             msg = "invalid destination PV(s) %s for LV %s" % (missing, self.name)
585101
-            raise errors.DeviceError(msg)
585101
+            raise ValueError(msg)
585101
         if self._pv_specs:
585101
             self._assign_pv_space()
585101
 
f37345
@@ -1130,7 +1130,7 @@ class LVMLogicalVolumeBase(DMDevice, RaidDevice):
585101
         else:
585101
             msg = "the specified internal LV '%s' doesn't belong to this LV ('%s')" % (int_lv.lv_name,
585101
                                                                                        self.name)
585101
-            raise errors.DeviceError(msg)
585101
+            raise ValueError(msg)
585101
 
585101
     def populate_ksdata(self, data):
585101
         super(LVMLogicalVolumeBase, self).populate_ksdata(data)
f37345
@@ -1229,7 +1229,7 @@ class LVMInternalLogicalVolumeMixin(object):
585101
     def _init_check(self):
585101
         # an internal LV should have no parents
585101
         if self._parent_lv and self._parents:
585101
-            raise errors.DeviceError("an internal LV should have no parents")
585101
+            raise ValueError("an internal LV should have no parents")
585101
 
585101
     @property
585101
     def is_internal_lv(self):
f37345
@@ -1289,7 +1289,7 @@ class LVMInternalLogicalVolumeMixin(object):
585101
 
585101
     @readonly.setter
585101
     def readonly(self, value):  # pylint: disable=unused-argument
585101
-        raise errors.DeviceError("Cannot make an internal LV read-write")
585101
+        raise ValueError("Cannot make an internal LV read-write")
585101
 
585101
     @property
585101
     def type(self):
f37345
@@ -1325,7 +1325,7 @@ class LVMInternalLogicalVolumeMixin(object):
585101
     def _check_parents(self):
585101
         # an internal LV should have no parents
585101
         if self._parents:
585101
-            raise errors.DeviceError("an internal LV should have no parents")
585101
+            raise ValueError("an internal LV should have no parents")
585101
 
585101
     def _add_to_parents(self):
585101
         # nothing to do here, an internal LV has no parents (in the DeviceTree's
f37345
@@ -1335,13 +1335,13 @@ class LVMInternalLogicalVolumeMixin(object):
585101
     # internal LVs follow different rules limitting size
585101
     def _set_size(self, newsize):
585101
         if not isinstance(newsize, Size):
585101
-            raise AttributeError("new size must of type Size")
585101
+            raise ValueError("new size must of type Size")
585101
 
585101
         if not self.takes_extra_space:
585101
             if newsize <= self.parent_lv.size:  # pylint: disable=no-member
585101
                 self._size = newsize  # pylint: disable=attribute-defined-outside-init
585101
             else:
585101
-                raise errors.DeviceError("Internal LV cannot be bigger than its parent LV")
585101
+                raise ValueError("Internal LV cannot be bigger than its parent LV")
585101
         else:
585101
             # same rules apply as for any other LV
585101
             raise NotTypeSpecific()
f37345
@@ -1419,18 +1419,18 @@ class LVMSnapshotMixin(object):
585101
             return
585101
 
585101
         if self.origin and not isinstance(self.origin, LVMLogicalVolumeDevice):
585101
-            raise errors.DeviceError("lvm snapshot origin must be a logical volume")
585101
+            raise ValueError("lvm snapshot origin must be a logical volume")
585101
         if self.vorigin and not self.exists:
585101
-            raise errors.DeviceError("only existing vorigin snapshots are supported")
585101
+            raise ValueError("only existing vorigin snapshots are supported")
585101
 
585101
         if isinstance(self.origin, LVMLogicalVolumeDevice) and \
585101
            isinstance(self.parents[0], LVMVolumeGroupDevice) and \
585101
            self.origin.vg != self.parents[0]:
585101
-            raise errors.DeviceError("lvm snapshot and origin must be in the same vg")
585101
+            raise ValueError("lvm snapshot and origin must be in the same vg")
585101
 
585101
         if self.is_thin_lv:
585101
             if self.origin and self.size and not self.exists:
585101
-                raise errors.DeviceError("thin snapshot size is determined automatically")
585101
+                raise ValueError("thin snapshot size is determined automatically")
585101
 
585101
     @property
585101
     def is_snapshot_lv(self):
f37345
@@ -1606,7 +1606,7 @@ class LVMThinPoolMixin(object):
585101
     def _check_from_lvs(self):
585101
         if self._from_lvs:
585101
             if len(self._from_lvs) != 2:
585101
-                raise errors.DeviceError("two LVs required to create a thin pool")
585101
+                raise ValueError("two LVs required to create a thin pool")
585101
 
585101
     def _convert_from_lvs(self):
585101
         data_lv, metadata_lv = self._from_lvs
f37345
@@ -1652,7 +1652,7 @@ class LVMThinPoolMixin(object):
585101
     def _add_log_vol(self, lv):
585101
         """ Add an LV to this pool. """
585101
         if lv in self._lvs:
585101
-            raise errors.DeviceError("lv is already part of this vg")
585101
+            raise ValueError("lv is already part of this vg")
585101
 
585101
         # TODO: add some checking to prevent overcommit for preexisting
585101
         self.vg._add_log_vol(lv)
f37345
@@ -1663,7 +1663,7 @@ class LVMThinPoolMixin(object):
585101
     def _remove_log_vol(self, lv):
585101
         """ Remove an LV from this pool. """
585101
         if lv not in self._lvs:
585101
-            raise errors.DeviceError("specified lv is not part of this vg")
585101
+            raise ValueError("specified lv is not part of this vg")
585101
 
585101
         self._lvs.remove(lv)
585101
         self.vg._remove_log_vol(lv)
f37345
@@ -1772,14 +1772,14 @@ class LVMThinLogicalVolumeMixin(object):
585101
         """Check that this device has parents as expected"""
585101
         if isinstance(self.parents, (list, ParentList)):
585101
             if len(self.parents) != 1:
585101
-                raise errors.DeviceError("constructor requires a single thin-pool LV")
585101
+                raise ValueError("constructor requires a single thin-pool LV")
585101
 
585101
             container = self.parents[0]
585101
         else:
585101
             container = self.parents
585101
 
585101
         if not container or not isinstance(container, LVMLogicalVolumeDevice) or not container.is_thin_pool:
585101
-            raise errors.DeviceError("constructor requires a thin-pool LV")
585101
+            raise ValueError("constructor requires a thin-pool LV")
585101
 
585101
     @property
585101
     def is_thin_lv(self):
f37345
@@ -1816,7 +1816,7 @@ class LVMThinLogicalVolumeMixin(object):
585101
 
585101
     def _set_size(self, newsize):
585101
         if not isinstance(newsize, Size):
585101
-            raise AttributeError("new size must of type Size")
585101
+            raise ValueError("new size must of type Size")
585101
 
585101
         newsize = self.vg.align(newsize)
585101
         newsize = self.vg.align(util.numeric_type(newsize))
f37345
@@ -2499,7 +2499,7 @@ class LVMLogicalVolumeDevice(LVMLogicalVolumeBase, LVMInternalLogicalVolumeMixin
585101
             container = self.parents
585101
 
585101
         if not isinstance(container, LVMVolumeGroupDevice):
585101
-            raise AttributeError("constructor requires a LVMVolumeGroupDevice")
585101
+            raise ValueError("constructor requires a LVMVolumeGroupDevice")
585101
 
585101
     @type_specific
585101
     def _add_to_parents(self):
f37345
@@ -2510,12 +2510,12 @@ class LVMLogicalVolumeDevice(LVMLogicalVolumeBase, LVMInternalLogicalVolumeMixin
585101
     @type_specific
585101
     def _check_from_lvs(self):
585101
         """Check the LVs to create this LV from"""
585101
-        raise errors.DeviceError("Cannot create a new LV of type '%s' from other LVs" % self.seg_type)
585101
+        raise ValueError("Cannot create a new LV of type '%s' from other LVs" % self.seg_type)
585101
 
585101
     @type_specific
585101
     def _convert_from_lvs(self):
585101
         """Convert the LVs to create this LV from into its internal LVs"""
585101
-        raise errors.DeviceError("Cannot create a new LV of type '%s' from other LVs" % self.seg_type)
585101
+        raise ValueError("Cannot create a new LV of type '%s' from other LVs" % self.seg_type)
585101
 
585101
     @property
585101
     def external_dependencies(self):
f37345
@@ -2535,7 +2535,7 @@ class LVMLogicalVolumeDevice(LVMLogicalVolumeBase, LVMInternalLogicalVolumeMixin
585101
     @type_specific
585101
     def _set_size(self, newsize):
585101
         if not isinstance(newsize, Size):
585101
-            raise AttributeError("new size must be of type Size")
585101
+            raise ValueError("new size must be of type Size")
585101
 
585101
         newsize = self.vg.align(newsize)
585101
         log.debug("trying to set lv %s size to %s", self.name, newsize)
f37345
@@ -2544,7 +2544,7 @@ class LVMLogicalVolumeDevice(LVMLogicalVolumeBase, LVMInternalLogicalVolumeMixin
585101
         # space for it. A similar reasoning applies to shrinking the LV.
585101
         if not self.exists and newsize > self.size and newsize > self.vg.free_space + self.vg_space_used:
585101
             log.error("failed to set size: %s short", newsize - (self.vg.free_space + self.vg_space_used))
585101
-            raise errors.DeviceError("not enough free space in volume group")
585101
+            raise ValueError("not enough free space in volume group")
585101
 
585101
         LVMLogicalVolumeBase._set_size(self, newsize)
585101
 
f37345
@@ -2910,7 +2910,7 @@ class LVMCache(Cache):
585101
                 spec.size = spec.pv.format.free
585101
                 space_to_assign -= spec.pv.format.free
585101
         if space_to_assign > 0:
585101
-            raise errors.DeviceError("Not enough free space in the PVs for this cache: %s short" % space_to_assign)
585101
+            raise ValueError("Not enough free space in the PVs for this cache: %s short" % space_to_assign)
585101
 
585101
     @property
585101
     def size(self):
f37345
diff --git a/tests/unit_tests/devices_test/lvm_test.py b/tests/unit_tests/devices_test/lvm_test.py
f37345
index 47613fdc..995c2da4 100644
f37345
--- a/tests/unit_tests/devices_test/lvm_test.py
f37345
+++ b/tests/unit_tests/devices_test/lvm_test.py
f37345
@@ -32,10 +32,10 @@ class LVMDeviceTest(unittest.TestCase):
585101
         lv = LVMLogicalVolumeDevice("testlv", parents=[vg],
585101
                                     fmt=blivet.formats.get_format("xfs"))
585101
 
585101
-        with six.assertRaisesRegex(self, errors.DeviceError, "lvm snapshot origin must be a logical volume"):
585101
+        with six.assertRaisesRegex(self, ValueError, "lvm snapshot origin must be a logical volume"):
585101
             LVMLogicalVolumeDevice("snap1", parents=[vg], origin=pv)
585101
 
585101
-        with six.assertRaisesRegex(self, errors.DeviceError, "only existing vorigin snapshots are supported"):
585101
+        with six.assertRaisesRegex(self, ValueError, "only existing vorigin snapshots are supported"):
585101
             LVMLogicalVolumeDevice("snap1", parents=[vg], vorigin=True)
585101
 
585101
         lv.exists = True
f37345
@@ -60,7 +60,7 @@ class LVMDeviceTest(unittest.TestCase):
585101
         pool = LVMLogicalVolumeDevice("pool1", parents=[vg], size=Size("500 MiB"), seg_type="thin-pool")
585101
         thinlv = LVMLogicalVolumeDevice("thinlv", parents=[pool], size=Size("200 MiB"), seg_type="thin")
585101
 
585101
-        with six.assertRaisesRegex(self, errors.DeviceError, "lvm snapshot origin must be a logical volume"):
585101
+        with six.assertRaisesRegex(self, ValueError, "lvm snapshot origin must be a logical volume"):
585101
             LVMLogicalVolumeDevice("snap1", parents=[pool], origin=pv, seg_type="thin")
585101
 
585101
         # now make the constructor succeed so we can test some properties
f37345
@@ -310,21 +310,21 @@ class LVMDeviceTest(unittest.TestCase):
585101
         vg = LVMVolumeGroupDevice("testvg", parents=[pv, pv2])
585101
 
585101
         # pvs have to be specified for non-linear LVs
585101
-        with self.assertRaises(errors.DeviceError):
585101
+        with self.assertRaises(ValueError):
585101
             lv = LVMLogicalVolumeDevice("testlv", parents=[vg], size=Size("512 MiB"),
585101
                                         fmt=blivet.formats.get_format("xfs"),
585101
                                         exists=False, seg_type="raid1")
585101
-        with self.assertRaises(errors.DeviceError):
585101
+        with self.assertRaises(ValueError):
585101
             lv = LVMLogicalVolumeDevice("testlv", parents=[vg], size=Size("512 MiB"),
585101
                                         fmt=blivet.formats.get_format("xfs"),
585101
                                         exists=False, seg_type="striped")
585101
 
585101
         # no or complete specification has to be given for linear LVs
585101
-        with self.assertRaises(errors.DeviceError):
585101
+        with self.assertRaises(ValueError):
585101
             lv = LVMLogicalVolumeDevice("testlv", parents=[vg], size=Size("512 MiB"),
585101
                                         fmt=blivet.formats.get_format("xfs"),
585101
                                         exists=False, pvs=[pv])
585101
-        with self.assertRaises(errors.DeviceError):
585101
+        with self.assertRaises(ValueError):
585101
             pv_spec = LVPVSpec(pv, Size("256 MiB"))
585101
             pv_spec2 = LVPVSpec(pv2, Size("250 MiB"))
585101
             lv = LVMLogicalVolumeDevice("testlv", parents=[vg], size=Size("512 MiB"),
585101
-- 
f37345
2.37.3
585101