X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_mon%2Ftests%2Funit%2Fcollector%2Fvnf_collectors%2Fvmware%2Fmock_vcd.py;fp=osm_mon%2Ftests%2Funit%2Fcollector%2Fvnf_collectors%2Fvmware%2Fmock_vcd.py;h=6938873ab492a0b1b5e1bcc591e0c4daef4ebcd6;hb=730dfd82ef49e2dc1f6d54bb8a1d5e877d4d50b2;hp=0000000000000000000000000000000000000000;hpb=7f8f893631706371a5e073a57b23866cfae712cb;p=osm%2FMON.git diff --git a/osm_mon/tests/unit/collector/vnf_collectors/vmware/mock_vcd.py b/osm_mon/tests/unit/collector/vnf_collectors/vmware/mock_vcd.py new file mode 100644 index 0000000..6938873 --- /dev/null +++ b/osm_mon/tests/unit/collector/vnf_collectors/vmware/mock_vcd.py @@ -0,0 +1,34 @@ +# -*- 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_vdc_response(mocker, method='GET', site='https://vrops', url_pattern='', response_file='OK'): + '''Helper function to load a canned response from a file.''' + with open(os.path.join(os.path.dirname(__file__), 'vcd_mocks', + '%s' % response_file), 'r') as f: + response = f.read() + + matcher = re.compile(site + url_pattern) + mocker.register_uri(method, matcher, text=response)