Statistics
| Branch: | Tag: | Revision:

root / test / mocks.py @ 825e13df

History | View | Annotate | Download (2.1 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007 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
"""Module implementing a fake ConfigWriter"""
23

    
24
from ganeti import utils
25

    
26

    
27
FAKE_CLUSTER_KEY = ("AAAAB3NzaC1yc2EAAAABIwAAAQEAsuGLw70et3eApJ/ZEJkAVZogIrm"
28
                    "EYPQJvb1ll52Ti0nr80Wztxibaa8bYGzY22rQIAloIlePeTGcJceAYK"
29
                    "PZgm0I/Mp2EUGg2NVsQZIzasz6cW0vYuiUbF9GkVlROmvOAykT58RfM"
30
                    "L8RhPrjrQxZc+NXgZtgDugYSZcXHDLUyWM1xKUoYy0MqYG6ZXCC/Zno"
31
                    "RThhmjOJgEmvwrMcTWQjmzH3NeJAxaBsEHR8tiVZ/Y23C/ULWLyNT6R"
32
                    "fB+DE7IovsMQaS+83AK1Teg7RWNyQczachatf/JT8VjUqFYjJepPjMb"
33
                    "vYdB2nQds7/+Bf40C/OpbvnAxna1kVtgFHAo18cQ==")
34

    
35

    
36
class FakeConfig:
37
    """Fake configuration object"""
38

    
39
    def IsCluster(self):
40
        return True
41

    
42
    def GetNodeList(self):
43
        return ["a", "b", "c"]
44

    
45
    def GetHostKey(self):
46
        return FAKE_CLUSTER_KEY
47

    
48
    def GetClusterName(self):
49
        return "test.cluster"
50

    
51
    def GetMasterNode(self):
52
        return utils.HostInfo().name
53

    
54

    
55
class FakeProc:
56
    """Fake processor object"""
57

    
58
    def LogWarning(self, msg, *args, **kwargs):
59
        pass
60

    
61
    def LogInfo(self, msg, *args, **kwargs):
62
        pass
63

    
64
    def LogStep(self, current, total, message):
65
        pass
66

    
67

    
68
class FakeContext:
69
    """Fake context object"""
70

    
71
    def __init__(self):
72
        self.cfg = FakeConfig()
73
        # TODO: decide what features a mock Ganeti Lock Manager must have
74
        self.GLM = None