1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
# -*- encoding: utf-8 -*-
# Copyright (c) 2016 b<>com
#
#
# 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 collections
from tempest.lib import decorators
from watcher_tempest_plugin.tests.scenario import base
class TestExecuteDummyStrategy(base.BaseInfraOptimScenarioTest):
"""Tests for action plans"""
GOAL = "dummy"
STRATEGY = "dummy"
@decorators.attr(type=['strategy', 'dummy'])
@decorators.idempotent_id('a660e484-da76-478c-b18c-2eff243dde48')
def test_execute_dummy_strategy(self):
"""Execute an action plan based on the 'dummy' strategy
- create an audit template with the 'dummy' strategy
- run the audit to create an action plan
- get the action plan
- run the action plan
- get results and make sure it succeeded
"""
audit_template = self.create_audit_template_for_strategy()
finished_audit = self.create_audit_and_wait(
audit_template['uuid'])
action_plan, action_list = self.get_action_plan_and_validate_actions(
finished_audit['uuid'])
action_counter = collections.Counter(
act['action_type'] for act in action_list)
# A dummy strategy generates 2 "nop" actions and 1 "sleep" action
self.assertEqual(3, len(action_list))
self.assertEqual(2, action_counter.get("nop"))
self.assertEqual(1, action_counter.get("sleep"))
self.assertEqual("RECOMMENDED", action_plan['state'])
self.execute_action_plan_and_validate_states(action_plan['uuid'])
|