Merge "Don't truncate osapi_volume_link prefixes"
This commit is contained in:
commit
5eb9d1140c
@ -353,7 +353,9 @@ class ViewBuilder(object):
|
||||
url_parts = list(urlparse.urlsplit(orig_url))
|
||||
prefix_parts = list(urlparse.urlsplit(prefix))
|
||||
url_parts[0:2] = prefix_parts[0:2]
|
||||
return urlparse.urlunsplit(url_parts)
|
||||
url_parts[2] = prefix_parts[2] + url_parts[2]
|
||||
|
||||
return urlparse.urlunsplit(url_parts).rstrip('/')
|
||||
|
||||
|
||||
class MetadataDeserializer(wsgi.MetadataXMLDeserializer):
|
||||
|
@ -547,3 +547,21 @@ class TestCollectionLinks(test.TestCase):
|
||||
self._validate_next_link(href_link_mock, item_count,
|
||||
osapi_max_limit,
|
||||
limit, should_link_exist)
|
||||
|
||||
|
||||
class LinkPrefixTest(test.TestCase):
|
||||
def test_update_link_prefix(self):
|
||||
vb = common.ViewBuilder()
|
||||
result = vb._update_link_prefix("http://192.168.0.243:24/",
|
||||
"http://127.0.0.1/volume")
|
||||
self.assertEqual("http://127.0.0.1/volume", result)
|
||||
|
||||
result = vb._update_link_prefix("http://foo.x.com/v1",
|
||||
"http://new.prefix.com")
|
||||
self.assertEqual("http://new.prefix.com/v1", result)
|
||||
|
||||
result = vb._update_link_prefix(
|
||||
"http://foo.x.com/v1",
|
||||
"http://new.prefix.com:20455/new_extra_prefix")
|
||||
self.assertEqual("http://new.prefix.com:20455/new_extra_prefix/v1",
|
||||
result)
|
||||
|
Loading…
Reference in New Issue
Block a user