mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
'''Basic tests about cassettes'''
|
|
# coding=utf-8
|
|
|
|
# External imports
|
|
import os
|
|
import urllib2
|
|
|
|
# Internal imports
|
|
import vcr
|
|
|
|
def test_nonexistent_directory(tmpdir):
|
|
'''If we load a cassette in a nonexistent directory, it can save ok'''
|
|
# Check to make sure directory doesnt exist
|
|
assert not os.path.exists(str(tmpdir.join('nonexistent')))
|
|
|
|
# Run VCR to create dir and cassette file
|
|
with vcr.use_cassette(str(tmpdir.join('nonexistent','cassette.yml'))):
|
|
urllib2.urlopen('http://httpbin.org/').read()
|
|
|
|
# This should have made the file and the directory
|
|
assert os.path.exists(str(tmpdir.join('nonexistent','cassette.yml')))
|
|
|
|
def test_unpatch(tmpdir):
|
|
'''Ensure that our cassette gets unpatched when we're done'''
|
|
with vcr.use_cassette(str(tmpdir.join('unpatch.yaml'))) as cass:
|
|
urllib2.urlopen('http://httpbin.org/').read()
|
|
|
|
# Make the same request, and assert that we haven't served any more
|
|
# requests out of cache
|
|
urllib2.urlopen('http://httpbin.org/').read()
|
|
assert cass.play_count == 0
|
|
|