Exemple #1
0
 def test_make_it(self):
     sot = qos_policy.QoSPolicy(**EXAMPLE)
     self.assertEqual(EXAMPLE['id'], sot.id)
     self.assertEqual(EXAMPLE['description'], sot.description)
     self.assertEqual(EXAMPLE['name'], sot.name)
     self.assertTrue(sot.is_shared)
     self.assertEqual(EXAMPLE['tenant_id'], sot.project_id)
     self.assertEqual(EXAMPLE['rules'], sot.rules)
 def test_basic(self):
     sot = qos_policy.QoSPolicy()
     self.assertEqual('policy', sot.resource_key)
     self.assertEqual('policies', sot.resources_key)
     self.assertEqual('/qos/policies', sot.base_path)
     self.assertTrue(sot.allow_create)
     self.assertTrue(sot.allow_fetch)
     self.assertTrue(sot.allow_commit)
     self.assertTrue(sot.allow_delete)
     self.assertTrue(sot.allow_list)
Exemple #3
0
 def test_basic(self):
     sot = qos_policy.QoSPolicy()
     self.assertEqual('policy', sot.resource_key)
     self.assertEqual('policies', sot.resources_key)
     self.assertEqual('/qos/policies', sot.base_path)
     self.assertEqual('network', sot.service.service_type)
     self.assertTrue(sot.allow_create)
     self.assertTrue(sot.allow_get)
     self.assertTrue(sot.allow_update)
     self.assertTrue(sot.allow_delete)
     self.assertTrue(sot.allow_list)
Exemple #4
0
 def _compare_policies(self, exp, real):
     self.assertDictEqual(
         _policy.QoSPolicy(**exp).to_dict(computed=False),
         real.to_dict(computed=False))