Statistics
| Branch: | Tag: | Revision:

root / test / py / cmdlib / testsupport / lock_manager_mock.py @ f3cb57d5

History | View | Annotate | Download (1.8 kB)

1
#
2
#
3

    
4
# Copyright (C) 2013 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Support for mocking the lock manager"""
23

    
24

    
25
from ganeti import locking
26

    
27

    
28
class LockManagerMock(locking.GanetiLockManager):
29
  """Mocked lock manager for tests.
30

31
  """
32
  def __init__(self):
33
    # reset singleton instance, there is a separate lock manager for every test
34
    # pylint: disable=W0212
35
    self.__class__._instance = None
36

    
37
    super(LockManagerMock, self).__init__([], [], [], [])
38

    
39
  def AddLocksFromConfig(self, cfg):
40
    """Create locks for all entities in the given configuration.
41

42
    @type cfg: ganeti.config.ConfigWriter
43
    """
44
    try:
45
      self.acquire(locking.LEVEL_CLUSTER, locking.BGL)
46

    
47
      for node_uuid in cfg.GetNodeList():
48
        self.add(locking.LEVEL_NODE, node_uuid)
49
        self.add(locking.LEVEL_NODE_RES, node_uuid)
50
      for group_uuid in cfg.GetNodeGroupList():
51
        self.add(locking.LEVEL_NODEGROUP, group_uuid)
52
      for inst in cfg.GetAllInstancesInfo().values():
53
        self.add(locking.LEVEL_INSTANCE, inst.name)
54
      for net_uuid in cfg.GetNetworkList():
55
        self.add(locking.LEVEL_NETWORK, net_uuid)
56
    finally:
57
      self.release(locking.LEVEL_CLUSTER, locking.BGL)