diff --git a/src/cachetools/cache.py b/src/cachetools/cache.py new file mode 100644 index 0000000..5482b53 --- /dev/null +++ b/src/cachetools/cache.py @@ -0,0 +1,8 @@ +import warnings + +from . import Cache + +warnings.warn( + "cachetools.cache is deprecated, please use cachetools.Cache", + DeprecationWarning +) diff --git a/src/cachetools/fifo.py b/src/cachetools/fifo.py new file mode 100644 index 0000000..3897656 --- /dev/null +++ b/src/cachetools/fifo.py @@ -0,0 +1,8 @@ +import warnings + +from . import FIFOCache + +warnings.warn( + "cachetools.fifo is deprecated, please use cachetools.FIFOCache", + DeprecationWarning +) diff --git a/src/cachetools/lfu.py b/src/cachetools/lfu.py new file mode 100644 index 0000000..3098a0f --- /dev/null +++ b/src/cachetools/lfu.py @@ -0,0 +1,8 @@ +import warnings + +from . import LFUCache + +warnings.warn( + "cachetools.lfu is deprecated, please use cachetools.LFUCache", + DeprecationWarning +) diff --git a/src/cachetools/lru.py b/src/cachetools/lru.py new file mode 100644 index 0000000..e2f56e8 --- /dev/null +++ b/src/cachetools/lru.py @@ -0,0 +1,8 @@ +import warnings + +from . import LRUCache + +warnings.warn( + "cachetools.lru is deprecated, please use cachetools.LRUCache", + DeprecationWarning +) diff --git a/src/cachetools/mru.py b/src/cachetools/mru.py new file mode 100644 index 0000000..0dc1fee --- /dev/null +++ b/src/cachetools/mru.py @@ -0,0 +1,8 @@ +import warnings + +from . import MRUCache + +warnings.warn( + "cachetools.mru is deprecated, please use cachetools.MRUCache", + DeprecationWarning +) diff --git a/src/cachetools/rr.py b/src/cachetools/rr.py new file mode 100644 index 0000000..9e8cdb7 --- /dev/null +++ b/src/cachetools/rr.py @@ -0,0 +1,8 @@ +import warnings + +from . import RRCache + +warnings.warn( + "cachetools.rr is deprecated, please use cachetools.RRCache", + DeprecationWarning +) diff --git a/src/cachetools/ttl.py b/src/cachetools/ttl.py new file mode 100644 index 0000000..059d91a --- /dev/null +++ b/src/cachetools/ttl.py @@ -0,0 +1,8 @@ +import warnings + +from . import TTLCache + +warnings.warn( + "cachetools.ttl is deprecated, please use cachetools.TTLCache", + DeprecationWarning +) diff --git a/tests/test_deprecated.py b/tests/test_deprecated.py new file mode 100644 index 0000000..7cdd137 --- /dev/null +++ b/tests/test_deprecated.py @@ -0,0 +1,59 @@ +import unittest +import warnings + +class DeprecatedTest(unittest.TestCase): + def test_cache(self): + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + from cachetools.cache import Cache + assert len(w) == 1 + assert issubclass(w[-1].category, DeprecationWarning) + assert "cachetools.cache" in str(w[-1].message) + + def test_fifo(self): + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + from cachetools.fifo import FIFOCache + assert len(w) == 1 + assert issubclass(w[-1].category, DeprecationWarning) + assert "cachetools.fifo" in str(w[-1].message) + + def test_lfu(self): + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + from cachetools.lfu import LFUCache + assert len(w) == 1 + assert issubclass(w[-1].category, DeprecationWarning) + assert "cachetools.lfu" in str(w[-1].message) + + def test_lru(self): + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + from cachetools.lru import LRUCache + assert len(w) == 1 + assert issubclass(w[-1].category, DeprecationWarning) + assert "cachetools.lru" in str(w[-1].message) + + def test_mru(self): + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + from cachetools.mru import MRUCache + assert len(w) == 1 + assert issubclass(w[-1].category, DeprecationWarning) + assert "cachetools.mru" in str(w[-1].message) + + def test_rr(self): + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + from cachetools.rr import RRCache + assert len(w) == 1 + assert issubclass(w[-1].category, DeprecationWarning) + assert "cachetools.rr" in str(w[-1].message) + + def test_ttl(self): + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + from cachetools.ttl import TTLCache + assert len(w) == 1 + assert issubclass(w[-1].category, DeprecationWarning) + assert "cachetools.ttl" in str(w[-1].message)