neutron/neutron/tests/unit/db/test_model_base.py
Ilya Chukhnakov 581b854a84 Allow unique keys to be used with get_object
This patch adds 'unique_keys' to NeutronDbObject and allows get_object
to lookup objects by unique keys in addition to primary keys.

Change-Id: I31f5603c116892390d1f8025d3c1893355ad0bac
Partially-Implements: blueprint adopt-oslo-versioned-objects-for-db
2016-07-12 16:18:03 +03:00

51 lines
1.8 KiB
Python

# Copyright (c) 2016 Mirantis, Inc.
# All Rights Reserved.
#
# 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.
import mock
import sqlalchemy as sa
from neutron.db import model_base
from neutron.tests import base as test_base
class GetUniqueKeysTestCase(test_base.BaseTestCase):
def test_with_unique_constraints(self):
model = mock.Mock()
metadata = sa.MetaData()
model.__table__ = sa.Table(
"test_table", metadata,
sa.Column("a", sa.Integer, unique=True),
sa.Column("b", sa.Integer),
sa.Column("c", sa.Integer),
sa.Column("d", sa.Integer),
sa.UniqueConstraint("c", "d"))
expected = {("a",), ("c", "d")}
observed = {tuple(sorted(key)) for key in
model_base.get_unique_keys(model)}
self.assertEqual(expected, observed)
def test_without_unique_constraints(self):
model = mock.Mock()
metadata = sa.MetaData()
model.__table__ = sa.Table(
"test_table", metadata,
sa.Column("a", sa.Integer),
sa.Column("b", sa.Integer))
self.assertEqual([], model_base.get_unique_keys(model))
def test_not_a_model(self):
self.assertEqual([], model_base.get_unique_keys(None))