
- Initially this is a naive implementation and not fully utilizing the abilites of OVO - Updated test YAML files to match model - Did not convert Task objects as they will be refactored for Celery in the near future
107 lines
3.8 KiB
Python
107 lines
3.8 KiB
Python
# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# 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.
|
|
|
|
#
|
|
# Generic testing for the orchestrator
|
|
#
|
|
import pytest
|
|
#from pytest_mock import mocker
|
|
#import mock
|
|
|
|
import os
|
|
import shutil
|
|
import uuid
|
|
|
|
from helm_drydock.ingester import Ingester
|
|
|
|
import helm_drydock.orchestrator as orch
|
|
import helm_drydock.objects.fields as hd_fields
|
|
import helm_drydock.statemgmt as statemgmt
|
|
import helm_drydock.objects as objects
|
|
import helm_drydock.objects.task as task
|
|
import helm_drydock.drivers as drivers
|
|
import helm_drydock.ingester.plugins.yaml as yaml_ingester
|
|
|
|
class TestClass(object):
|
|
|
|
design_id = str(uuid.uuid4())
|
|
|
|
# sthussey None of these work right until I figure out correct
|
|
# mocking of pyghmi
|
|
def test_oob_verify_all_node(self, loaded_design):
|
|
#mocker.patch('pyghmi.ipmi.private.session.Session')
|
|
#mocker.patch.object('pyghmi.ipmi.command.Command','get_asset_tag')
|
|
|
|
orchestrator = orch.Orchestrator(state_manager=loaded_design,
|
|
enabled_drivers={'oob': 'helm_drydock.drivers.oob.pyghmi_driver.PyghmiDriver'})
|
|
|
|
orch_task = orchestrator.create_task(task.OrchestratorTask,
|
|
site='sitename',
|
|
design_id=self.design_id,
|
|
action=hd_fields.OrchestratorAction.VerifyNode)
|
|
|
|
orchestrator.execute_task(orch_task.get_id())
|
|
|
|
orch_task = loaded_design.get_task(orch_task.get_id())
|
|
|
|
assert True
|
|
|
|
"""
|
|
def test_oob_prepare_all_nodes(self, loaded_design):
|
|
#mocker.patch('pyghmi.ipmi.private.session.Session')
|
|
#mocker.patch.object('pyghmi.ipmi.command.Command','set_bootdev')
|
|
|
|
orchestrator = orch.Orchestrator(state_manager=loaded_design,
|
|
enabled_drivers={'oob': 'helm_drydock.drivers.oob.pyghmi_driver.PyghmiDriver'})
|
|
|
|
orch_task = orchestrator.create_task(task.OrchestratorTask,
|
|
site='sitename',
|
|
action=enum.OrchestratorAction.PrepareNode)
|
|
|
|
orchestrator.execute_task(orch_task.get_id())
|
|
|
|
#assert pyghmi.ipmi.command.Command.set_bootdev.call_count == 3
|
|
#assert pyghmi.ipmi.command.Command.set_power.call_count == 6
|
|
"""
|
|
|
|
@pytest.fixture(scope='module')
|
|
def loaded_design(self, input_files):
|
|
objects.register_all()
|
|
|
|
input_file = input_files.join("oob.yaml")
|
|
|
|
design_state = statemgmt.DesignState()
|
|
design_data = objects.SiteDesign(id=self.design_id)
|
|
|
|
design_state.post_design(design_data)
|
|
|
|
ingester = Ingester()
|
|
ingester.enable_plugins([yaml_ingester.YamlIngester])
|
|
ingester.ingest_data(plugin_name='yaml', design_state=design_state,
|
|
design_id=self.design_id, filenames=[str(input_file)])
|
|
|
|
return design_state
|
|
|
|
@pytest.fixture(scope='module')
|
|
def input_files(self, tmpdir_factory, request):
|
|
tmpdir = tmpdir_factory.mktemp('data')
|
|
samples_dir = os.path.dirname(str(request.fspath)) + "/yaml_samples"
|
|
samples = os.listdir(samples_dir)
|
|
|
|
for f in samples:
|
|
src_file = samples_dir + "/" + f
|
|
dst_file = str(tmpdir) + "/" + f
|
|
shutil.copyfile(src_file, dst_file)
|
|
|
|
return tmpdir |