sometimes webcookie field can be missing?

I got a login response that did not include the `webcookie` field. Added a test case for it.
This commit is contained in:
Carson McManus 2021-08-09 19:49:53 -04:00
parent 071d9d7d2d
commit afafe44d60
2 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1 @@
{"success":true,"requires_twofactor":false,"redirect_uri":"steammobile:\/\/mobileloginsucceeded","login_complete":true,"oauth":"{\"steamid\":\"92591609556178617\",\"account_name\":\"hydrastar2\",\"oauth_token\":\"1cc83205dab2979e558534dab29f6f3aa\",\"wgtoken\":\"3EDA9DEF07D7B39361D95203525D8AFE82A\",\"wgtoken_secure\":\"F31641B9AFC2F8B0EE7B6F44D7E73EA3FA48\"}"}

View file

@ -86,6 +86,7 @@ pub struct OAuthData {
steamid: String, steamid: String,
wgtoken: String, wgtoken: String,
wgtoken_secure: String, wgtoken_secure: String,
#[serde(default)]
webcookie: String, webcookie: String,
} }
@ -97,7 +98,7 @@ pub struct Session {
pub steam_login: String, pub steam_login: String,
#[serde(rename = "SteamLoginSecure")] #[serde(rename = "SteamLoginSecure")]
pub steam_login_secure: String, pub steam_login_secure: String,
#[serde(rename = "WebCookie")] #[serde(default, rename = "WebCookie")]
pub web_cookie: String, pub web_cookie: String,
#[serde(rename = "OAuthToken")] #[serde(rename = "OAuthToken")]
pub token: String, pub token: String,
@ -445,6 +446,30 @@ fn test_login_response_parse() {
assert_eq!(oauth.webcookie, "6298070A226E5DAD49938D78BCF36F7A7118FDD5"); assert_eq!(oauth.webcookie, "6298070A226E5DAD49938D78BCF36F7A7118FDD5");
} }
#[test]
fn test_login_response_parse_missing_webcookie() {
let result = serde_json::from_str::<LoginResponse>(include_str!(
"fixtures/api-responses/login-response-missing-webcookie.json"
));
assert!(
matches!(result, Ok(_)),
"got error: {}",
result.unwrap_err()
);
let resp = result.unwrap();
let oauth = resp.oauth.unwrap();
assert_eq!(oauth.steamid, "92591609556178617");
assert_eq!(oauth.oauth_token, "1cc83205dab2979e558534dab29f6f3aa");
assert_eq!(oauth.wgtoken, "3EDA9DEF07D7B39361D95203525D8AFE82A");
assert_eq!(
oauth.wgtoken_secure,
"F31641B9AFC2F8B0EE7B6F44D7E73EA3FA48"
);
assert_eq!(oauth.webcookie, "");
}
#[derive(Debug, Clone, Deserialize)] #[derive(Debug, Clone, Deserialize)]
pub struct SteamApiResponse<T> { pub struct SteamApiResponse<T> {
pub response: T, pub response: T,