90bb67ffb6
In some part in the code we import objects. In the Openstack style guidelines they recommend to import only modules. http://docs.openstack.org/developer/hacking/#imports Change-Id: I58b2dab1a46128893648630edba615e2592040ac
46 lines
1.8 KiB
Python
46 lines
1.8 KiB
Python
# Copyright 2016 Internap.
|
|
#
|
|
# 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 uuid
|
|
|
|
from hamcrest import assert_that
|
|
from hamcrest import equal_to
|
|
from hamcrest import has_entry
|
|
from retry import retry
|
|
|
|
from base_api_volume_testcase import BaseApiVolumeTestCase
|
|
from builders import messages
|
|
|
|
|
|
class CollectorVolumeAttachTest(BaseApiVolumeTestCase):
|
|
def test_attach_volume(self):
|
|
tenant_id = str(uuid.uuid4())
|
|
instance_id = str(uuid.uuid4())
|
|
volume_id = str(uuid.uuid4())
|
|
|
|
self.rabbitMqHelper.push(message=messages.get_volume_create_end_sample(
|
|
volume_id=volume_id, tenant_id=tenant_id, volume_type=messages.DEFAULT_VOLUME_TYPE))
|
|
|
|
self.rabbitMqHelper.push(message=messages.get_volume_attach_kilo_end_sample(
|
|
volume_id=volume_id, tenant_id=tenant_id, attached_to=[instance_id]))
|
|
|
|
self.assert_that_volume_entity_has_instance_attached(tenant_id, instance_id)
|
|
|
|
@retry(exceptions=AssertionError, delay=1, max_delay=300)
|
|
def assert_that_volume_entity_has_instance_attached(self, tenant_id, instance_id):
|
|
entities = self.almanachHelper.get_entities(tenant_id, "2016-01-01 00:00:00.000")
|
|
assert_that(len(entities), equal_to(1))
|
|
assert_that(entities[0], has_entry("end", None))
|
|
assert_that(entities[0], has_entry("attached_to", [instance_id]))
|