![gongysh](/assets/img/avatar_default.png)
On plugin side, we use normal API context if any to call RPC methods. We use our plugin dispatcher to convert RPC context into quantum admin context. After that the callback's functions have the first argument context as normal quantum context. On agent side, we use admin context without session property as its RPC calling context. Call back context is default RPCCommonContext in Openstack common modules. This patch also fixes the problem in the following bug: Bug #1077012 Change-Id: I913b48dcd84d275cd7de30ca990be00c243e63ea
67 lines
2.3 KiB
Python
67 lines
2.3 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 Nicira, Inc.
|
|
# 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.
|
|
|
|
import unittest2 as unittest
|
|
|
|
import mock
|
|
|
|
from quantum import context
|
|
|
|
|
|
class TestQuantumContext(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
db_api = 'quantum.db.api.get_session'
|
|
self._db_api_session_patcher = mock.patch(db_api)
|
|
self.db_api_session = self._db_api_session_patcher.start()
|
|
|
|
def tearDown(self):
|
|
self._db_api_session_patcher.stop()
|
|
|
|
def testQuantumContextCreate(self):
|
|
cxt = context.Context('user_id', 'tenant_id')
|
|
self.assertEquals('user_id', cxt.user_id)
|
|
self.assertEquals('tenant_id', cxt.project_id)
|
|
|
|
def testQuantumContextToDict(self):
|
|
cxt = context.Context('user_id', 'tenant_id')
|
|
cxt_dict = cxt.to_dict()
|
|
self.assertEquals('user_id', cxt_dict['user_id'])
|
|
self.assertEquals('tenant_id', cxt_dict['project_id'])
|
|
|
|
def testQuantumContextAdminToDict(self):
|
|
self.db_api_session.return_value = 'fakesession'
|
|
cxt = context.get_admin_context()
|
|
cxt_dict = cxt.to_dict()
|
|
self.assertIsNone(cxt_dict['user_id'])
|
|
self.assertIsNone(cxt_dict['tenant_id'])
|
|
self.assertIsNotNone(cxt.session)
|
|
self.assertFalse('session' in cxt_dict)
|
|
|
|
def testQuantumContextAdminWithoutSessionToDict(self):
|
|
cxt = context.get_admin_context_without_session()
|
|
cxt_dict = cxt.to_dict()
|
|
self.assertIsNone(cxt_dict['user_id'])
|
|
self.assertIsNone(cxt_dict['tenant_id'])
|
|
try:
|
|
session = cxt.session
|
|
except Exception:
|
|
pass
|
|
else:
|
|
self.assertFalse(True, 'without_session admin context'
|
|
'should has no session property!')
|