swift/test/unit/obj/test_rpc_http.py

44 lines
1.5 KiB
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.
"""Tests for swift.obj.rpc_http"""
import unittest
from swift.obj import rpc_http, fmgr_pb2
import mock
class TestRpcHttp(unittest.TestCase):
def setUp(self):
self.socket_path = "/path/to/rpc.socket"
self.part_power = 18
@mock.patch("swift.obj.rpc_http.get_rpc_reply")
def test_vfile_list_partitions(self, m_get_rpc_reply):
m_conn = mock.MagicMock()
with mock.patch("swift.obj.rpc_http.UnixHTTPConnection",
return_value=m_conn):
rpc_http.list_partitions(self.socket_path, self.part_power)
arg = fmgr_pb2.ListPartitionsRequest(
partition_bits=self.part_power)
serialized_arg = arg.SerializeToString()
m_conn.request.assert_called_once_with('POST', '/list_partitions',
serialized_arg)
if __name__ == '__main__':
unittest.main()