本文整理汇总了Python中cachecontrol.CacheControl.delete方法的典型用法代码示例。如果您正苦于以下问题:Python CacheControl.delete方法的具体用法?Python CacheControl.delete怎么用?Python CacheControl.delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cachecontrol.CacheControl
的用法示例。
在下文中一共展示了CacheControl.delete方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_max_bytes
# 需要导入模块: from cachecontrol import CacheControl [as 别名]
# 或者: from cachecontrol.CacheControl import delete [as 别名]
def test_max_bytes(self, tmpdir, sess):
"""
Test that caches the first url but not the second because
the maximum bytes have been reached for the cache.
"""
# use a cache with max_bytes set
max_bytes = 1400
self.cache = FileCache(str(tmpdir), max_bytes=max_bytes)
sess = CacheControl(requests.Session(), cache=self.cache)
url1 = self.url + ''.join(sample(string.ascii_lowercase, randint(2, 4)))
url2 = self.url + ''.join(sample(string.ascii_lowercase, randint(2, 4)))
assert url1 != url2
# fill up the cache with url1
response = sess.get(url1)
assert not response.from_cache
# make sure it got into the cache
response = sess.get(url1)
assert response.from_cache
# do url2 now
response = sess.get(url2)
assert not response.from_cache
# make sure url2 was NOT cached
response = sess.get(url2)
assert not response.from_cache
# clear the cache
response = sess.delete(url1)
assert not response.from_cache
# re-add to cache since bytes should be back to 0
response = sess.get(url1)
assert not response.from_cache
# verify from cache again
response = sess.get(url1)
assert response.from_cache