当前位置: 首页>>代码示例>>Python>>正文


Python DictCache.set方法代码示例

本文整理汇总了Python中cachecontrol.cache.DictCache.set方法的典型用法代码示例。如果您正苦于以下问题:Python DictCache.set方法的具体用法?Python DictCache.set怎么用?Python DictCache.set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cachecontrol.cache.DictCache的用法示例。


在下文中一共展示了DictCache.set方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: TestDisabledETags

# 需要导入模块: from cachecontrol.cache import DictCache [as 别名]
# 或者: from cachecontrol.cache.DictCache import set [as 别名]
class TestDisabledETags(object):
    """Test our use of ETags when the response is stale and the
    response has an ETag.
    """

    @pytest.fixture()
    def sess(self, server):
        self.etag_url = urljoin(server.application_url, "/etag")
        self.update_etag_url = urljoin(server.application_url, "/update_etag")
        self.cache = DictCache()
        sess = CacheControl(requests.Session(), cache=self.cache, cache_etags=False, serializer=NullSerializer())
        return sess

    def test_expired_etags_if_none_match_response(self, sess):
        """Make sure an expired response that contains an ETag uses
        the If-None-Match header.
        """
        # get our response
        r = sess.get(self.etag_url)

        # expire our request by changing the date. Our test endpoint
        # doesn't provide time base caching headers, so we add them
        # here in order to expire the request.
        r.headers["Date"] = "Tue, 26 Nov 2012 00:50:49 GMT"
        self.cache.set(self.etag_url, r)

        r = sess.get(self.etag_url)
        assert r.from_cache
        assert "if-none-match" in r.request.headers
        assert r.status_code == 200
开发者ID:hongquantq92,项目名称:cachecontrol,代码行数:32,代码来源:test_etag.py


注:本文中的cachecontrol.cache.DictCache.set方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。