steam-condenser 1.3.5 → 1.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +228 -0
- data/CONTRIBUTING.md +59 -0
- data/Gemfile.lock +12 -13
- data/README.md +9 -4
- data/lib/steam-condenser/version.rb +1 -1
- data/lib/steam/community/alien_swarm/alien_swarm_mission.rb +10 -9
- data/lib/steam/community/alien_swarm/alien_swarm_stats.rb +74 -72
- data/lib/steam/community/css/css_map.rb +2 -2
- data/lib/steam/community/css/css_stats.rb +54 -56
- data/lib/steam/community/css/css_weapon.rb +4 -4
- data/lib/steam/community/game_item.rb +2 -3
- data/lib/steam/community/game_leaderboard.rb +22 -15
- data/lib/steam/community/l4d/abstract_l4d_stats.rb +64 -61
- data/lib/steam/community/l4d/l4d2_stats.rb +26 -21
- data/lib/steam/community/steam_id.rb +8 -11
- data/lib/steam/community/web_api.rb +19 -14
- data/lib/steam/packets/s2a_info2_packet.rb +16 -14
- data/lib/steam/packets/s2a_info_detailed_packet.rb +24 -19
- data/lib/steam/packets/steam_packet_factory.rb +7 -2
- data/lib/steam/servers/game_server.rb +3 -2
- data/lib/steam/servers/master_server.rb +1 -1
- data/lib/steam/sockets/source_socket.rb +4 -9
- data/pkg/steam-condenser-1.3.5.gem +0 -0
- data/pkg/steam-condenser-1.3.5/Gemfile +7 -0
- data/pkg/steam-condenser-1.3.5/Gemfile.lock +45 -0
- data/pkg/steam-condenser-1.3.5/LICENSE +25 -0
- data/pkg/steam-condenser-1.3.5/README.md +70 -0
- data/pkg/steam-condenser-1.3.5/Rakefile +46 -0
- data/pkg/steam-condenser-1.3.5/lib/core_ext/stringio.rb +91 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/packet_format_error.rb +13 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/rcon_ban_error.rb +22 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/rcon_no_auth_error.rb +21 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/steam_condenser_error.rb +26 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/timeout_error.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/web_api_error.rb +57 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser.rb +18 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/community.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/servers.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/version.rb +11 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_mission.rb +119 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_stats.rb +186 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_weapon.rb +49 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/app_news.rb +133 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/cacheable.rb +199 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_map.rb +61 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_stats.rb +142 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_weapon.rb +69 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/defense_grid/defense_grid_stats.rb +238 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_class.rb +90 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_stats.rb +62 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_weapon.rb +67 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_beta_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_item.rb +33 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_achievement.rb +109 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_class.rb +22 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_inventory.rb +171 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_item.rb +156 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_item_schema.rb +131 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_leaderboard.rb +205 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_leaderboard_entry.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_stats.rb +175 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_weapon.rb +41 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/abstract_l4d_stats.rb +185 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/abstract_l4d_weapon.rb +56 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_map.rb +90 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_stats.rb +174 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_weapon.rb +38 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_explosive.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_map.rb +65 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_stats.rb +73 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_weapon.rb +26 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_item.rb +55 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_stats.rb +33 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_game.rb +193 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_group.rb +129 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_id.rb +498 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_beta_inventory.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_class.rb +92 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_class_factory.rb +40 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_engineer.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_golden_wrench.rb +70 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_item.rb +55 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_medic.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_sniper.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_spy.rb +41 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_stats.rb +77 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/web_api.rb +130 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/xml_data.rb +27 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2m_get_servers_batch2_packet.rb +59 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_info_packet.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_player_packet.rb +31 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_rules_packet.rb +32 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_serverquery_getchallenge_packet.rb +25 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/c2m_checkmd5_packet.rb +31 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2a_server_batch_packet.rb +52 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2c_isvalidmd5_packet.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2s_requestrestart_packet.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_auth_request.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_auth_response.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_exec_request.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_exec_response.rb +37 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_goldsrc_request.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_goldsrc_response.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_packet.rb +57 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_packet_factory.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_terminator.rb +29 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/request_with_challenge.rb +19 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info2_packet.rb +74 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info_base_packet.rb +25 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info_detailed_packet.rb +59 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_logstring_packet.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_player_packet.rb +44 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_rules_packet.rb +48 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2c_challenge_packet.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2m_heartbeat2_packet.rb +72 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/steam_packet.rb +52 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/steam_packet_factory.rb +108 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/game_server.rb +392 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/goldsrc_server.rb +74 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/master_server.rb +188 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/server.rb +115 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/source_server.rb +117 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/goldsrc_socket.rb +142 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/master_server_socket.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/rcon_socket.rb +103 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/source_socket.rb +78 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/steam_socket.rb +91 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/steam_player.rb +143 -0
- data/pkg/steam-condenser-1.3.5/steam-condenser.gemspec +26 -0
- data/pkg/steam-condenser-1.3.5/test/core_ext/test_stringio.rb +59 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/invalid.xml +2 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/sonofthor.xml +882 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/status_goldsrc +3 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/status_source +3 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/valve-members.xml +231 -0
- data/pkg/steam-condenser-1.3.5/test/helper.rb +48 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_cacheable.rb +100 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_steam_group.rb +83 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_steam_id.rb +144 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_web_api.rb +98 -0
- data/pkg/steam-condenser-1.3.5/test/steam/packets/test_steam_packet.rb +37 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_game_server.rb +296 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_goldsrc_server.rb +59 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_master_server.rb +131 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_server.rb +72 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_source_server.rb +134 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_goldsrc_socket.rb +127 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_master_server_socket.rb +42 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_rcon_socket.rb +118 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_source_socket.rb +77 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_steam_socket.rb +97 -0
- data/steam-condenser.gemspec +2 -3
- data/test/steam/community/test_cacheable.rb +3 -0
- data/test/steam/community/test_web_api.rb +15 -2
- data/test/steam/packets/test_steam_packet.rb +1 -1
- data/test/steam/sockets/test_source_socket.rb +1 -1
- metadata +151 -27
@@ -0,0 +1,231 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<memberList>
|
3
|
+
<groupID64>103582791429521412</groupID64>
|
4
|
+
<memberCount>221</memberCount>
|
5
|
+
<totalPages>1</totalPages>
|
6
|
+
<currentPage>1</currentPage>
|
7
|
+
<startingMember>0</startingMember>
|
8
|
+
<members>
|
9
|
+
<steamID64>76561197960265740</steamID64>
|
10
|
+
<steamID64>76561197964770089</steamID64>
|
11
|
+
<steamID64>76561197967162108</steamID64>
|
12
|
+
<steamID64>76561197994632741</steamID64>
|
13
|
+
<steamID64>76561197970280218</steamID64>
|
14
|
+
<steamID64>76561197966899291</steamID64>
|
15
|
+
<steamID64>76561197980865448</steamID64>
|
16
|
+
<steamID64>76561197971161698</steamID64>
|
17
|
+
<steamID64>76561197960269040</steamID64>
|
18
|
+
<steamID64>76561197960563532</steamID64>
|
19
|
+
<steamID64>76561197971049296</steamID64>
|
20
|
+
<steamID64>76561197960265738</steamID64>
|
21
|
+
<steamID64>76561198014254115</steamID64>
|
22
|
+
<steamID64>76561197960402283</steamID64>
|
23
|
+
<steamID64>76561197978236369</steamID64>
|
24
|
+
<steamID64>76561197961301890</steamID64>
|
25
|
+
<steamID64>76561197985607672</steamID64>
|
26
|
+
<steamID64>76561197961036066</steamID64>
|
27
|
+
<steamID64>76561197971630295</steamID64>
|
28
|
+
<steamID64>76561198042665686</steamID64>
|
29
|
+
<steamID64>76561197977113234</steamID64>
|
30
|
+
<steamID64>76561197961626070</steamID64>
|
31
|
+
<steamID64>76561197968452293</steamID64>
|
32
|
+
<steamID64>76561197974593417</steamID64>
|
33
|
+
<steamID64>76561197987393094</steamID64>
|
34
|
+
<steamID64>76561197991751968</steamID64>
|
35
|
+
<steamID64>76561197975593810</steamID64>
|
36
|
+
<steamID64>76561197967144365</steamID64>
|
37
|
+
<steamID64>76561197970314454</steamID64>
|
38
|
+
<steamID64>76561197969321754</steamID64>
|
39
|
+
<steamID64>76561197970892150</steamID64>
|
40
|
+
<steamID64>76561197982261816</steamID64>
|
41
|
+
<steamID64>76561197960860649</steamID64>
|
42
|
+
<steamID64>76561197969400141</steamID64>
|
43
|
+
<steamID64>76561197984437106</steamID64>
|
44
|
+
<steamID64>76561197991390878</steamID64>
|
45
|
+
<steamID64>76561197970565175</steamID64>
|
46
|
+
<steamID64>76561197981291930</steamID64>
|
47
|
+
<steamID64>76561197961420203</steamID64>
|
48
|
+
<steamID64>76561197989577350</steamID64>
|
49
|
+
<steamID64>76561198000175595</steamID64>
|
50
|
+
<steamID64>76561197999000345</steamID64>
|
51
|
+
<steamID64>76561197972755855</steamID64>
|
52
|
+
<steamID64>76561197968575517</steamID64>
|
53
|
+
<steamID64>76561197960508417</steamID64>
|
54
|
+
<steamID64>76561197971951755</steamID64>
|
55
|
+
<steamID64>76561197960265749</steamID64>
|
56
|
+
<steamID64>76561197960265731</steamID64>
|
57
|
+
<steamID64>76561197968304490</steamID64>
|
58
|
+
<steamID64>76561197960423941</steamID64>
|
59
|
+
<steamID64>76561197973185198</steamID64>
|
60
|
+
<steamID64>76561197974807412</steamID64>
|
61
|
+
<steamID64>76561197971292977</steamID64>
|
62
|
+
<steamID64>76561197969720282</steamID64>
|
63
|
+
<steamID64>76561197968848473</steamID64>
|
64
|
+
<steamID64>76561197978206069</steamID64>
|
65
|
+
<steamID64>76561197965461135</steamID64>
|
66
|
+
<steamID64>76561197960265838</steamID64>
|
67
|
+
<steamID64>76561197970543183</steamID64>
|
68
|
+
<steamID64>76561197993060890</steamID64>
|
69
|
+
<steamID64>76561197968152886</steamID64>
|
70
|
+
<steamID64>76561197978266558</steamID64>
|
71
|
+
<steamID64>76561197960287930</steamID64>
|
72
|
+
<steamID64>76561197984751122</steamID64>
|
73
|
+
<steamID64>76561197980744144</steamID64>
|
74
|
+
<steamID64>76561197983311154</steamID64>
|
75
|
+
<steamID64>76561197960265743</steamID64>
|
76
|
+
<steamID64>76561197967377359</steamID64>
|
77
|
+
<steamID64>76561197985627266</steamID64>
|
78
|
+
<steamID64>76561197960265730</steamID64>
|
79
|
+
<steamID64>76561197960265733</steamID64>
|
80
|
+
<steamID64>76561197975724041</steamID64>
|
81
|
+
<steamID64>76561197992219796</steamID64>
|
82
|
+
<steamID64>76561197960265747</steamID64>
|
83
|
+
<steamID64>76561197960280251</steamID64>
|
84
|
+
<steamID64>76561197961314438</steamID64>
|
85
|
+
<steamID64>76561197962205142</steamID64>
|
86
|
+
<steamID64>76561197962833771</steamID64>
|
87
|
+
<steamID64>76561197962844216</steamID64>
|
88
|
+
<steamID64>76561197963997393</steamID64>
|
89
|
+
<steamID64>76561197964279229</steamID64>
|
90
|
+
<steamID64>76561197962313932</steamID64>
|
91
|
+
<steamID64>76561197975029215</steamID64>
|
92
|
+
<steamID64>76561197968282875</steamID64>
|
93
|
+
<steamID64>76561197967990561</steamID64>
|
94
|
+
<steamID64>76561197960549564</steamID64>
|
95
|
+
<steamID64>76561197972196250</steamID64>
|
96
|
+
<steamID64>76561197992467988</steamID64>
|
97
|
+
<steamID64>76561197967713982</steamID64>
|
98
|
+
<steamID64>76561197985454791</steamID64>
|
99
|
+
<steamID64>76561197962783665</steamID64>
|
100
|
+
<steamID64>76561197968343660</steamID64>
|
101
|
+
<steamID64>76561197968662512</steamID64>
|
102
|
+
<steamID64>76561197969262523</steamID64>
|
103
|
+
<steamID64>76561197969357684</steamID64>
|
104
|
+
<steamID64>76561197970195533</steamID64>
|
105
|
+
<steamID64>76561197970282885</steamID64>
|
106
|
+
<steamID64>76561197970285523</steamID64>
|
107
|
+
<steamID64>76561197970404169</steamID64>
|
108
|
+
<steamID64>76561197970533489</steamID64>
|
109
|
+
<steamID64>76561197970569650</steamID64>
|
110
|
+
<steamID64>76561197970634249</steamID64>
|
111
|
+
<steamID64>76561197970893024</steamID64>
|
112
|
+
<steamID64>76561197970968871</steamID64>
|
113
|
+
<steamID64>76561197971596380</steamID64>
|
114
|
+
<steamID64>76561197972291076</steamID64>
|
115
|
+
<steamID64>76561197972563372</steamID64>
|
116
|
+
<steamID64>76561197976027800</steamID64>
|
117
|
+
<steamID64>76561197977035150</steamID64>
|
118
|
+
<steamID64>76561197977741299</steamID64>
|
119
|
+
<steamID64>76561197977961973</steamID64>
|
120
|
+
<steamID64>76561197978257665</steamID64>
|
121
|
+
<steamID64>76561197979082126</steamID64>
|
122
|
+
<steamID64>76561197979187556</steamID64>
|
123
|
+
<steamID64>76561197980632230</steamID64>
|
124
|
+
<steamID64>76561197982227246</steamID64>
|
125
|
+
<steamID64>76561197982240193</steamID64>
|
126
|
+
<steamID64>76561197982460133</steamID64>
|
127
|
+
<steamID64>76561197983084285</steamID64>
|
128
|
+
<steamID64>76561197983819387</steamID64>
|
129
|
+
<steamID64>76561197985130967</steamID64>
|
130
|
+
<steamID64>76561197985412037</steamID64>
|
131
|
+
<steamID64>76561197985590840</steamID64>
|
132
|
+
<steamID64>76561197986943540</steamID64>
|
133
|
+
<steamID64>76561197988042654</steamID64>
|
134
|
+
<steamID64>76561197988200160</steamID64>
|
135
|
+
<steamID64>76561197991157076</steamID64>
|
136
|
+
<steamID64>76561197991937967</steamID64>
|
137
|
+
<steamID64>76561197992593548</steamID64>
|
138
|
+
<steamID64>76561197997579159</steamID64>
|
139
|
+
<steamID64>76561198002151236</steamID64>
|
140
|
+
<steamID64>76561198002212024</steamID64>
|
141
|
+
<steamID64>76561198002402082</steamID64>
|
142
|
+
<steamID64>76561197960435530</steamID64>
|
143
|
+
<steamID64>76561197969363440</steamID64>
|
144
|
+
<steamID64>76561197960789988</steamID64>
|
145
|
+
<steamID64>76561197965686610</steamID64>
|
146
|
+
<steamID64>76561197984981409</steamID64>
|
147
|
+
<steamID64>76561197975914763</steamID64>
|
148
|
+
<steamID64>76561197963156385</steamID64>
|
149
|
+
<steamID64>76561198007622651</steamID64>
|
150
|
+
<steamID64>76561197969266938</steamID64>
|
151
|
+
<steamID64>76561197968459473</steamID64>
|
152
|
+
<steamID64>76561198008486962</steamID64>
|
153
|
+
<steamID64>76561198010062752</steamID64>
|
154
|
+
<steamID64>76561197971241861</steamID64>
|
155
|
+
<steamID64>76561198032762862</steamID64>
|
156
|
+
<steamID64>76561198007696304</steamID64>
|
157
|
+
<steamID64>76561197997296694</steamID64>
|
158
|
+
<steamID64>76561197963119114</steamID64>
|
159
|
+
<steamID64>76561197974091903</steamID64>
|
160
|
+
<steamID64>76561198010168695</steamID64>
|
161
|
+
<steamID64>76561198015999740</steamID64>
|
162
|
+
<steamID64>76561198027391269</steamID64>
|
163
|
+
<steamID64>76561197969518075</steamID64>
|
164
|
+
<steamID64>76561198032155554</steamID64>
|
165
|
+
<steamID64>76561198028573551</steamID64>
|
166
|
+
<steamID64>76561198003204775</steamID64>
|
167
|
+
<steamID64>76561197960277670</steamID64>
|
168
|
+
<steamID64>76561198032776328</steamID64>
|
169
|
+
<steamID64>76561198007695232</steamID64>
|
170
|
+
<steamID64>76561197960434622</steamID64>
|
171
|
+
<steamID64>76561198004986211</steamID64>
|
172
|
+
<steamID64>76561197995557785</steamID64>
|
173
|
+
<steamID64>76561197969765131</steamID64>
|
174
|
+
<steamID64>76561197972903621</steamID64>
|
175
|
+
<steamID64>76561197967652039</steamID64>
|
176
|
+
<steamID64>76561198032822778</steamID64>
|
177
|
+
<steamID64>76561198005121830</steamID64>
|
178
|
+
<steamID64>76561198000239560</steamID64>
|
179
|
+
<steamID64>76561197961218948</steamID64>
|
180
|
+
<steamID64>76561197984750189</steamID64>
|
181
|
+
<steamID64>76561197963123419</steamID64>
|
182
|
+
<steamID64>76561198021953586</steamID64>
|
183
|
+
<steamID64>76561197980258575</steamID64>
|
184
|
+
<steamID64>76561198027226081</steamID64>
|
185
|
+
<steamID64>76561198024119209</steamID64>
|
186
|
+
<steamID64>76561198045157117</steamID64>
|
187
|
+
<steamID64>76561198005731671</steamID64>
|
188
|
+
<steamID64>76561197970572119</steamID64>
|
189
|
+
<steamID64>76561198009095613</steamID64>
|
190
|
+
<steamID64>76561197970530062</steamID64>
|
191
|
+
<steamID64>76561198007622817</steamID64>
|
192
|
+
<steamID64>76561197960649750</steamID64>
|
193
|
+
<steamID64>76561197965467401</steamID64>
|
194
|
+
<steamID64>76561197970761369</steamID64>
|
195
|
+
<steamID64>76561197971400048</steamID64>
|
196
|
+
<steamID64>76561197974050669</steamID64>
|
197
|
+
<steamID64>76561197975458088</steamID64>
|
198
|
+
<steamID64>76561197978854252</steamID64>
|
199
|
+
<steamID64>76561197987262750</steamID64>
|
200
|
+
<steamID64>76561197989808853</steamID64>
|
201
|
+
<steamID64>76561197993832904</steamID64>
|
202
|
+
<steamID64>76561198001549544</steamID64>
|
203
|
+
<steamID64>76561198007657496</steamID64>
|
204
|
+
<steamID64>76561198012711712</steamID64>
|
205
|
+
<steamID64>76561198016352617</steamID64>
|
206
|
+
<steamID64>76561198024119021</steamID64>
|
207
|
+
<steamID64>76561198024119077</steamID64>
|
208
|
+
<steamID64>76561198024119145</steamID64>
|
209
|
+
<steamID64>76561198024119167</steamID64>
|
210
|
+
<steamID64>76561198024119233</steamID64>
|
211
|
+
<steamID64>76561198024119271</steamID64>
|
212
|
+
<steamID64>76561198024119297</steamID64>
|
213
|
+
<steamID64>76561198024149372</steamID64>
|
214
|
+
<steamID64>76561198024149438</steamID64>
|
215
|
+
<steamID64>76561198024402255</steamID64>
|
216
|
+
<steamID64>76561198032490515</steamID64>
|
217
|
+
<steamID64>76561198042300915</steamID64>
|
218
|
+
<steamID64>76561198047099472</steamID64>
|
219
|
+
<steamID64>76561198049584723</steamID64>
|
220
|
+
<steamID64>76561197992637080</steamID64>
|
221
|
+
<steamID64>76561197960389850</steamID64>
|
222
|
+
<steamID64>76561198005615861</steamID64>
|
223
|
+
<steamID64>76561197999062908</steamID64>
|
224
|
+
<steamID64>76561198003340507</steamID64>
|
225
|
+
<steamID64>76561198040900440</steamID64>
|
226
|
+
<steamID64>76561198050715070</steamID64>
|
227
|
+
<steamID64>76561198024187698</steamID64>
|
228
|
+
<steamID64>76561197997728531</steamID64>
|
229
|
+
<steamID64>76561197970323416</steamID64>
|
230
|
+
</members>
|
231
|
+
</memberList>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2011-2013, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'rubygems'
|
7
|
+
|
8
|
+
require 'coveralls'
|
9
|
+
Coveralls.wear!
|
10
|
+
|
11
|
+
require 'test/unit'
|
12
|
+
|
13
|
+
require 'mocha/setup'
|
14
|
+
require 'shoulda-context'
|
15
|
+
|
16
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
17
|
+
$LOAD_PATH.unshift File.dirname(__FILE__)
|
18
|
+
|
19
|
+
# Extends TestCase functionality
|
20
|
+
class Test::Unit::TestCase
|
21
|
+
|
22
|
+
# Provides a negative assertion that's easier on the eyes
|
23
|
+
#
|
24
|
+
# The assertion fails, if the given value is `true`.
|
25
|
+
#
|
26
|
+
# @param [true, false] boolean The value that should be `false`
|
27
|
+
# @param [String] message The message that should be displayed
|
28
|
+
def assert_not(boolean, message = '')
|
29
|
+
assert !boolean, message
|
30
|
+
end
|
31
|
+
|
32
|
+
# Reads the contents of a fixture file from `./test/`
|
33
|
+
#
|
34
|
+
# @param [String] name The name of the fixtures file
|
35
|
+
# @return [String] The contents of the file
|
36
|
+
def fixture(name)
|
37
|
+
fixture_io(name).read
|
38
|
+
end
|
39
|
+
|
40
|
+
# Opens a file with fixtures from `./test/`
|
41
|
+
#
|
42
|
+
# @param [String] name The name of the fixtures file
|
43
|
+
# @return [File] The file handle
|
44
|
+
def fixture_io(name)
|
45
|
+
File.open File.join(File.dirname(__FILE__), 'fixtures', name)
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2012, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'helper'
|
7
|
+
require 'steam/community/cacheable'
|
8
|
+
|
9
|
+
class TestCacheable < Test::Unit::TestCase
|
10
|
+
|
11
|
+
class SingleCacheable
|
12
|
+
include Cacheable
|
13
|
+
cacheable_with_ids :first_id, :second_id
|
14
|
+
|
15
|
+
def initialize
|
16
|
+
@first_id, @second_id = 1, '2'
|
17
|
+
end
|
18
|
+
|
19
|
+
def fetch
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
class CompoundCacheable
|
24
|
+
include Cacheable
|
25
|
+
cacheable_with_ids [:first_id, :second_id]
|
26
|
+
|
27
|
+
def initialize
|
28
|
+
@first_id, @second_id = 1, '2'
|
29
|
+
end
|
30
|
+
|
31
|
+
def fetch
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
context 'A cacheable' do
|
36
|
+
|
37
|
+
should 'know if it was fetched already' do
|
38
|
+
item = SingleCacheable.new false
|
39
|
+
assert_not item.fetched?
|
40
|
+
item.fetch
|
41
|
+
assert item.fetched?
|
42
|
+
end
|
43
|
+
|
44
|
+
should 'automatically update its last update time' do
|
45
|
+
item = SingleCacheable.new false
|
46
|
+
now1 = Time.now
|
47
|
+
item.fetch
|
48
|
+
assert item.fetch_time > now1
|
49
|
+
now2 = Time.now
|
50
|
+
item.fetch
|
51
|
+
assert item.fetch_time > now2
|
52
|
+
end
|
53
|
+
|
54
|
+
should 'load new instances of the same item from cache' do
|
55
|
+
item1 = SingleCacheable.new
|
56
|
+
item2 = SingleCacheable.new
|
57
|
+
assert_equal item1, item2
|
58
|
+
end
|
59
|
+
|
60
|
+
should 'be able to bypass the cache if requested' do
|
61
|
+
item1 = SingleCacheable.new
|
62
|
+
item2 = SingleCacheable.new true, true
|
63
|
+
|
64
|
+
assert item2.fetch_time > item1.fetch_time
|
65
|
+
assert_not_equal item1, item2
|
66
|
+
end
|
67
|
+
|
68
|
+
teardown do
|
69
|
+
SingleCacheable.clear_cache
|
70
|
+
CompoundCacheable.clear_cache
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
context 'A cacheable with one or more single IDs' do
|
76
|
+
|
77
|
+
should 'be cached once for each ID' do
|
78
|
+
item = SingleCacheable.new
|
79
|
+
cache = SingleCacheable.send :class_variable_get, :@@cache
|
80
|
+
|
81
|
+
assert_equal item, cache[1]
|
82
|
+
assert_equal item, cache['2']
|
83
|
+
assert_equal 2, cache.size
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
87
|
+
|
88
|
+
context 'A cacheable with compound IDs' do
|
89
|
+
|
90
|
+
should 'be cached once for each compound ID' do
|
91
|
+
item = CompoundCacheable.new
|
92
|
+
cache = CompoundCacheable.send :class_variable_get, :@@cache
|
93
|
+
|
94
|
+
assert_equal item, cache[[1, '2']]
|
95
|
+
assert_equal 1, cache.size
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'helper'
|
7
|
+
require 'steam/community/steam_group'
|
8
|
+
|
9
|
+
class TestSteamGroup < Test::Unit::TestCase
|
10
|
+
|
11
|
+
context 'A Steam group' do
|
12
|
+
|
13
|
+
should 'be correctly cached' do
|
14
|
+
assert_not SteamGroup.cached? 103582791429521412
|
15
|
+
|
16
|
+
group = SteamGroup.new 103582791429521412, false
|
17
|
+
|
18
|
+
assert group.cache
|
19
|
+
assert SteamGroup.cached? 103582791429521412
|
20
|
+
end
|
21
|
+
|
22
|
+
should 'be correctly cached with its custom URL' do
|
23
|
+
assert_not SteamGroup.cached? 'valve'
|
24
|
+
|
25
|
+
group = SteamGroup.new 'valve', false
|
26
|
+
|
27
|
+
assert group.cache
|
28
|
+
assert SteamGroup.cached? 'valve'
|
29
|
+
end
|
30
|
+
|
31
|
+
should 'be able to fetch its members' do
|
32
|
+
url = fixture_io 'valve-members.xml'
|
33
|
+
SteamGroup.any_instance.expects(:open).with('http://steamcommunity.com/groups/valve/memberslistxml?p=1', { :proxy => true }).returns url
|
34
|
+
|
35
|
+
group = SteamGroup.new 'valve'
|
36
|
+
members = group.members
|
37
|
+
|
38
|
+
assert_equal 221, group.member_count
|
39
|
+
assert_equal 76561197960265740, members.first.steam_id64
|
40
|
+
assert_not members.first.fetched?
|
41
|
+
assert_equal 76561197970323416, members.last.steam_id64
|
42
|
+
assert group.fetched?
|
43
|
+
end
|
44
|
+
|
45
|
+
should 'be found by the group ID' do
|
46
|
+
group = SteamGroup.new 103582791429521412, false
|
47
|
+
|
48
|
+
assert_equal 103582791429521412, group.group_id64
|
49
|
+
assert_equal 'http://steamcommunity.com/gid/103582791429521412', group.base_url
|
50
|
+
end
|
51
|
+
|
52
|
+
should 'be found by the group\'s custom URL' do
|
53
|
+
group = SteamGroup.new 'valve', false
|
54
|
+
|
55
|
+
assert_equal 'valve', group.custom_url
|
56
|
+
assert_equal 'http://steamcommunity.com/groups/valve', group.base_url
|
57
|
+
end
|
58
|
+
|
59
|
+
should 'raise an exception when parsing invalid XML' do
|
60
|
+
error = assert_raises SteamCondenserError do
|
61
|
+
url = fixture_io 'invalid.xml'
|
62
|
+
SteamGroup.any_instance.expects(:open).with('http://steamcommunity.com/groups/valve/memberslistxml?p=1', { :proxy => true }).returns url
|
63
|
+
|
64
|
+
SteamGroup.new 'valve'
|
65
|
+
end
|
66
|
+
assert_equal 'XML data could not be parsed.', error.message
|
67
|
+
end
|
68
|
+
|
69
|
+
should 'be able to parse just the member count' do
|
70
|
+
url = fixture_io 'valve-members.xml'
|
71
|
+
SteamGroup.any_instance.expects(:open).with('http://steamcommunity.com/groups/valve/memberslistxml?p=1', { :proxy => true }).returns url
|
72
|
+
|
73
|
+
group = SteamGroup.new 'valve', false
|
74
|
+
assert_equal 221, group.member_count
|
75
|
+
end
|
76
|
+
|
77
|
+
teardown do
|
78
|
+
SteamGroup.clear_cache
|
79
|
+
end
|
80
|
+
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|