5c03626858
SLA is specified in 'sla' section of test definition. The rules are applied to all statistics (per-iteration and per-agent). The produced result is available in report context. Report supports --subunit option which allows to store sla checks in subunit stream. Change-Id: I6ae7a18ce9aff45af574d1f0ab656de251df5ea4
45 lines
1.5 KiB
Python
45 lines
1.5 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 utils
|
|
|
|
|
|
class TestUtils(testtools.TestCase):
|
|
def setUp(self):
|
|
super(TestUtils, self).setUp()
|
|
|
|
def test_split_address_valid(self):
|
|
self.assertEqual(('10.0.0.1', '6777'),
|
|
utils.split_address('10.0.0.1:6777'))
|
|
|
|
def test_split_address_invalid(self):
|
|
self.assertRaises(ValueError, utils.split_address, 'erroneous')
|
|
|
|
def test_flatten_dict(self):
|
|
self.assertEqual({}, dict(utils.flatten_dict({})))
|
|
self.assertEqual(
|
|
{'pa_b': 1},
|
|
dict(utils.flatten_dict({'a': {'b': 1}}, prefix='p', sep='_')))
|
|
self.assertEqual(
|
|
{'a': 1, 'b.c': 2, 'b.d': 3},
|
|
dict(utils.flatten_dict({'a': 1, 'b': {'c': 2, 'd': 3}})))
|
|
|
|
def test_eval(self):
|
|
self.assertEqual(2 ** 6, utils.eval_expr('2**6'))
|
|
self.assertEqual(True, utils.eval_expr('11 > a > 5', {'a': 7}))
|
|
self.assertEqual(42, utils.eval_expr('2 + a.b', {'a': {'b': 40}}))
|