We want a simplest way to validate the input parameters of an Action through a schema. APIImpact DocImpact Partially implements: blueprint watcher-add-actions-via-conf Change-Id: I139775f467fe7778c7354b0cfacf796fc27ffcb2
42 lines
1.7 KiB
Python
42 lines
1.7 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Copyright (c) 2015 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.
|
|
|
|
from watcher.applier.actions.loading import default
|
|
from watcher.decision_engine.strategy import strategies
|
|
from watcher.tests import base
|
|
from watcher.tests.decision_engine.strategy.strategies import \
|
|
faker_cluster_state
|
|
|
|
|
|
class TestDummyStrategy(base.TestCase):
|
|
def test_dummy_strategy(self):
|
|
dummy = strategies.DummyStrategy("dummy", "Dummy strategy")
|
|
fake_cluster = faker_cluster_state.FakerModelCollector()
|
|
model = fake_cluster.generate_scenario_3_with_2_hypervisors()
|
|
solution = dummy.execute(model)
|
|
self.assertEqual(3, len(solution.actions))
|
|
|
|
def test_check_parameters(self):
|
|
dummy = strategies.DummyStrategy("dummy", "Dummy strategy")
|
|
fake_cluster = faker_cluster_state.FakerModelCollector()
|
|
model = fake_cluster.generate_scenario_3_with_2_hypervisors()
|
|
solution = dummy.execute(model)
|
|
loader = default.DefaultActionLoader()
|
|
for action in solution.actions:
|
|
loaded_action = loader.load(action['action_type'])
|
|
loaded_action.input_parameters = action['input_parameters']
|
|
loaded_action.validate_parameters()
|