deckhand/deckhand/tests/unit/db/test_revision_tags.py

109 lines
4.3 KiB
Python

# Copyright 2017 AT&T Intellectual Property. All other 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.
from deckhand.db.sqlalchemy import api as db_api
from deckhand import errors
from deckhand.tests import test_utils
from deckhand.tests.unit import base
class TestRevisionTags(base.DeckhandWithDBTestCase):
def setUp(self):
super(TestRevisionTags, self).setUp()
self.revision_id = self.create_revision()
def test_list_tags(self):
retrieved_tags = db_api.revision_tag_get_all(self.revision_id)
self.assertEmpty(retrieved_tags)
def test_create_show_and_list_many_tags_without_data(self):
expected_tag_names = []
for _ in range(4):
tag = test_utils.rand_name(self.__class__.__name__ + '-Tag')
db_api.revision_tag_create(self.revision_id, tag)
expected_tag_names.append(tag)
retrieved_tags = db_api.revision_tag_get_all(self.revision_id)
retrieved_tag_names = [t['tag'] for t in retrieved_tags]
self.assertEqual(4, len(retrieved_tags))
self.assertEqual(sorted(expected_tag_names), retrieved_tag_names)
for tag in expected_tag_names:
# Should not raise an exception.
resp = db_api.revision_tag_get(self.revision_id, tag)
self.assertIn('tag', resp)
self.assertIn('data', resp)
def test_create_show_and_list_many_tags_with_data(self):
expected_tags = []
for _ in range(4):
rand_prefix = test_utils.rand_name(self.__class__.__name__)
tag = rand_prefix + '-Tag'
data_key = rand_prefix + '-Key'
data_val = rand_prefix + '-Val'
db_api.revision_tag_create(
self.revision_id, tag, {data_key: data_val})
expected_tags.append({'tag': tag, 'data': {data_key: data_val}})
expected_tags = sorted(expected_tags, key=lambda t: t['tag'])
retrieved_tags = db_api.revision_tag_get_all(self.revision_id)
self.assertEqual(4, len(retrieved_tags))
retrieved_tags = [
{k: t[k] for k in t.keys() if k in ('data', 'tag')}
for t in retrieved_tags]
self.assertEqual(sorted(expected_tags, key=lambda t: t['tag']),
retrieved_tags)
def test_create_and_delete_tags(self):
tags = []
for _ in range(4):
tag = test_utils.rand_name(self.__class__.__name__ + '-Tag')
db_api.revision_tag_create(self.revision_id, tag)
tags.append(tag)
for idx, tag in enumerate(tags):
expected_tag_names = sorted(tags[idx + 1:])
db_api.revision_tag_delete(self.revision_id, tag)
retrieved_tags = db_api.revision_tag_get_all(self.revision_id)
retrieved_tag_names = [t['tag'] for t in retrieved_tags]
self.assertEqual(expected_tag_names, retrieved_tag_names)
self.assertRaises(
errors.RevisionTagNotFound, db_api.revision_tag_get,
self.revision_id, tag)
def test_delete_all_tags(self):
for _ in range(4):
tag = test_utils.rand_name(self.__class__.__name__ + '-Tag')
db_api.revision_tag_create(self.revision_id, tag)
result = db_api.revision_tag_delete_all(self.revision_id)
self.assertIsNone(result)
retrieved_tags = db_api.revision_tag_get_all(self.revision_id)
self.assertEmpty(retrieved_tags)
def test_delete_all_tags_without_any_tags(self):
# Validate that no tags exist to begin with.
retrieved_tags = db_api.revision_tag_get_all(self.revision_id)
self.assertEmpty(retrieved_tags)
# Validate that deleting all tags without any tags doesn't raise
# errors.
db_api.revision_tag_delete_all(self.revision_id)