当前位置: 首页>>代码示例>>Python>>正文


Python TestDisk.name方法代码示例

本文整理汇总了Python中ovs.dal.hybrids.t_testdisk.TestDisk.name方法的典型用法代码示例。如果您正苦于以下问题:Python TestDisk.name方法的具体用法?Python TestDisk.name怎么用?Python TestDisk.name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ovs.dal.hybrids.t_testdisk.TestDisk的用法示例。


在下文中一共展示了TestDisk.name方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_datalistactions

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_datalistactions(self):
     """
     Validates all actions that can be executed agains DataLists
     """
     machine = TestMachine()
     machine.name = 'machine'
     machine.save()
     disk1 = TestDisk()
     disk1.name = 'disk1'
     disk1.machine = machine
     disk1.save()
     disk2 = TestDisk()
     disk2.name = 'disk2'
     disk2.machine = machine
     disk2.save()
     disk3 = TestDisk()
     disk3.name = 'disk3'
     disk3.machine = machine
     disk3.save()
     self.assertEqual(machine.disks.count(disk1), 1, 'Disk should be available only once')
     self.assertGreaterEqual(machine.disks.index(disk1), 0, 'We should retreive an index')
     machine.disks.sort()
     guid = machine.disks[0].guid
     machine.disks.reverse()
     self.assertEqual(machine.disks[-1].guid, guid, 'Reverse and sort should work')
     machine.disks.sort()
     self.assertEqual(machine.disks[0].guid, guid, 'And the guid should be first again')
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:29,代码来源:test_basic.py

示例2: test_nofilterquery

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_nofilterquery(self):
     """
     Validates whether empty queries return the full resultset
     """
     disk1 = TestDisk()
     disk1.name = 'disk 1'
     disk1.save()
     disk2 = TestDisk()
     disk2.name = 'disk 2'
     disk2.save()
     amount = DataList(key='some_list',
                       query={'object': TestDisk,
                              'data': DataList.select.COUNT,
                              'query': {'type': DataList.where_operator.AND,
                                        'items': []}}).data
     self.assertEqual(amount, 2, 'There should be two disks ({0})'.format(amount))
     disk3 = TestDisk()
     disk3.name = 'disk 3'
     disk3.save()
     amount = DataList(key='some_list',
                       query={'object': TestDisk,
                              'data': DataList.select.COUNT,
                              'query': {'type': DataList.where_operator.AND,
                                        'items': []}}).data
     self.assertEqual(amount, 3, 'There should be three disks ({0})'.format(amount))
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:27,代码来源:test_basic.py

示例3: test_saveorder

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_saveorder(self):
     """
     Validates whether the order of saving related objects doesn't matter
     """
     machine1 = TestMachine()
     machine1.name = 'machine'
     disk1_1 = TestDisk()
     disk1_1.name = 'disk1'
     disk1_1.machine = machine1
     disk1_1.save()
     disk1_2 = TestDisk()
     disk1_2.name = 'disk2'
     disk1_2.machine = machine1
     disk1_2.save()
     machine1.save()
     self.assertEqual(len(machine1.disks), 2, 'There should be two disks. {0}'.format(len(machine1.disks)))
     machine2 = TestMachine()
     machine2.name = 'machine'
     machine2.save()
     disk2_1 = TestDisk()
     disk2_1.name = 'disk1'
     disk2_1.machine = machine2
     disk2_1.save()
     disk2_2 = TestDisk()
     disk2_2.name = 'disk2'
     disk2_2.machine = machine2
     disk2_2.save()
     self.assertEqual(len(machine2.disks), 2, 'There should be two disks. {0}'.format(len(machine2.disks)))
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:30,代码来源:test_basic.py

示例4: test_ownrelations

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_ownrelations(self):
     """
     Validates whether relations to the object itself are working
     """
     pdisk = TestDisk()
     pdisk.name = 'parent'
     pdisk.save()
     cdisk1 = TestDisk()
     cdisk1.name = 'child 1'
     cdisk1.size = 100
     cdisk1.parent = pdisk
     cdisk1.save()
     cdisk2 = TestDisk()
     cdisk2.name = 'child 2'
     cdisk2.size = 100
     cdisk2.parent = pdisk
     cdisk2.save()
     self.assertEqual(len(pdisk.children), 2, 'There should be 2 children ({0})'.format(len(pdisk.children)))
     self.assertEqual(cdisk1.parent.name, 'parent', 'Parent should be loaded correctly')
     data = DataList({'object': TestDisk,
                      'data': DataList.select.GUIDS,
                      'query': {'type': DataList.where_operator.AND,
                                'items': [('parent.name', DataList.operator.EQUALS, 'parent')]}}).data
     datalist = DataObjectList(data, TestDisk)
     self.assertEqual(len(datalist), 2, 'There should be two items ({0})'.format(len(datalist)))
     cdisk2.parent = None
     cdisk2.save()
     data = DataList({'object': TestDisk,
                      'data': DataList.select.GUIDS,
                      'query': {'type': DataList.where_operator.AND,
                                'items': [('parent.name', DataList.operator.EQUALS, 'parent')]}}).data
     datalist = DataObjectList(data, TestDisk)
     self.assertEqual(len(datalist), 1, 'There should be one item ({0})'.format(len(datalist)))
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:35,代码来源:test_basic.py

示例5: test_relationcache

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_relationcache(self):
     """
     Validates whether the relational properties are cached correctly, and whether
     they are invalidated when required
     """
     machine = TestMachine()
     machine.name = 'machine'
     machine.save()
     disk1 = TestDisk()
     disk1.name = 'disk1'
     disk1.save()
     disk2 = TestDisk()
     disk2.name = 'disk2'
     disk2.save()
     disk3 = TestDisk()
     disk3.name = 'disk3'
     disk3.save()
     self.assertEqual(len(machine.disks), 0, 'There should be no disks on the machine')
     disk1.machine = machine
     disk1.save()
     self.assertEqual(len(machine.disks), 1, 'There should be 1 disks on the machine')
     disk2.machine = machine
     disk2.save()
     self.assertEqual(len(machine.disks), 2, 'There should be 2 disks on the machine')
     disk3.machine = machine
     disk3.save()
     self.assertEqual(len(machine.disks), 3, 'There should be 3 disks on the machine')
     machine.disks[0].name = 'disk1_'
     machine.disks[1].name = 'disk2_'
     machine.disks[2].name = 'disk3_'
     disk1.machine = None
     disk1.save()
     disk2.machine = None
     disk2.save()
     self.assertEqual(len(machine.disks), 1, 'There should be 1 disks on the machine')
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:37,代码来源:test_basic.py

示例6: test_mandatory_fields

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_mandatory_fields(self):
     """
     Validates whether mandatory properties and relations work
     """
     machine = TestMachine()
     machine.extended = 'extended'
     machine.name = 'machine'
     machine.save()
     disk = TestDisk()
     # Modify relation to mandatory
     [_ for _ in disk._relations if _.name == 'machine'][0].mandatory = True
     # Continue test
     disk.name = None
     with self.assertRaises(MissingMandatoryFieldsException) as exception:
         disk.save()
     self.assertIn('name', exception.exception.message, 'Field name should be in exception message: {0}'.format(exception.exception.message))
     self.assertIn('machine', exception.exception.message, 'Field machine should be in exception message: {0}'.format(exception.exception.message))
     disk.name = 'disk'
     disk.machine = machine
     disk.save()
     disk.description = 'test'
     disk.storage = machine
     disk.save()
     # Restore relation
     [_ for _ in disk._relations if _.name == 'machine'][0].mandatory = False
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:27,代码来源:test_basic.py

示例7: test_listcache

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_listcache(self):
     """
     Validates whether lists are cached and invalidated correctly
     """
     keys = ['list_cache', None]
     for key in keys:
         disk0 = TestDisk()
         disk0.name = 'disk 0'
         disk0.save()
         list_cache = DataList(key=key,
                               query={'object': TestDisk,
                                      'data': DataList.select.COUNT,
                                      'query': {'type': DataList.where_operator.AND,
                                                'items': [('machine.name', DataList.operator.EQUALS, 'machine')]}})  # noqa
         self.assertFalse(list_cache.from_cache, 'List should not be loaded from cache (mode: {0})'.format(key))
         self.assertEqual(list_cache.data, 0, 'List should find no entries (mode: {0})'.format(key))
         machine = TestMachine()
         machine.name = 'machine'
         machine.save()
         disk1 = TestDisk()
         disk1.name = 'disk 1'
         disk1.machine = machine
         disk1.save()
         list_cache = DataList(key=key,
                               query={'object': TestDisk,
                                      'data': DataList.select.COUNT,
                                      'query': {'type': DataList.where_operator.AND,
                                                'items': [('machine.name', DataList.operator.EQUALS, 'machine')]}})  # noqa
         self.assertFalse(list_cache.from_cache, 'List should not be loaded from cache (mode: {0})'.format(key))
         self.assertEqual(list_cache.data, 1, 'List should find one entry (mode: {0})'.format(key))
         list_cache = DataList(key=key,
                               query={'object': TestDisk,
                                      'data': DataList.select.COUNT,
                                      'query': {'type': DataList.where_operator.AND,
                                                'items': [('machine.name', DataList.operator.EQUALS, 'machine')]}})  # noqa
         self.assertTrue(list_cache.from_cache, 'List should be loaded from cache (mode: {0})'.format(key))
         disk2 = TestDisk()
         disk2.machine = machine
         disk2.name = 'disk 2'
         disk2.save()
         list_cache = DataList(key=key,
                               query={'object': TestDisk,
                                      'data': DataList.select.COUNT,
                                      'query': {'type': DataList.where_operator.AND,
                                                'items': [('machine.name', DataList.operator.EQUALS, 'machine')]}})  # noqa
         self.assertFalse(list_cache.from_cache, 'List should not be loaded from cache (mode: {0})'.format(key))
         self.assertEqual(list_cache.data, 2, 'List should find two entries (mode: {0})'.format(key))
         machine.name = 'x'
         machine.save()
         list_cache = DataList(key=key,
                               query={'object': TestDisk,
                                      'data': DataList.select.COUNT,
                                      'query': {'type': DataList.where_operator.AND,
                                                'items': [('machine.name', DataList.operator.EQUALS, 'machine')]}})  # noqa
         self.assertFalse(list_cache.from_cache, 'List should not be loaded from cache (mode: {0})'.format(key))
         self.assertEqual(list_cache.data, 0, 'List should have no matches (mode: {0})'.format(key))
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:58,代码来源:test_basic.py

示例8: test_discard

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_discard(self):
     """
     Validates the behavior regarding pending changes discard
     """
     disk = TestDisk()
     disk.name = 'one'
     disk.save()
     disk.name = 'two'
     # Discarding an object should rollback all changes
     disk.discard()
     self.assertEqual(disk.name, 'one', 'Data should be discarded')
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:13,代码来源:test_basic.py

示例9: test_datastoreraises

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_datastoreraises(self):
     """
     Validates the "datastore_wins" behavior in the usecase where it's supposed to raise
     """
     disk = TestDisk()
     disk.name = 'initial'
     disk.save()
     disk2 = TestDisk(disk.guid, datastore_wins=None)
     disk.name = 'one'
     disk.save()
     disk2.name = 'two'
     # with datastore_wins set to None, concurrency conflicts are raised
     self.assertRaises(ConcurrencyException, disk2.save)
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:15,代码来源:test_basic.py

示例10: test_datastoreloses

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_datastoreloses(self):
     """
     Validates the "datastore_wins" behavior in the usecase where it loses
     """
     disk = TestDisk()
     disk.name = 'initial'
     disk.save()
     disk2 = TestDisk(disk.guid, datastore_wins=False)
     disk.name = 'one'
     disk.save()
     disk2.name = 'two'
     disk2.save()
     # With datastore_wins set to False, the datastore loses concurrency conflicts
     self.assertEqual(disk2.name, 'two', 'Data should not be overwritten')
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:16,代码来源:test_basic.py

示例11: test_recursive

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_recursive(self):
     """
     Validates the recursive save
     """
     machine = TestMachine()
     machine.name = 'original'
     machine.save()
     disks = []
     for i in xrange(0, 10):
         disk = TestDisk()
         disk.name = 'test_{0}'.format(i)
         if i % 2:
             disk.machine = machine
         else:
             disk.machine = machine
             self.assertEqual(disk.machine.name, 'original', 'child should be set')
             disk.machine = None
             self.assertIsNone(disk.machine, 'child should be cleared')
             disks.append(disk)
         disk.save()
     counter = 1
     for disk in machine.disks:
         disk.size = counter
         counter += 1
     machine.save(recursive=True)
     disk = TestDisk(machine.disks[0].guid)
     self.assertEqual(disk.size, 1, 'lists should be saved recursively')
     disk.machine.name = 'mtest'
     disk.save(recursive=True)
     machine2 = TestMachine(machine.guid)
     self.assertEqual(machine2.disks[1].size, 2, 'lists should be saved recursively')
     self.assertEqual(machine2.name, 'mtest', 'properties should be saved recursively')
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:34,代码来源:test_basic.py

示例12: test_invalidqueries

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_invalidqueries(self):
     """
     Validates invalid queries
     """
     machine = TestMachine()
     machine.name = 'machine'
     machine.save()
     disk = TestDisk()
     disk.name = 'disk'
     disk.machine = machine
     disk.save()
     setattr(DataList.select, 'SOMETHING', 'SOMETHING')
     with self.assertRaises(NotImplementedError):
         DataList({'object': TestDisk,
                   'data': DataList.select.SOMETHING,
                   'query': {'type': DataList.where_operator.AND,
                             'items': [('machine.name', DataList.operator.EQUALS, 'machine')]}})  # noqa
     setattr(DataList.where_operator, 'SOMETHING', 'SOMETHING')
     with self.assertRaises(NotImplementedError):
         DataList({'object': TestDisk,
                   'data': DataList.select.COUNT,
                   'query': {'type': DataList.where_operator.SOMETHING,
                             'items': [('machine.name', DataList.operator.EQUALS, 'machine')]}})  # noqa
     setattr(DataList.operator, 'SOMETHING', 'SOMETHING')
     with self.assertRaises(NotImplementedError):
         DataList({'object': TestDisk,
                   'data': DataList.select.COUNT,
                   'query': {'type': DataList.where_operator.AND,
                             'items': [('machine.name', DataList.operator.SOMETHING, 'machine')]}})  # noqa
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:31,代码来源:test_basic.py

示例13: test_dol_advanced

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_dol_advanced(self):
     """
     Validates the DataObjectList advanced functions (indexer, sort)
     """
     sizes = [7, 2, 0, 4, 6, 1, 5, 9, 3, 8]
     guids = []
     for i in xrange(0, 10):
         disk = TestDisk()
         disk.name = 'disk_{0}'.format(i)
         disk.size = sizes[i]
         disk.save()
         guids.append(disk.guid)
     data = DataList({'object': TestDisk,
                      'data': DataList.select.GUIDS,
                      'query': {'type': DataList.where_operator.AND,
                                'items': []}}).data
     disks = DataObjectList(data, TestDisk)
     disks.sort()
     guids.sort()
     self.assertEqual(disks[0].guid, guids[0], 'Disks should be sorted on guid')
     self.assertEqual(disks[4].guid, guids[4], 'Disks should be sorted on guid')
     disks.sort(cmp=lambda a, b: a.size - b.size)
     self.assertEqual(disks[0].size, 0, 'Disks should be sorted on size')
     self.assertEqual(disks[4].size, 4, 'Disks should be sorted on size')
     disks.sort(key=lambda a: a.name)
     self.assertEqual(disks[0].name, 'disk_0', 'Disks should be sorted on name')
     self.assertEqual(disks[4].name, 'disk_4', 'Disks should be sorted on name')
     filtered = disks[1:4]
     self.assertEqual(filtered[0].name, 'disk_1', 'Disks should be properly sliced')
     self.assertEqual(filtered[2].name, 'disk_3', 'Disks should be properly sliced')
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:32,代码来源:test_basic.py

示例14: test_copy

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def test_copy(self):
     """
     Validates whether the copy function works correct
     """
     machine = TestMachine()
     machine.name = 'testmachine1'
     machine.save()
     disk1 = TestDisk()
     disk1.name = 'test1'
     disk1.size = 100
     disk1.order = 1
     disk1.type = 'ONE'
     disk1.machine = machine
     disk1.save()
     disk2 = TestDisk()
     disk2.copy(disk1)
     self.assertEqual(disk2.name, 'test1', 'Properties should be copied')
     self.assertEqual(disk2.size, 100, 'Properties should be copied')
     self.assertEqual(disk2.order, 1, 'Properties should be copied')
     self.assertEqual(disk2.type, 'ONE', 'Properties should be copied')
     self.assertEqual(disk2.machine, None, 'Relations should not be copied')
     disk3 = TestDisk()
     disk3.copy(disk1, include_relations=True)
     self.assertEqual(disk3.machine.name, 'testmachine1', 'Relations should be copied')
     disk4 = TestDisk()
     disk4.copy(disk1, include=['name'])
     self.assertEqual(disk4.name, 'test1', 'Name should be copied')
     self.assertEqual(disk4.size, 0, 'Size should not be copied')
     self.assertEqual(disk4.machine, None, 'Relations should not be copied')
     disk5 = TestDisk()
     disk5.copy(disk1, exclude=['name'])
     self.assertEqual(disk5.name, None, 'Name should not be copied')
     self.assertEqual(disk5.size, 100, 'Size should be copied')
     self.assertEqual(disk5.machine, None, 'Relations should not be copied')
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:36,代码来源:test_basic.py

示例15: inject_new

# 需要导入模块: from ovs.dal.hybrids.t_testdisk import TestDisk [as 别名]
# 或者: from ovs.dal.hybrids.t_testdisk.TestDisk import name [as 别名]
 def inject_new(datalist_object):
     """
     Creates a new object
     """
     _ = datalist_object
     disk_x = TestDisk()
     disk_x.name = 'test'
     disk_x.save()
开发者ID:BillTheBest,项目名称:openvstorage,代码行数:10,代码来源:test_basic.py


注:本文中的ovs.dal.hybrids.t_testdisk.TestDisk.name方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。