Proper deprecation for Session.construct()

Session.construct() wasn't properly deprecated since the deprecation
was only mentioned in the docstring. Proper deprecation requires use
of warnings/debtcollector and documentation.

bp deprecations

Change-Id: Ieff238aff9d39cfbbb80381b2392c33d0359acb3
This commit is contained in:
Brant Knudson
2015-07-26 07:42:10 -05:00
parent 0d293eaf44
commit 58cc453b20
5 changed files with 22 additions and 8 deletions

View File

@@ -57,7 +57,7 @@ def Client(version=None, unstable=False, session=None, **kwargs):
cannot be found.
"""
if not session:
session = client_session.Session.construct(kwargs)
session = client_session.Session._construct(kwargs)
d = discover.Discover(session=session, **kwargs)
return d.create_client(version=version, unstable=unstable)

View File

@@ -74,7 +74,7 @@ def version_match(required, candidate):
def available_versions(url, session=None, **kwargs):
"""Retrieve raw version data from a url."""
if not session:
session = client_session.Session.construct(kwargs)
session = client_session.Session._construct(kwargs)
return _discover.get_version_data(session, url)
@@ -143,7 +143,7 @@ class Discover(_discover.Discover):
@utils.positional(2)
def __init__(self, session=None, authenticated=None, **kwargs):
if not session:
session = client_session.Session.construct(kwargs)
session = client_session.Session._construct(kwargs)
kwargs['session'] = session
url = None

View File

@@ -346,7 +346,7 @@ class HTTPClient(baseclient.Client, base.BaseAuthPlugin):
if not session:
kwargs['session'] = _FakeRequestSession()
session = client_session.Session.construct(kwargs)
session = client_session.Session._construct(kwargs)
session.auth = self
super(HTTPClient, self).__init__(session=session)

View File

@@ -17,6 +17,7 @@ import logging
import os
import socket
import time
import warnings
from oslo_config import cfg
from oslo_serialization import jsonutils
@@ -525,15 +526,27 @@ class Session(object):
new request-style arguments.
.. warning::
*DEPRECATED*: This function is purely for bridging the gap between
older client arguments and the session arguments that they relate
to. It is not intended to be used as a generic Session Factory.
*DEPRECATED as of 1.7.0*: This function is purely for bridging the
gap between older client arguments and the session arguments that
they relate to. It is not intended to be used as a generic Session
Factory. This function may be removed in the 2.0.0 release.
This function purposefully modifies the input kwargs dictionary so that
the remaining kwargs dict can be reused and passed on to other
functions without session arguments.
"""
warnings.warn(
'Session.construct() is deprecated as of the 1.7.0 release in '
'favor of using session constructor and may be removed in the '
'2.0.0 release.', DeprecationWarning)
return cls._construct(kwargs)
@classmethod
def _construct(cls, kwargs):
params = {}
for attr in ('verify', 'cacert', 'cert', 'key', 'insecure',

View File

@@ -337,7 +337,8 @@ class ConstructSessionFromArgsTests(utils.TestCase):
def _s(self, k=None, **kwargs):
k = k or kwargs
return client_session.Session.construct(k)
with self.deprecations.expect_deprecations_here():
return client_session.Session.construct(k)
def test_verify(self):
self.assertFalse(self._s(insecure=True).verify)