mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
* Drop support for legacy Python 2.7 * Upgrade Python syntax with pyupgrade --py3-plus * Trim testing matrix to remove python2 * re-enable python3.8 in travis as tests that are not allowed to fail * Remove some six * The future is now * Remove Python 2 imports * Add back example, but change py27 to py36 * Remove redundant compat.py * Blacken * Credit hugovk in changelog WIP Updating Sphinx Docs and AutoDoc * Fix AutoDoc and update Sphinx theme to python_doc_theme * Fix #420, autodoc even undocumented (docstring-less) method signatures * Doc theme 'nature'. Add global TOC to doc sidebar * Comment last reference to package six * Changelog is now a consistent format * Yet another documentation fix for links and title hierarchy * Start work on new SVG logo test SVG in README trying to test new SVG logo in README Apply centering Apply readme logo centering Trying to align image Trying random shit trying align right add emoji Large logo has higher priority Change title hierarchy Actually use a H1 Try again try and organise badges revert link back to point at master * updated new take on VCR logo as SVG code * Testing modern logo in docs * Add sanitize for rendering SVG * Switch to alabaster theme * Update vcrpy logo (#503) * Add credit for V4 logo changes. * Add rewind and play animation * Add svg into ReadTheDocs static assets so that it can be hosted so the animations work. * Need to embedd the SVG for ReadTheDocs somewhere so I can get the link to later embed in the README Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Sean Bailey <sean@seanbailey.io>
56 lines
1.5 KiB
Python
56 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Basic tests about save behavior"""
|
|
|
|
# External imports
|
|
import os
|
|
import time
|
|
from urllib.request import urlopen
|
|
|
|
# Internal imports
|
|
import vcr
|
|
|
|
|
|
def test_disk_saver_nowrite(tmpdir, httpbin):
|
|
"""
|
|
Ensure that when you close a cassette without changing it it doesn't
|
|
rewrite the file
|
|
"""
|
|
fname = str(tmpdir.join("synopsis.yaml"))
|
|
with vcr.use_cassette(fname) as cass:
|
|
urlopen(httpbin.url).read()
|
|
assert cass.play_count == 0
|
|
last_mod = os.path.getmtime(fname)
|
|
|
|
with vcr.use_cassette(fname) as cass:
|
|
urlopen(httpbin.url).read()
|
|
assert cass.play_count == 1
|
|
assert cass.dirty is False
|
|
last_mod2 = os.path.getmtime(fname)
|
|
|
|
assert last_mod == last_mod2
|
|
|
|
|
|
def test_disk_saver_write(tmpdir, httpbin):
|
|
"""
|
|
Ensure that when you close a cassette after changing it it does
|
|
rewrite the file
|
|
"""
|
|
fname = str(tmpdir.join("synopsis.yaml"))
|
|
with vcr.use_cassette(fname) as cass:
|
|
urlopen(httpbin.url).read()
|
|
assert cass.play_count == 0
|
|
last_mod = os.path.getmtime(fname)
|
|
|
|
# Make sure at least 1 second passes, otherwise sometimes
|
|
# the mtime doesn't change
|
|
time.sleep(1)
|
|
|
|
with vcr.use_cassette(fname, record_mode="any") as cass:
|
|
urlopen(httpbin.url).read()
|
|
urlopen(httpbin.url + "/get").read()
|
|
assert cass.play_count == 1
|
|
assert cass.dirty
|
|
last_mod2 = os.path.getmtime(fname)
|
|
|
|
assert last_mod != last_mod2
|