Ejemplo n.º 1
0
    def __init__(self, context):
        super(Quotas, self).__init__(context)
        self.clients = osclients.Clients(context["admin"]["endpoint"])

        self.manager = {
            "nova": nova_quotas.NovaQuotas(self.clients),
            "cinder": cinder_quotas.CinderQuotas(self.clients),
            "neutron": neutron_quotas.NeutronQuotas(self.clients)
        }
Ejemplo n.º 2
0
 def test_update(self, client_mock):
     nova_quotas = quotas.NovaQuotas(client_mock)
     tenant_id = mock.MagicMock()
     quotas_values = {
         "instances": 10,
         "cores": 100,
         "ram": 100000,
         "floating_ips": 100,
         "fixed_ips": 10000,
         "metadata_items": 5,
         "injected_files": 5,
         "injected_file_content_bytes": 2048,
         "injected_file_path_bytes": 1024,
         "key_pairs": 50,
         "security_groups": 50,
         "security_group_rules": 50
     }
     nova_quotas.update(tenant_id, **quotas_values)
     client_mock.nova().quotas.update.assert_called_once_with(
         tenant_id, **quotas_values)
Ejemplo n.º 3
0
 def test_delete(self, client_mock):
     nova_quotas = quotas.NovaQuotas(client_mock)
     tenant_id = mock.MagicMock()
     nova_quotas.delete(tenant_id)
     client_mock.nova().quotas.delete.assert_called_once_with(tenant_id)