
The purpose of the document staging api is to provide a client of shipyard to ingest and manipulate documents within the UCP platform In support of the need to reach out to other services, this change also introduces the use of keystone for service discovery and connection to other UCP services. Change-Id: I6fa113f8786cad2884c0b791788a4ef40cd1a6b6
53 lines
1.6 KiB
Python
53 lines
1.6 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.
|
|
from mock import patch
|
|
|
|
import pytest
|
|
|
|
from shipyard_airflow.control.configdocs_helper import ConfigdocsHelper
|
|
from shipyard_airflow.control.rendered_configdocs_api import (
|
|
RenderedConfigDocsResource
|
|
)
|
|
from shipyard_airflow.errors import ApiError
|
|
|
|
|
|
def test__validate_version_parameter():
|
|
"""
|
|
test of the version parameter validation
|
|
"""
|
|
rcdr = RenderedConfigDocsResource()
|
|
with pytest.raises(ApiError):
|
|
rcdr._validate_version_parameter('asdfjkl')
|
|
|
|
try:
|
|
rcdr._validate_version_parameter('buffer')
|
|
rcdr._validate_version_parameter('committed')
|
|
except:
|
|
assert False
|
|
|
|
|
|
def test_get_rendered_configdocs():
|
|
"""
|
|
Tests the RenderedConfigDocsResource method get_rendered_configdocs
|
|
"""
|
|
rcdr = RenderedConfigDocsResource()
|
|
|
|
with patch.object(
|
|
ConfigdocsHelper, 'get_rendered_configdocs'
|
|
) as mock_method:
|
|
helper = ConfigdocsHelper('')
|
|
rcdr.get_rendered_configdocs(helper, version='buffer')
|
|
|
|
mock_method.assert_called_once_with('buffer')
|