
The new grammar allows to specify record selector and condition in the same string. Example: '[type == "agent"] >> (stats.bandwidth.mean > 800)' -- pick records with attribute 'type' equal to 'agent' and check condition against every. Change-Id: Icdf92400991029a1f06a6487679faad8acea7afe
40 lines
1.3 KiB
Python
40 lines
1.3 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}})))
|