![Andreas Jaeger](/assets/img/avatar_default.png)
This repo is now testing only with Python 3, so let's make a few cleanups: - Remove py2 stanza from setup.py - Remove obsolete sections from setup.cfg - Update classifiers - Switch to using sphinx-build - Remove install_command from tox.ini, the default is fine - Remove Babel from requirements, it's not needed for running. - Remove obsolete babel.cfg - Use TOX_CONSTRAINTS_FILE instead of obsolete UPPER_CONSTRAINTS_FILE. - Update hacking to current 3.1.0 version - Remove use of six library Change-Id: I233dfc7a06cbd2e098499629f63d0b8f2db5258e
116 lines
4.0 KiB
Python
116 lines
4.0 KiB
Python
# Copyright (c) 2014 Rackspace, Inc.
|
|
#
|
|
# 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 urllib
|
|
|
|
from tempest import config
|
|
from tempest.lib.common.utils import data_utils
|
|
from tempest.lib import decorators
|
|
|
|
from zaqar_tempest_plugin.tests import base
|
|
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
class TestClaims(base.BaseV1MessagingTest):
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
super(TestClaims, cls).resource_setup()
|
|
cls.queue_name = data_utils.rand_name('Queues-Test')
|
|
# Create Queue
|
|
cls.create_queue(cls.queue_name)
|
|
|
|
def _post_and_claim_messages(self, queue_name, repeat=1):
|
|
# Post Messages
|
|
message_body = self.generate_message_body(repeat=repeat)
|
|
self.client.post_messages(queue_name=self.queue_name,
|
|
rbody=message_body)
|
|
|
|
# Post Claim
|
|
claim_ttl = data_utils.rand_int_id(start=60,
|
|
end=CONF.messaging.max_claim_ttl)
|
|
claim_grace = data_utils.\
|
|
rand_int_id(start=60, end=CONF.messaging.max_claim_grace)
|
|
claim_body = {"ttl": claim_ttl, "grace": claim_grace}
|
|
resp, body = self.client.post_claims(queue_name=self.queue_name,
|
|
rbody=claim_body)
|
|
|
|
return resp, body
|
|
|
|
@decorators.idempotent_id('936cb1ca-b7af-44dd-a752-805e8c98156f')
|
|
def test_post_claim(self):
|
|
_, body = self._post_and_claim_messages(queue_name=self.queue_name)
|
|
claimed_message_uri = body[0]['href']
|
|
|
|
# Delete Claimed message
|
|
self.client.delete_messages(claimed_message_uri)
|
|
|
|
@decorators.idempotent_id('84e491f4-68c6-451f-9846-b8f868eb27c5')
|
|
def test_query_claim(self):
|
|
# Post a Claim
|
|
resp, body = self._post_and_claim_messages(queue_name=self.queue_name)
|
|
|
|
# Query Claim
|
|
claim_uri = resp['location'][resp['location'].find('/v1'):]
|
|
self.client.query_claim(claim_uri)
|
|
|
|
# Delete Claimed message
|
|
claimed_message_uri = body[0]['href']
|
|
self.delete_messages(claimed_message_uri)
|
|
|
|
@decorators.idempotent_id('420ef0c5-9bd6-4b82-b06d-d9da330fefd3')
|
|
def test_update_claim(self):
|
|
# Post a Claim
|
|
resp, body = self._post_and_claim_messages(queue_name=self.queue_name)
|
|
|
|
claim_uri = resp['location'][resp['location'].find('/v1'):]
|
|
claimed_message_uri = body[0]['href']
|
|
|
|
# Update Claim
|
|
claim_ttl = data_utils.rand_int_id(start=60,
|
|
end=CONF.messaging.max_claim_ttl)
|
|
update_rbody = {"ttl": claim_ttl}
|
|
|
|
self.client.update_claim(claim_uri, rbody=update_rbody)
|
|
|
|
# Verify claim ttl >= updated ttl value
|
|
_, body = self.client.query_claim(claim_uri)
|
|
updated_claim_ttl = body["ttl"]
|
|
self.assertGreaterEqual(claim_ttl, updated_claim_ttl)
|
|
|
|
# Delete Claimed message
|
|
self.client.delete_messages(claimed_message_uri)
|
|
|
|
@decorators.idempotent_id('fd4c7921-cb3f-4ed8-9ac8-e8f1e74c44aa')
|
|
def test_release_claim(self):
|
|
# Post a Claim
|
|
resp, body = self._post_and_claim_messages(queue_name=self.queue_name)
|
|
claim_uri = resp['location'][resp['location'].find('/v1'):]
|
|
|
|
# Release Claim
|
|
self.client.delete_claim(claim_uri)
|
|
|
|
# Delete Claimed message
|
|
# This will implicitly verify that the claim is deleted.
|
|
message_uri = urllib.parse.urlparse(claim_uri).path
|
|
self.client.delete_messages(message_uri)
|
|
|
|
@classmethod
|
|
def resource_cleanup(cls):
|
|
cls.delete_queue(cls.queue_name)
|
|
super(TestClaims, cls).resource_cleanup()
|