
Python will call into the parent classes implementation of setUp/tearDown if there is no implementation in the child Also, make sure all setUp implementations subclassed off test.TestClass call the parent setUp so everything gets setup correctly Change-Id: If410cd412d9557a0d3172ec96b592fbd3fd67ffd
55 lines
2.1 KiB
Python
55 lines
2.1 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# 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 remote procedure calls using kombu + ssl
|
|
"""
|
|
|
|
from nova import test
|
|
from nova.rpc import impl_kombu
|
|
|
|
# Flag settings we will ensure get passed to amqplib
|
|
SSL_VERSION = "SSLv2"
|
|
SSL_CERT = "/tmp/cert.blah.blah"
|
|
SSL_CA_CERT = "/tmp/cert.ca.blah.blah"
|
|
SSL_KEYFILE = "/tmp/keyfile.blah.blah"
|
|
|
|
|
|
class RpcKombuSslTestCase(test.TestCase):
|
|
|
|
def setUp(self):
|
|
super(RpcKombuSslTestCase, self).setUp()
|
|
self.flags(kombu_ssl_keyfile=SSL_KEYFILE,
|
|
kombu_ssl_ca_certs=SSL_CA_CERT,
|
|
kombu_ssl_certfile=SSL_CERT,
|
|
kombu_ssl_version=SSL_VERSION,
|
|
rabbit_use_ssl=True)
|
|
|
|
def test_ssl_on_extended(self):
|
|
rpc = impl_kombu
|
|
conn = rpc.create_connection(True)
|
|
c = conn.connection
|
|
#This might be kombu version dependent...
|
|
#Since we are now peaking into the internals of kombu...
|
|
self.assertTrue(isinstance(c.connection.ssl, dict))
|
|
self.assertEqual(SSL_VERSION, c.connection.ssl.get("ssl_version"))
|
|
self.assertEqual(SSL_CERT, c.connection.ssl.get("certfile"))
|
|
self.assertEqual(SSL_CA_CERT, c.connection.ssl.get("ca_certs"))
|
|
self.assertEqual(SSL_KEYFILE, c.connection.ssl.get("keyfile"))
|
|
#That hash then goes into amqplib which then goes
|
|
#Into python ssl creation...
|