blob: 0a89df7155d0442eace2f1659c334eccf7030d12 [file]
# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.
import sys
import types
import typing
import pytest
from cryptography.utils import deprecated
class TestDeprecated:
@typing.no_type_check
def test_deprecated(self, monkeypatch):
mod = types.ModuleType("TestDeprecated/test_deprecated")
monkeypatch.setitem(sys.modules, mod.__name__, mod)
deprecated(
name="X",
value=1,
module_name=mod.__name__,
message="deprecated message text",
warning_class=DeprecationWarning,
)
mod.Y = deprecated(
value=2,
module_name=mod.__name__,
message="more deprecated text",
warning_class=PendingDeprecationWarning,
)
mod = sys.modules[mod.__name__]
mod.Z = 3
with pytest.warns(DeprecationWarning, match="deprecated message text"):
assert mod.X == 1
with pytest.warns(
PendingDeprecationWarning, match="more deprecated text"
):
assert mod.Y == 2
assert mod.Z == 3
assert "Y" in dir(mod)
@typing.no_type_check
def test_deleting_deprecated_members(self, monkeypatch):
mod = types.ModuleType("TestDeprecated/test_deprecated")
monkeypatch.setitem(sys.modules, mod.__name__, mod)
deprecated(
name="X",
value=1,
module_name=mod.__name__,
message="deprecated message text",
warning_class=DeprecationWarning,
)
mod.Y = deprecated(
value=2,
module_name=mod.__name__,
message="more deprecated text",
warning_class=PendingDeprecationWarning,
)
mod = sys.modules[mod.__name__]
mod.Z = 3
with pytest.warns(DeprecationWarning, match="deprecated message text"):
del mod.X
with pytest.warns(
PendingDeprecationWarning, match="more deprecated text"
):
del mod.Y
del mod.Z
assert "X" not in dir(mod)
assert "Y" not in dir(mod)
assert "Z" not in dir(mod)
with pytest.raises(AttributeError):
del mod.X