mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 09:13:23 +00:00
update old cassette detection
This commit is contained in:
4
tests/fixtures/migration/new_cassette.json
vendored
4
tests/fixtures/migration/new_cassette.json
vendored
@@ -1,3 +1,6 @@
|
||||
{
|
||||
"version": 1,
|
||||
"interactions":
|
||||
[
|
||||
{
|
||||
"request": {
|
||||
@@ -29,3 +32,4 @@
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
2
tests/fixtures/migration/new_cassette.yaml
vendored
2
tests/fixtures/migration/new_cassette.yaml
vendored
@@ -1,3 +1,5 @@
|
||||
version: 1
|
||||
interactions:
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
|
||||
@@ -19,6 +19,13 @@ Deserializing: string (yaml converts from utf-8) -> bytestring
|
||||
|
||||
def deserialize(cassette_string, serializer):
|
||||
data = serializer.deserialize(cassette_string)
|
||||
if not isinstance(data, dict):
|
||||
raise ValueError(
|
||||
"Your cassette files were generated in an older version "
|
||||
"of VCR. Delete your cassettes or run the migration script."
|
||||
"See http://git.io/mHhLBg for more details."
|
||||
)
|
||||
|
||||
requests = [Request._from_dict(r['request']) for r in data['interactions']]
|
||||
responses = [compat.convert_to_bytes(r['response']) for r in data['interactions']]
|
||||
return requests, responses
|
||||
|
||||
Reference in New Issue
Block a user