solar/solar/test/test_graph_api.py

93 lines
2.6 KiB
Python

# Copyright 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 os
from pytest import fixture
from solar.orchestration import graph
from solar.orchestration.traversal import states
@fixture
def simple():
simple_path = os.path.join(
os.path.dirname(os.path.realpath(__file__)), 'orch_fixtures',
'simple.yaml')
return graph.create_plan(simple_path)
def test_simple_plan_created_and_loaded(simple):
plan = graph.get_plan(simple.graph['uid'])
assert set(plan.nodes()) == {'just_fail', 'echo_stuff'}
def test_reset_all_states(simple):
for n in simple:
simple.node[n]['status'] == states.ERROR.name
graph.reset(simple)
for n in simple:
assert simple.node[n]['status'] == states.PENDING.name
def test_reset_only_provided(simple):
simple.node['just_fail']['status'] = states.ERROR.name
simple.node['echo_stuff']['status'] = states.SUCCESS.name
graph.reset(simple, [states.ERROR.name])
assert simple.node['just_fail']['status'] == states.PENDING.name
assert simple.node['echo_stuff']['status'] == states.SUCCESS.name
def test_wait_finish(simple):
for n in simple:
simple.node[n]['status'] = states.SUCCESS.name
graph.update_graph(simple)
assert next(graph.wait_finish(simple.graph['uid'], 10)) == {
'SKIPPED': 0,
'SUCCESS': 2,
'NOOP': 0,
'ERROR': 0,
'INPROGRESS': 0,
'PENDING': 0
}
def test_several_updates(simple):
simple.node['just_fail']['status'] = states.ERROR.name
graph.update_graph(simple)
assert next(graph.wait_finish(simple.graph['uid'], 10)) == {
'SKIPPED': 0,
'SUCCESS': 0,
'NOOP': 0,
'ERROR': 1,
'INPROGRESS': 0,
'PENDING': 1
}
simple.node['echo_stuff']['status'] = states.ERROR.name
graph.update_graph(simple)
assert next(graph.wait_finish(simple.graph['uid'], 10)) == {
'SKIPPED': 0,
'SUCCESS': 0,
'NOOP': 0,
'ERROR': 2,
'INPROGRESS': 0,
'PENDING': 0
}