Revision 5859dad6

b/test/py/cmdlib/cluster_unittest.py
815 815
    self.assertEqual(enabled_disk_templates,
816 816
                     self.cluster.enabled_disk_templates)
817 817

  
818
  def testEnabledDiskTemplatesVsIpolicy(self):
819
    enabled_disk_templates = [constants.DT_DISKLESS, constants.DT_PLAIN]
820
    op = opcodes.OpClusterSetParams(
821
           enabled_disk_templates=enabled_disk_templates,
822
           ipolicy={constants.IPOLICY_DTS: [constants.DT_FILE]})
823
    self.ExecOpCodeExpectOpPrereqError(op, "but not enabled on the cluster")
824

  
818 825
  def testDisablingDiskTemplatesOfInstances(self):
819 826
    old_disk_templates = [constants.DT_DISKLESS, constants.DT_PLAIN]
820 827
    self.cfg.SetEnabledDiskTemplates(old_disk_templates)
/dev/null
1
#!/usr/bin/python
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
"""Script for unittesting the cmdlib module 'common'"""
23

  
24

  
25
import unittest
26

  
27
from ganeti.cmdlib import common
28
from ganeti import constants
29
from ganeti import errors
30

  
31
import testutils
32

  
33

  
34
class TestCheckIpolicy(unittest.TestCase):
35

  
36
  def testAllTemplatesEnabled(self):
37
    allowed_disk_templates = [constants.DT_PLAIN]
38
    ipolicy = {constants.IPOLICY_DTS: allowed_disk_templates}
39
    enabled_disk_templates = [constants.DT_PLAIN, constants.DT_DRBD8]
40
    common.CheckIpolicyVsDiskTemplates(
41
        ipolicy, enabled_disk_templates)
42

  
43
  def testSomeTemplatesUnenabled(self):
44
    allowed_disk_templates = [constants.DT_PLAIN, constants.DT_DISKLESS]
45
    ipolicy = {constants.IPOLICY_DTS: allowed_disk_templates}
46
    enabled_disk_templates = [constants.DT_PLAIN, constants.DT_DRBD8]
47
    self.assertRaises(
48
        errors.OpPrereqError,
49
        common.CheckIpolicyVsDiskTemplates,
50
        ipolicy, enabled_disk_templates)
51

  
52

  
53
if __name__ == "__main__":
54
  testutils.GanetiTestProgram()

Also available in: Unified diff