Source code for watcherclient.tests.functional.v1.test_goal

# Copyright (c) 2016 Servionica
#
# 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 watcherclient.tests.functional.v1 import base


[docs]class GoalTests(base.TestCase): """Functional tests for goal.""" dummy_name = 'dummy' list_fields = ['UUID', 'Name', 'Display name']
[docs] def test_goal_list(self): raw_output = self.watcher('goal list') self.assertIn(self.dummy_name, raw_output) self.assert_table_structure([raw_output], self.list_fields)
[docs] def test_goal_detailed_list(self): raw_output = self.watcher('goal list --detail') self.assertIn(self.dummy_name, raw_output) self.assert_table_structure( [raw_output], self.list_fields + ['Efficacy specification'])
[docs] def test_goal_show(self): raw_output = self.watcher('goal show %s' % self.dummy_name) self.assertIn(self.dummy_name, raw_output) self.assert_table_structure( [raw_output], self.list_fields + ['Efficacy specification']) self.assertNotIn('server_consolidation', raw_output)