shaker/tests/test_report.py
Ilya Shakhat 1a65fba420 Introduce record id and reference from sla-record
Rename field 'agent_id' into 'agent' to stay similar to other
references

Change-Id: Iad9c6d189200fefcbff119fba0f778d18079114c
2015-04-20 19:21:30 +03:00

60 lines
2.2 KiB
Python

# Copyright (c) 2015 Mirantis 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 testtools
from shaker.engine import report
from shaker.engine import sla
class TestReport(testtools.TestCase):
def test_verify_sla(self):
records = {0: {'id': 0, 'type': 'agent', 'test': 'iperf_tcp',
'stats': {'bandwidth': {'mean': 700, 'min': 400}}},
1: {'id': 1, 'type': 'agent', 'test': 'iperf_udp',
'stats': {'bandwidth': {'mean': 1000, 'min': 800}}},
2: {'id': 2, 'type': 'agent', 'test': 'iperf_tcp',
'stats': {'bandwidth': {'mean': 850, 'min': 600}}}}
tests = {
'iperf_tcp': {
'sla': [
'[type == "agent"] >> (stats.bandwidth.mean > 800)',
'[type == "agent"] >> (stats.bandwidth.min > 500)',
],
},
'iperf_udp': {
'sla': [
'[type == "agent"] >> (stats.bandwidth.mean > 900)',
],
}
}
sla_records = report.verify_sla(records, tests)
self.assertIn(sla.SLAItem(records[0], False,
'stats.bandwidth.mean > 800'), sla_records)
self.assertIn(sla.SLAItem(records[0], False,
'stats.bandwidth.min > 500'), sla_records)
self.assertIn(sla.SLAItem(records[1], True,
'stats.bandwidth.mean > 900'), sla_records)
self.assertIn(sla.SLAItem(records[2], True,
'stats.bandwidth.mean > 800'), sla_records)
self.assertIn(sla.SLAItem(records[2], True,
'stats.bandwidth.min > 500'), sla_records)