swift/test/functional/test_protocol.py
Tim Burke 015cbaac86 utils: paths with empty components are invalid
Note that you can still have a "//" in the path with rest_with_last, though.

Change-Id: I171afcd67b162634189b752ff92a4f43484bc12a
2024-09-06 14:51:44 -07:00

79 lines
2.4 KiB
Python

#!/usr/bin/python
# Copyright (c) 2010-2012 OpenStack Foundation
#
# 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.
import unittest
from test.functional import check_response, retry, SkipTest
import test.functional as tf
def setUpModule():
tf.setup_package()
def tearDownModule():
tf.teardown_package()
class TestHttpProtocol(unittest.TestCase):
existing_metadata = None
def _check_transaction_id(self, resp):
self.assertIsNotNone(resp.getheader('X-Trans-Id'))
self.assertIsNotNone(resp.getheader('X-Openstack-Request-Id'))
self.assertIn('tx', resp.getheader('X-Trans-Id'))
self.assertIn('tx', resp.getheader('X-Openstack-Request-Id'))
self.assertEqual(resp.getheader('X-Openstack-Request-Id'),
resp.getheader('X-Trans-Id'))
def test_invalid_path_info(self):
if tf.skip:
raise SkipTest
def get(url, token, parsed, conn):
path = "/info asdf"
conn.request('GET', path, '', {'X-Auth-Token': token})
return check_response(conn)
resp = retry(get)
resp.read()
self.assertEqual(resp.status, 412)
self._check_transaction_id(resp)
def _do_test_path_missing_element(self, path):
if tf.skip:
raise SkipTest
def get(url, token, parsed, conn, **kwargs):
conn.request('GET', path, '', {'X-Auth-Token': token})
resp = check_response(conn)
resp.read()
return resp
resp = retry(get, resource=path)
self.assertEqual(resp.status, 404)
self._check_transaction_id(resp)
def test_path_missing_account(self):
self._do_test_path_missing_element('/v1//testc/testo')
def test_path_missing_container(self):
self._do_test_path_missing_element('/v1/testa//testo')
def test_path_missing_account_and_container(self):
self._do_test_path_missing_element('/v1///testo')