diff options
author | Liang Ke <lokyse@163.com> | 2018-03-23 02:19:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-23 02:19:55 +0000 |
commit | 4658abdf716b36681c5cdb957e1daf8a67c8498e (patch) | |
tree | f3b64f171c9cd82c55d5321e9435384e0767faee | |
parent | 82785fa1e968f8383af1d24acd6a06f0fe6ac55f (diff) | |
parent | e24c74a1f89d29ed30ad806955bf2ee077361fd5 (diff) |
Merge "Add combine_url test for restcall.py"
-rw-r--r-- | multivimbroker/multivimbroker/tests/test_restcall.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/multivimbroker/multivimbroker/tests/test_restcall.py b/multivimbroker/multivimbroker/tests/test_restcall.py new file mode 100644 index 0000000..b76b0a6 --- /dev/null +++ b/multivimbroker/multivimbroker/tests/test_restcall.py @@ -0,0 +1,24 @@ +# Copyright (c) 2017-2018 VMware, Inc. +# 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. + +import unittest + +from multivimbroker.pub.utils import restcall + + +class TestRestCall(unittest.TestCase): + + def test_combine_url(self): + url = ["http://a.com/test/", "http://a.com/test/", + "http://a.com/test"] + res = ["/resource", "resource", "/resource"] + expected = "http://a.com/test/resource" + for i in range(len(url)): + self.assertEqual(expected, restcall.combine_url(url[i], res[i])) |