This recently merged test has a relatively high failure rate of 3% let's nip this in the bud before it blossoms into a major issue in the gate. Change-Id: I48bd2be92199a37d3236efe656b9a192ee7b921f Related-bug: #1480490
99 lines
3.4 KiB
Python
99 lines
3.4 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 tempest_lib import decorators
|
|
import testtools
|
|
|
|
from tempest.api.telemetry import base
|
|
from tempest import config
|
|
from tempest import test
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
class TelemetryNotificationAPITestJSON(base.BaseTelemetryTest):
|
|
|
|
@classmethod
|
|
def skip_checks(cls):
|
|
super(TelemetryNotificationAPITestJSON, cls).skip_checks()
|
|
if CONF.telemetry.too_slow_to_test:
|
|
raise cls.skipException("Ceilometer feature for fast work mysql "
|
|
"is disabled")
|
|
|
|
@test.idempotent_id('d7f8c1c8-d470-4731-8604-315d3956caad')
|
|
@test.services('compute')
|
|
def test_check_nova_notification(self):
|
|
|
|
body = self.create_server()
|
|
|
|
query = ('resource', 'eq', body['id'])
|
|
|
|
for metric in self.nova_notifications:
|
|
self.await_samples(metric, query)
|
|
|
|
@test.attr(type="smoke")
|
|
@test.idempotent_id('04b10bfe-a5dc-47af-b22f-0460426bf498')
|
|
@test.services("image")
|
|
@testtools.skipIf(not CONF.image_feature_enabled.api_v1,
|
|
"Glance api v1 is disabled")
|
|
def test_check_glance_v1_notifications(self):
|
|
body = self.create_image(self.image_client)
|
|
self.image_client.update_image(body['id'], data='data')
|
|
|
|
query = 'resource', 'eq', body['id']
|
|
|
|
self.image_client.delete_image(body['id'])
|
|
|
|
for metric in self.glance_notifications:
|
|
self.await_samples(metric, query)
|
|
|
|
@test.attr(type="smoke")
|
|
@test.idempotent_id('c240457d-d943-439b-8aea-85e26d64fe8e')
|
|
@test.services("image")
|
|
@testtools.skipIf(not CONF.image_feature_enabled.api_v2,
|
|
"Glance api v2 is disabled")
|
|
def test_check_glance_v2_notifications(self):
|
|
body = self.create_image(self.image_client_v2)
|
|
|
|
self.image_client_v2.store_image_file(body['id'], "file")
|
|
self.image_client_v2.load_image_file(body['id'])
|
|
|
|
query = 'resource', 'eq', body['id']
|
|
|
|
for metric in self.glance_v2_notifications:
|
|
self.await_samples(metric, query)
|
|
|
|
|
|
class TelemetryNotificationAdminAPITestJSON(base.BaseTelemetryAdminTest):
|
|
|
|
@classmethod
|
|
def skip_checks(cls):
|
|
super(TelemetryNotificationAdminAPITestJSON, cls).skip_checks()
|
|
if CONF.telemetry.too_slow_to_test:
|
|
raise cls.skipException("Ceilometer feature for fast work mysql "
|
|
"is disabled")
|
|
|
|
@test.idempotent_id('29604198-8b45-4fc0-8af8-1cae4f94ebe9')
|
|
@test.services('compute')
|
|
@decorators.skip_because(bug='1480490')
|
|
def test_check_nova_notification_event_and_meter(self):
|
|
|
|
body = self.create_server()
|
|
|
|
if CONF.telemetry_feature_enabled.events:
|
|
query = ('instance_id', 'eq', body['id'])
|
|
self.await_events(query)
|
|
|
|
query = ('resource', 'eq', body['id'])
|
|
for metric in self.nova_notifications:
|
|
self.await_samples(metric, query)
|