Browse Source

setup vcr cassette for webapi test suite

pull/6/head
Rossen Georgiev 10 years ago
parent
commit
1063165d3d
  1. 1
      requirements.txt
  2. 0
      tests/__init__.py
  3. 12
      tests/test_webapi.py
  4. 49
      vcr/webapi_getserverinfo.json
  5. 49
      vcr/webapi_init.json
  6. 49
      vcr/webapi_resolovevanityurl.json

1
requirements.txt

@ -3,3 +3,4 @@ coverage
mock mock
requests requests
enum34 enum34
vcrpy

0
tests/__init__.py

12
tests/test_webapi.py

@ -0,0 +1,12 @@
import unittest
import mock
import vcr
from steam.webapi import WebAPI, requests
from steam.enums import EType, EUniverse
class TCwebapi(unittest.TestCase):
@vcr.use_cassette('vcr/webapi_init.json', mode='once', serializer='json')
def test_initialization(self):
api = WebAPI(None)

49
vcr/webapi_getserverinfo.json

@ -0,0 +1,49 @@
{
"version": 1,
"interactions": [
{
"request": {
"body": null,
"headers": {
"Connection": [
"keep-alive"
],
"Accept-Encoding": [
"gzip, deflate"
],
"Accept": [
"*/*"
],
"User-Agent": [
"python-requests/2.7.0 CPython/2.7.10 CYGWIN_NT-10.0/2.2.0(0.289/5/3)"
]
},
"method": "GET",
"uri": "https://api.steampowered.com/ISteamWebAPIUtil/GetServerInfo/v1/?key=test_api_key&format=json"
},
"response": {
"status": {
"message": "OK",
"code": 200
},
"headers": {
"date": [
"Sun, 23 Aug 2015 22:58:10 GMT"
],
"content-length": [
"78"
],
"expires": [
"Sun, 23 Aug 2015 22:58:10 GMT"
],
"content-type": [
"application/json; charset=UTF-8"
]
},
"body": {
"string": "{\n\t\"servertime\": 1440370690,\n\t\"servertimestring\": \"Sun Aug 23 15:58:10 2015\"\n}"
}
}
}
]
}

49
vcr/webapi_init.json

File diff suppressed because one or more lines are too long

49
vcr/webapi_resolovevanityurl.json

@ -0,0 +1,49 @@
{
"version": 1,
"interactions": [
{
"request": {
"body": null,
"headers": {
"Connection": [
"keep-alive"
],
"Accept-Encoding": [
"gzip, deflate"
],
"Accept": [
"*/*"
],
"User-Agent": [
"python-requests/2.7.0 CPython/2.7.10 CYGWIN_NT-10.0/2.2.0(0.289/5/3)"
]
},
"method": "GET",
"uri": "https://api.steampowered.com/ISteamUser/ResolveVanityURL/v1/?url_type=2&vanityurl=valve&key=test_api_key&format=json"
},
"response": {
"status": {
"message": "OK",
"code": 200
},
"headers": {
"date": [
"Sun, 23 Aug 2015 22:58:21 GMT"
],
"content-length": [
"71"
],
"expires": [
"Sun, 23 Aug 2015 22:58:21 GMT"
],
"content-type": [
"application/json; charset=UTF-8"
]
},
"body": {
"string": "{\n\t\"response\": {\n\t\t\"steamid\": \"103582791429521412\",\n\t\t\"success\": 1\n\t}\n}"
}
}
}
]
}
Loading…
Cancel
Save