Browse Source
Adding the test suite has been holding the release too longpull/6/headbfc41e5
- bump to v0.5.224ac0da
- added http_timeout parameter816c5f7
- remove doc() call when building docstrings7f57b8e
- param name being shortened on non-array parms5b79abd
- rm py3.2 in travis; dropped support in coverageb07f059
- fix #4; method failing when format=vdfba30094
- reorginized the code in webapi1063165
- setup vcr cassette for webapi test suite2d24284
- add test suite for SteamID + enabled travis/cover
13 changed files with 593 additions and 120 deletions
@ -0,0 +1,12 @@ |
|||
language: python |
|||
python: |
|||
- "2.7" |
|||
- "3.3" |
|||
- "3.4" |
|||
install: |
|||
- make init |
|||
- pip install coveralls |
|||
script: |
|||
- make test |
|||
after_success: |
|||
- coveralls |
@ -0,0 +1,6 @@ |
|||
nose |
|||
coverage |
|||
mock |
|||
requests |
|||
enum34 |
|||
vcrpy |
@ -0,0 +1,245 @@ |
|||
import unittest |
|||
import mock |
|||
|
|||
from steam.steamid import SteamID, requests |
|||
from steam.enums import EType, EUniverse |
|||
|
|||
|
|||
class SteamID_initialization(unittest.TestCase): |
|||
def compare(self, obj, test_list): |
|||
self.assertEqual(obj.id, test_list[0]) |
|||
self.assertEqual(obj.type, test_list[1]) |
|||
self.assertEqual(obj.universe, test_list[2]) |
|||
self.assertEqual(obj.instance, test_list[3]) |
|||
|
|||
def test_arg_toomany(self): |
|||
with self.assertRaises(ValueError): |
|||
SteamID(1, 2) |
|||
with self.assertRaises(ValueError): |
|||
SteamID(1, 2, 3) |
|||
with self.assertRaises(ValueError): |
|||
SteamID(1, 2, 3, 4) |
|||
|
|||
###################################################### |
|||
# 1 ARG |
|||
###################################################### |
|||
@mock.patch.object(requests, "get") |
|||
def test_arg_community_url_id(self, mock_requests_get): |
|||
ResponseMock = mock.Mock() |
|||
ResponseMock.content = 'var asd = {"steamid":"76580280500085312","key":5123}' |
|||
mock_requests_get.return_value = ResponseMock |
|||
|
|||
# http |
|||
self.compare(SteamID("http://steamcommunity.com/id/testvanity"), |
|||
[123456, EType.Individual, EUniverse.Public, 4444] |
|||
) |
|||
|
|||
mock_requests_get.assert_called_with("http://steamcommunity.com/id/testvanity") |
|||
# https |
|||
self.compare(SteamID("https://steamcommunity.com/id/testvanity"), |
|||
[123456, EType.Individual, EUniverse.Public, 4444] |
|||
) |
|||
mock_requests_get.assert_called_with("https://steamcommunity.com/id/testvanity") |
|||
# raise |
|||
ResponseMock.content = "no steamid json :(" |
|||
with self.assertRaises(ValueError): |
|||
self.compare(SteamID("https://steamcommunity.com/id/testvanity"), |
|||
[123456, EType.Individual, EUniverse.Public, 4444] |
|||
) |
|||
|
|||
def test_arg_community_url_profiles(self): |
|||
# http |
|||
self.compare(SteamID("http://steamcommunity.com/profiles/76580280500085312"), |
|||
[123456, EType.Individual, EUniverse.Public, 4444] |
|||
) |
|||
# https |
|||
self.compare(SteamID("https://steamcommunity.com/profiles/76580280500085312"), |
|||
[123456, EType.Individual, EUniverse.Public, 4444] |
|||
) |
|||
|
|||
def test_arg_number_out_of_range(self): |
|||
self.assertRaises(ValueError, SteamID, -1) |
|||
self.assertRaises(ValueError, SteamID, '-1') |
|||
self.assertRaises(ValueError, SteamID, -5555555) |
|||
self.assertRaises(ValueError, SteamID, '-5555555') |
|||
self.assertRaises(ValueError, SteamID, 2**64) |
|||
self.assertRaises(ValueError, SteamID, str(2**64)) |
|||
self.assertRaises(ValueError, SteamID, 2**128) |
|||
self.assertRaises(ValueError, SteamID, str(2**128)) |
|||
|
|||
def test_arg_steam32(self): |
|||
self.compare(SteamID(1), |
|||
[1, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID('1'), |
|||
[1, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID(12), |
|||
[12, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID('12'), |
|||
[12, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID(123), |
|||
[123, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID('123'), |
|||
[123, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID(12345678), |
|||
[12345678, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID('12345678'), |
|||
[12345678, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID(0xffffFFFF), |
|||
[0xffffFFFF, EType.Individual, EUniverse.Public, 1]) |
|||
self.compare(SteamID(str(0xffffFFFF)), |
|||
[0xffffFFFF, EType.Individual, EUniverse.Public, 1]) |
|||
|
|||
def test_arg_steam64(self): |
|||
self.compare(SteamID(76580280500085312), |
|||
[123456, EType.Individual, EUniverse.Public, 4444] |
|||
) |
|||
self.compare(SteamID('76580280500085312'), |
|||
[123456, EType.Individual, EUniverse.Public, 4444] |
|||
) |
|||
self.compare(SteamID(103582791429521412), |
|||
[4, EType.Clan, EUniverse.Public, 0] |
|||
) |
|||
self.compare(SteamID('103582791429521412'), |
|||
[4, EType.Clan, EUniverse.Public, 0] |
|||
) |
|||
|
|||
###################################################### |
|||
# 1 arg - steam2/steam3 format |
|||
###################################################### |
|||
def test_arg_text_invalid(self): |
|||
with self.assertRaises(ValueError): |
|||
SteamID("randomtext") |
|||
|
|||
def test_arg_steam2(self): |
|||
self.compare(SteamID("STEAM_0:1:1"), |
|||
[3, EType.Individual, EUniverse.Public, 1] |
|||
) |
|||
self.compare(SteamID("STEAM_1:1:1"), |
|||
[3, EType.Individual, EUniverse.Public, 1] |
|||
) |
|||
self.compare(SteamID("STEAM_0:0:4"), |
|||
[8, EType.Individual, EUniverse.Public, 1] |
|||
) |
|||
self.compare(SteamID("STEAM_1:0:4"), |
|||
[8, EType.Individual, EUniverse.Public, 1] |
|||
) |
|||
|
|||
def test_arg_steam3(self): |
|||
self.compare(SteamID("[U:1:1234]"), |
|||
[1234, EType.Individual, EUniverse.Public, 1] |
|||
) |
|||
self.compare(SteamID("[G:1:1234]"), |
|||
[1234, EType.GameServer, EUniverse.Public, 1] |
|||
) |
|||
self.compare(SteamID("[g:1:4]"), |
|||
[4, EType.Clan, EUniverse.Public, 0] |
|||
) |
|||
self.compare(SteamID("[A:1:4]"), |
|||
[4, EType.AnonGameServer, EUniverse.Public, 0] |
|||
) |
|||
self.compare(SteamID("[A:1:1234:567]"), |
|||
[1234, EType.AnonGameServer, EUniverse.Public, 567] |
|||
) |
|||
|
|||
###################################################### |
|||
# KWARGS |
|||
###################################################### |
|||
def test_kwarg_id(self): |
|||
# id kwarg is required always |
|||
with self.assertRaises(ValueError): |
|||
SteamID(instance=0) |
|||
SteamID(id=None) |
|||
|
|||
self.assertEqual(SteamID(id=555).id, 555) |
|||
self.assertEqual(SteamID(id='555').id, 555) |
|||
|
|||
def test_kwarg_type(self): |
|||
with self.assertRaises(KeyError): |
|||
SteamID(id=5, type="doesn't exist") |
|||
with self.assertRaises(ValueError): |
|||
SteamID(id=5, type=99999999) |
|||
with self.assertRaises(AttributeError): |
|||
SteamID(id=5, type=None) |
|||
|
|||
self.assertEqual(SteamID(id=5, type=1).type, EType.Individual) |
|||
self.assertEqual(SteamID(id=5, type='Individual').type, EType.Individual) |
|||
self.assertEqual(SteamID(id=5, type='iNDIVIDUAL').type, EType.Individual) |
|||
|
|||
def test_kwarg_universe(self): |
|||
with self.assertRaises(KeyError): |
|||
SteamID(id=5, universe="doesn't exist") |
|||
with self.assertRaises(ValueError): |
|||
SteamID(id=5, universe=99999999) |
|||
with self.assertRaises(AttributeError): |
|||
SteamID(id=5, universe=None) |
|||
|
|||
self.assertEqual(SteamID(id=5, universe=1).universe, EUniverse.Public) |
|||
self.assertEqual(SteamID(id=5, universe='Public').universe, EUniverse.Public) |
|||
self.assertEqual(SteamID(id=5, universe='pUBLIC').universe, EUniverse.Public) |
|||
|
|||
def test_kwarg_instance(self): |
|||
self.assertEqual(SteamID(id=5, instance=1234).instance, 1234) |
|||
|
|||
for etype in EType: |
|||
self.assertEqual(SteamID(id=5, type=etype).instance, |
|||
1 if etype in (EType.Individual, EType.GameServer) else 0) |
|||
|
|||
def test_kwargs_invalid(self): |
|||
invalid = [0, EType.Invalid, EUniverse.Invalid, 0] |
|||
|
|||
self.compare(SteamID(), invalid) |
|||
self.compare(SteamID(id=0, type=0, universe=0, instance=0), invalid) |
|||
self.compare(SteamID(id=0, |
|||
type=EType.Invalid, |
|||
universe=EUniverse.Invalid, |
|||
instance=0, |
|||
), invalid) |
|||
self.compare(SteamID(id=0, |
|||
type='Invalid', |
|||
universe='Invalid', |
|||
instance=0, |
|||
), invalid) |
|||
self.compare(SteamID(id=0, |
|||
type='iNVALID', |
|||
universe='iNVALID', |
|||
instance=0, |
|||
), invalid) |
|||
|
|||
|
|||
class SteamID_properties(unittest.TestCase): |
|||
def test_repr(self): |
|||
# just to cover in coverage |
|||
repr(SteamID()) |
|||
|
|||
def test_str(self): |
|||
self.assertEqual(str(SteamID(76580280500085312)), '76580280500085312') |
|||
|
|||
def test_as_steam2(self): |
|||
self.assertEqual(SteamID('STEAM_0:1:4').as_steam2, 'STEAM_0:1:4') |
|||
self.assertEqual(SteamID('STEAM_1:1:4').as_steam2, 'STEAM_0:1:4') |
|||
|
|||
def test_as_steam3(self): |
|||
self.assertEqual(SteamID('[U:1:1234]').as_steam3, '[U:1:1234]') |
|||
self.assertEqual(SteamID('[g:1:4]').as_steam3, '[g:1:4]') |
|||
self.assertEqual(SteamID('[A:1:1234:567]').as_steam3, '[A:1:1234:567]') |
|||
self.assertEqual(SteamID('[G:1:1234:567]').as_steam3, '[G:1:1234]') |
|||
|
|||
def test_as_32(self): |
|||
self.assertEqual(SteamID(76580280500085312).as_32, 123456) |
|||
|
|||
def test_as_64(self): |
|||
self.assertEqual(SteamID(76580280500085312).as_64, 76580280500085312) |
|||
|
|||
def test_community_url(self): |
|||
# user url |
|||
self.assertEqual(SteamID(76580280500085312).community_url, |
|||
'https://steamcommunity.com/profiles/76580280500085312' |
|||
) |
|||
# group url |
|||
self.assertEqual(SteamID('[g:1:4]').community_url, |
|||
'https://steamcommunity.com/gid/103582791429521412' |
|||
) |
|||
# else None |
|||
self.assertEqual(SteamID('[A:1:4]').community_url, |
|||
None |
|||
) |
@ -0,0 +1,14 @@ |
|||
import unittest |
|||
import mock |
|||
import vcr |
|||
|
|||
from steam.webapi import WebAPI, requests |
|||
from steam.enums import EType, EUniverse |
|||
|
|||
test_api_key = 'test_api_key' |
|||
|
|||
|
|||
class TCwebapi(unittest.TestCase): |
|||
@vcr.use_cassette('vcr/webapi_init.json', mode='once', serializer='json') |
|||
def test_initialization(self): |
|||
api = WebAPI(test_api_key) |
@ -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}" |
|||
} |
|||
} |
|||
} |
|||
] |
|||
} |
File diff suppressed because one or more lines are too long
@ -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…
Reference in new issue