X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_mon%2Ftests%2Funit%2Fcollector%2Fvnf_collectors%2Fvmware%2Fmock_http.py;fp=osm_mon%2Ftests%2Funit%2Fcollector%2Fvnf_collectors%2Fvmware%2Fmock_http.py;h=36ee361706bf703bdc50a3e1696e2b49032ce313;hb=7233ad262f6c5436c713784a443596c0aa919b04;hp=0000000000000000000000000000000000000000;hpb=829821e6cc5bb5b98066366755be4990e4b2afa0;p=osm%2FMON.git diff --git a/osm_mon/tests/unit/collector/vnf_collectors/vmware/mock_http.py b/osm_mon/tests/unit/collector/vnf_collectors/vmware/mock_http.py new file mode 100644 index 0000000..36ee361 --- /dev/null +++ b/osm_mon/tests/unit/collector/vnf_collectors/vmware/mock_http.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 VMware +# ************************************************************* + +# This file is part of OSM Monitoring module +# All Rights Reserved to VMware + +# 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. +# For those usages not covered by the Apache License, Version 2.0 please +# contact: mbeierl@vmware.com +# # + +import os +import re + + +def mock_http_response(mocker, method='GET', site='https://vrops', url_pattern='', response_file='OK', + status_code=200, exception=None): + '''Helper function to load a canned response from a file.''' + with open(os.path.join(os.path.dirname(__file__), 'vmware_mocks', + '%s' % response_file), 'r') as f: + response = f.read() + + matcher = re.compile(site + url_pattern) + if exception is None: + mocker.register_uri(method, matcher, text=response, status_code=status_code) + else: + mocker.register_uri(method, matcher, exc=exception)