1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2009-2012 10gen, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Test class of 3Par Client handling CPG"""
import sys, os
sys.path.insert(0,os.path.realpath(os.path.abspath('../')))
from hp3parclient import client, exceptions
import unittest
import test_HP3ParClient_base
DOMAIN = 'UNIT_TEST_DOMAIN'
CPG_NAME1 = 'CPG1_UNIT_TEST'
CPG_NAME2 = 'CPG2_UNIT_TEST'
class HP3ParClientCPGTestCase(test_HP3ParClient_base.HP3ParClientBaseTestCase):
def setUp(self):
super(HP3ParClientCPGTestCase, self).setUp()
def tearDown(self):
try :
self.cl.deleteCPG(CPG_NAME1)
except :
pass
try :
self.cl.deleteCPG(CPG_NAME2)
except :
pass
# very last, tear down base class
super(HP3ParClientCPGTestCase, self).tearDown()
def test_1_create_CPG(self):
self.printHeader('create_CPG')
#add one
optional = {'domain': DOMAIN}
name = CPG_NAME1
self.cl.createCPG(name, optional)
#check
cpg1 = self.cl.getCPG(name)
self.assertIsNotNone(cpg1)
cpgName = cpg1['name']
self.assertEqual(name, cpgName)
#add another
name = CPG_NAME2
optional2 = optional.copy()
more_optional = {'LDLayout':{'RAIDType':2}}
optional2.update(more_optional)
self.cl.createCPG(name, optional2)
#check
cpg2 = self.cl.getCPG(name)
self.assertIsNotNone(cpg2)
cpgName = cpg2['name']
self.assertEqual(name, cpgName)
self.printFooter('create_CPG')
def test_1_create_CPG_badDomain(self):
self.printHeader('create_CPG_badDomain')
optional = {'domain': 'BAD_DOMAIN'}
self.assertRaises(exceptions.HTTPNotFound, self.cl.createCPG, CPG_NAME1, optional)
self.printFooter('create_CPG_badDomain')
def test_1_create_CPG_dup(self):
self.printHeader('create_CPG_dup')
optional = {'domain': DOMAIN}
name = CPG_NAME1
self.cl.createCPG(name, optional)
self.assertRaises(exceptions.HTTPConflict, self.cl.createCPG, CPG_NAME1, optional)
self.printFooter('create_CPG_dup')
def test_1_create_CPG_badParams(self):
self.printHeader('create_CPG_badParams')
optional = {'domainBad': 'UNIT_TEST'}
self.assertRaises(exceptions.HTTPBadRequest, self.cl.createCPG, CPG_NAME1, optional)
self.printFooter('create_CPG_badParams')
def test_1_create_CPG_badParams2(self):
self.printHeader('create_CPG_badParams2')
optional = {'domain': 'UNIT_TEST'}
more_optional = {'LDLayout':{'RAIDBadType':1}}
optional.update(more_optional)
self.assertRaises(exceptions.HTTPBadRequest, self.cl.createCPG, CPG_NAME1, optional)
self.printFooter('create_CPG_badParams2')
def test_2_get_CPG_bad(self):
self.printHeader('get_CPG_bad')
self.assertRaises(exceptions.HTTPNotFound, self.cl.getCPG, 'BadName')
self.printFooter('get_CPG_bad')
def test_2_get_CPGs(self):
self.printHeader('get_CPGs')
optional = {'domain': DOMAIN}
name = CPG_NAME1
self.cl.createCPG(name, optional)
cpgs = self.cl.getCPGs()
self.assertGreater(len(cpgs), 0, 'getCPGs failed with no CPGs')
self.assertTrue(self.findInDict(cpgs['members'], 'name', CPG_NAME1))
self.printFooter('get_CPGs')
def test_3_delete_CPG_nonExist(self):
self.printHeader('delete_CPG_nonExist')
self.assertRaises(exceptions.HTTPNotFound, self.cl.deleteCPG, 'NonExistCPG')
self.printFooter('delete_CPG_nonExist')
def test_3_delete_CPGs(self):
self.printHeader('delete_CPGs')
#add one
optional = {'domain': DOMAIN}
self.cl.createCPG(CPG_NAME1, optional)
cpg = self.cl.getCPG(CPG_NAME1)
self.assertTrue(cpg['name'], CPG_NAME1)
cpgs = self.cl.getCPGs()
if cpgs and cpgs['total'] > 0:
for cpg in cpgs['members']:
if cpg['name'] == CPG_NAME1:
#pprint.pprint("Deleting CPG %s " % cpg['name'])
self.cl.deleteCPG(cpg['name'])
#check
self.assertRaises(exceptions.HTTPNotFound, self.cl.getCPG, CPG_NAME1)
self.printFooter('delete_CPGs')
#testing
#suite = unittest.TestLoader().loadTestsFromTestCase(HP3ParClientCPGTestCase)
#unittest.TextTestRunner(verbosity=2).run(suite)
|