fuel-web/nailgun/nailgun/test/unit/test_orchestrator_stages.py
Valentin Kaplov e9b3336c71 Fixed executing plugins in pre deployment stage
Create repositories and sync tasks were added to the end of
pre deployment stage. As result environment was not ready for
executing task in pre deployment stage. Now in granular deployment
create repository and sync tasks adds to the begining of
pre_deployment stage. So plugins tasks can be executed in any point
of pre_deployment stage.

Change-Id: I0713904e6ae17763606630c649bf1263e6d1b37c
Closes-Bug: 1530351
2016-01-18 12:08:04 +03:00

36 lines
1.4 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2016 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.
from mock import Mock
from mock import patch
from nailgun.orchestrator.stages import stage_serialize
from nailgun.test.base import BaseTestCase
class TestStages(BaseTestCase):
@patch('nailgun.orchestrator.priority_serializers.PriorityStrategy.'
'one_by_one')
def test_stage_serialize(self, m_one_by_one):
standard = ['first', 'middle', 'last']
serializer = Mock()
serializer.serialize_begin_tasks = Mock(return_value=[standard[0]])
serializer.serialize_end_tasks = Mock(return_value=[standard[2]])
graph_tasks = [standard[1]]
self.assertItemsEqual(stage_serialize(serializer, graph_tasks),
standard)
m_one_by_one.assert_called_once_with(standard)