barbican/barbican/tests/model/repositories/test_repositories_container...

112 lines
3.7 KiB
Python

# 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.
from barbican.common import exception
from barbican.model import models
from barbican.model import repositories
from barbican.tests import database_utils
class WhenTestingContainerRepository(database_utils.RepositoryTestCase):
def setUp(self):
super(WhenTestingContainerRepository, self).setUp()
self.repo = repositories.ContainerRepo()
def test_should_raise_no_result_found(self):
session = self.repo.get_session()
self.assertRaises(
exception.NotFound,
self.repo.get_by_create_date,
"my keystone id",
session=session,
suppress_exception=False)
def test_get_container_by_id(self):
session = self.repo.get_session()
project = models.Project()
project.external_id = "my keystone id"
project.save(session=session)
container = models.Container()
container.project_id = project.id
container.save(session=session)
session.commit()
db_container = self.repo.get_container_by_id(container.id)
self.assertIsNotNone(db_container)
def test_should_raise_notfound_exception(self):
self.assertRaises(exception.NotFound, self.repo.get_container_by_id,
"invalid_id", suppress_exception=False)
def test_should_suppress_notfound_exception(self):
self.assertIsNone(self.repo.get_container_by_id(
"invalid_id", suppress_exception=True))
def test_should_get_count_zero(self):
session = self.repo.get_session()
project = models.Project()
project.external_id = "my keystone id"
project.save(session=session)
session.commit()
count = self.repo.get_count(project.id, session=session)
self.assertEqual(0, count)
def test_should_get_count_one(self):
session = self.repo.get_session()
project = models.Project()
project.external_id = "my keystone id"
project.save(session=session)
container_model = models.Container()
container_model.project_id = project.id
self.repo.create_from(container_model, session=session)
session.commit()
count = self.repo.get_count(project.id, session=session)
self.assertEqual(1, count)
def test_should_get_count_one_after_delete(self):
session = self.repo.get_session()
project = models.Project()
project.external_id = "my keystone id"
project.save(session=session)
container_model = models.Container()
container_model.project_id = project.id
self.repo.create_from(container_model, session=session)
container_model = models.Container()
container_model.project_id = project.id
self.repo.create_from(container_model, session=session)
session.commit()
count = self.repo.get_count(project.id, session=session)
self.assertEqual(2, count)
self.repo.delete_entity_by_id(container_model.id, "my keystone id",
session=session)
session.commit()
count = self.repo.get_count(project.id, session=session)
self.assertEqual(1, count)