
Bifrost's inventory parsing code supports parsing json and yaml data input. As such, we need to test that we are producing the expected output from passing data into the general data parser, including re-parsing the output of a previous conversion to ensure that it is unchanged so logic parity remains across conversion methods for any new items added. Closes-Bug: #1527380 Change-Id: I95b3941f898b14bffa3a4a6fc6972184889cfedc
56 lines
1.6 KiB
Python
56 lines
1.6 KiB
Python
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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 contextlib
|
|
import tempfile
|
|
|
|
from bifrost import inventory
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def temporary_file(file_data):
|
|
file = None
|
|
file = tempfile.NamedTemporaryFile(mode='w')
|
|
file.write(file_data)
|
|
file.flush()
|
|
|
|
try:
|
|
yield file.name
|
|
finally:
|
|
if file is not None:
|
|
file.close()
|
|
|
|
|
|
def bifrost_csv_conversion(csv_data):
|
|
# TODO(TheJulia): To call prep feels like a bug and should be fixed.
|
|
(groups, hostvars) = inventory._prepare_inventory()
|
|
with temporary_file(csv_data) as file:
|
|
(groups, hostvars) = inventory._process_baremetal_csv(
|
|
file,
|
|
groups,
|
|
hostvars)
|
|
# NOTE(TheJulia): Returning separately so the file is closed first
|
|
return (groups, hostvars)
|
|
|
|
|
|
def bifrost_data_conversion(data):
|
|
(groups, hostvars) = inventory._prepare_inventory()
|
|
with temporary_file(data) as file:
|
|
(groups, hostvars) = inventory._process_baremetal_data(
|
|
file,
|
|
groups,
|
|
hostvars)
|
|
return (groups, hostvars)
|