mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 17:15:35 +00:00
update old cassette detection
This commit is contained in:
8
tests/fixtures/migration/new_cassette.json
vendored
8
tests/fixtures/migration/new_cassette.json
vendored
@@ -1,4 +1,7 @@
|
|||||||
[
|
{
|
||||||
|
"version": 1,
|
||||||
|
"interactions":
|
||||||
|
[
|
||||||
{
|
{
|
||||||
"request": {
|
"request": {
|
||||||
"body": null,
|
"body": null,
|
||||||
@@ -28,4 +31,5 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
}
|
||||||
|
|||||||
2
tests/fixtures/migration/new_cassette.yaml
vendored
2
tests/fixtures/migration/new_cassette.yaml
vendored
@@ -1,3 +1,5 @@
|
|||||||
|
version: 1
|
||||||
|
interactions:
|
||||||
- request:
|
- request:
|
||||||
body: null
|
body: null
|
||||||
headers:
|
headers:
|
||||||
|
|||||||
@@ -19,6 +19,13 @@ Deserializing: string (yaml converts from utf-8) -> bytestring
|
|||||||
|
|
||||||
def deserialize(cassette_string, serializer):
|
def deserialize(cassette_string, serializer):
|
||||||
data = serializer.deserialize(cassette_string)
|
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']]
|
requests = [Request._from_dict(r['request']) for r in data['interactions']]
|
||||||
responses = [compat.convert_to_bytes(r['response']) for r in data['interactions']]
|
responses = [compat.convert_to_bytes(r['response']) for r in data['interactions']]
|
||||||
return requests, responses
|
return requests, responses
|
||||||
|
|||||||
Reference in New Issue
Block a user