Statistics
| Branch: | Tag: | Revision:

root / test / ganeti.constants_unittest.py @ b8d51bb2

History | View | Annotate | Download (5.2 kB)

1
#!/usr/bin/python
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008 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
# 0.0510-1301, USA.
20

    
21

    
22
"""Script for unittesting the constants module"""
23

    
24

    
25
import unittest
26
import re
27
import itertools
28

    
29
from ganeti import constants
30
from ganeti import locking
31
from ganeti import utils
32

    
33
import testutils
34

    
35

    
36
class TestConstants(unittest.TestCase):
37
  """Constants tests"""
38

    
39
  def testConfigVersion(self):
40
    self.failUnless(constants.CONFIG_MAJOR >= 0 and
41
                    constants.CONFIG_MAJOR <= 99)
42
    self.failUnless(constants.CONFIG_MINOR >= 0 and
43
                    constants.CONFIG_MINOR <= 99)
44
    self.failUnless(constants.CONFIG_REVISION >= 0 and
45
                    constants.CONFIG_REVISION <= 9999)
46
    self.failUnless(constants.CONFIG_VERSION >= 0 and
47
                    constants.CONFIG_VERSION <= 99999999)
48

    
49
    self.failUnless(constants.BuildVersion(0, 0, 0) == 0)
50
    self.failUnless(constants.BuildVersion(10, 10, 1010) == 10101010)
51
    self.failUnless(constants.BuildVersion(12, 34, 5678) == 12345678)
52
    self.failUnless(constants.BuildVersion(99, 99, 9999) == 99999999)
53

    
54
    self.failUnless(constants.SplitVersion(00000000) == (0, 0, 0))
55
    self.failUnless(constants.SplitVersion(10101010) == (10, 10, 1010))
56
    self.failUnless(constants.SplitVersion(12345678) == (12, 34, 5678))
57
    self.failUnless(constants.SplitVersion(99999999) == (99, 99, 9999))
58
    self.failUnless(constants.SplitVersion(constants.CONFIG_VERSION) ==
59
                    (constants.CONFIG_MAJOR, constants.CONFIG_MINOR,
60
                     constants.CONFIG_REVISION))
61

    
62
  def testDiskStatus(self):
63
    self.failUnless(constants.LDS_OKAY < constants.LDS_UNKNOWN)
64
    self.failUnless(constants.LDS_UNKNOWN < constants.LDS_FAULTY)
65

    
66
  def testClockSkew(self):
67
    self.failUnless(constants.NODE_MAX_CLOCK_SKEW <
68
                    (0.8 * constants.CONFD_MAX_CLOCK_SKEW))
69

    
70
  def testSslCertExpiration(self):
71
    self.failUnless(constants.SSL_CERT_EXPIRATION_ERROR <
72
                    constants.SSL_CERT_EXPIRATION_WARN)
73

    
74
  def testOpCodePriority(self):
75
    self.failUnless(constants.OP_PRIO_LOWEST > constants.OP_PRIO_LOW)
76
    self.failUnless(constants.OP_PRIO_LOW > constants.OP_PRIO_NORMAL)
77
    self.failUnlessEqual(constants.OP_PRIO_NORMAL, locking._DEFAULT_PRIORITY)
78
    self.failUnlessEqual(constants.OP_PRIO_DEFAULT, locking._DEFAULT_PRIORITY)
79
    self.failUnless(constants.OP_PRIO_NORMAL > constants.OP_PRIO_HIGH)
80
    self.failUnless(constants.OP_PRIO_HIGH > constants.OP_PRIO_HIGHEST)
81

    
82

    
83
class TestExportedNames(unittest.TestCase):
84
  _VALID_NAME_RE = re.compile(r"^[A-Z][A-Z0-9_]+$")
85
  _BUILTIN_NAME_RE = re.compile(r"^__\w+__$")
86
  _EXCEPTIONS = frozenset([
87
    "SplitVersion",
88
    "BuildVersion",
89
    ])
90

    
91
  def test(self):
92
    wrong = \
93
      set(itertools.ifilterfalse(self._BUILTIN_NAME_RE.match,
94
            itertools.ifilterfalse(self._VALID_NAME_RE.match,
95
                                   dir(constants))))
96
    wrong -= self._EXCEPTIONS
97
    self.assertFalse(wrong,
98
                     msg=("Invalid names exported from constants module: %s" %
99
                          utils.CommaJoin(sorted(wrong))))
100

    
101

    
102
class TestParameterNames(unittest.TestCase):
103
  """HV/BE parameter tests"""
104
  VALID_NAME = re.compile("^[a-zA-Z_][a-zA-Z0-9_]*$")
105

    
106
  def testNoDashes(self):
107
    for kind, source in [('hypervisor', constants.HVS_PARAMETER_TYPES),
108
                         ('backend', constants.BES_PARAMETER_TYPES),
109
                         ('nic', constants.NICS_PARAMETER_TYPES),
110
                         ("instdisk", constants.IDISK_PARAMS_TYPES),
111
                         ("instnic", constants.INIC_PARAMS_TYPES),
112
                        ]:
113
      for key in source:
114
        self.failUnless(self.VALID_NAME.match(key),
115
                        "The %s parameter '%s' contains invalid characters" %
116
                        (kind, key))
117

    
118

    
119
class TestConfdConstants(unittest.TestCase):
120
  """Test the confd constants"""
121

    
122
  def testFourCc(self):
123
    self.failUnlessEqual(len(constants.CONFD_MAGIC_FOURCC), 4,
124
                         "Invalid fourcc len, should be 4")
125

    
126
  def _IsUniqueSequence(self, sequence):
127
    seen = set()
128
    for member in sequence:
129
      if member in seen:
130
        return False
131
      seen.add(member)
132
    return True
133

    
134
  def testReqs(self):
135
    self.failUnless(self._IsUniqueSequence(constants.CONFD_REQS),
136
                    "Duplicated confd request code")
137

    
138
  def testReplStatuses(self):
139
    self.failUnless(self._IsUniqueSequence(constants.CONFD_REPL_STATUSES),
140
                    "Duplicated confd reply status code")
141

    
142

    
143
if __name__ == '__main__':
144
  testutils.GanetiTestProgram()