Files
deb-python-oslo.service/tests/unit/test_eventlet_backdoor.py
Julien Danjou ad5ad1f643 Add basic Python 3 tests
This uses `nose' to load and run tests for the time being, as
testrepository tries to load everything, which is not possible
currently. Until everything is Python 3 compatible, using `nose' will be
simpler to list the specific files we want to run.

Blueprint: make-python3-compatible

Change-Id: I4c8dbf11ac8c6e0f25bc60a3e880a30bf87a60bd
Signed-off-by: Julien Danjou <julien@danjou.info>
2014-02-06 20:56:04 +01:00

77 lines
2.9 KiB
Python

# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
# 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.
"""
Unit Tests for eventlet backdoor
"""
import errno
import socket
import eventlet
from openstack.common import eventlet_backdoor
from openstack.common.fixture import config
from openstack.common.fixture import moxstubout
from openstack.common import test
class BackdoorPortTest(test.BaseTestCase):
def setUp(self):
super(BackdoorPortTest, self).setUp()
self.mox = self.useFixture(moxstubout.MoxStubout()).mox
self.config = self.useFixture(config.Config()).config
def common_backdoor_port_setup(self):
self.sock = self.mox.CreateMockAnything()
self.mox.StubOutWithMock(eventlet, 'listen')
self.mox.StubOutWithMock(eventlet, 'spawn_n')
def test_backdoor_port_inuse(self):
self.config(backdoor_port=2345)
self.common_backdoor_port_setup()
eventlet.listen(('localhost', 2345)).AndRaise(
socket.error(errno.EADDRINUSE, ''))
self.mox.ReplayAll()
self.assertRaises(socket.error,
eventlet_backdoor.initialize_if_enabled)
def test_backdoor_port_range(self):
self.config(backdoor_port='8800:8899')
self.common_backdoor_port_setup()
eventlet.listen(('localhost', 8800)).AndReturn(self.sock)
self.sock.getsockname().AndReturn(('127.0.0.1', 8800))
eventlet.spawn_n(eventlet.backdoor.backdoor_server, self.sock,
locals=moxstubout.mox.IsA(dict))
self.mox.ReplayAll()
port = eventlet_backdoor.initialize_if_enabled()
self.assertEqual(port, 8800)
def test_backdoor_port_range_all_inuse(self):
self.config(backdoor_port='8800:8899')
self.common_backdoor_port_setup()
for i in range(8800, 8900):
eventlet.listen(('localhost', i)).AndRaise(
socket.error(errno.EADDRINUSE, ''))
self.mox.ReplayAll()
self.assertRaises(socket.error,
eventlet_backdoor.initialize_if_enabled)
def test_backdoor_port_bad(self):
self.config(backdoor_port='abc')
self.assertRaises(eventlet_backdoor.EventletBackdoorConfigValueError,
eventlet_backdoor.initialize_if_enabled)