1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
use crate::{
methods::Method,
request::Request,
types::{GameHighScore, Integer},
};
use serde::Serialize;
#[derive(Clone, Debug, Serialize)]
pub struct GetGameHighScores {
user_id: Integer,
#[serde(skip_serializing_if = "Option::is_none")]
chat_id: Option<Integer>,
#[serde(skip_serializing_if = "Option::is_none")]
message_id: Option<Integer>,
#[serde(skip_serializing_if = "Option::is_none")]
inline_message_id: Option<String>,
}
impl GetGameHighScores {
pub fn new(user_id: Integer, chat_id: Integer, message_id: Integer) -> Self {
GetGameHighScores {
user_id,
chat_id: Some(chat_id),
message_id: Some(message_id),
inline_message_id: None,
}
}
pub fn with_inline_message_id<S: Into<String>>(user_id: Integer, inline_message_id: S) -> Self {
GetGameHighScores {
user_id,
chat_id: None,
message_id: None,
inline_message_id: Some(inline_message_id.into()),
}
}
}
impl Method for GetGameHighScores {
type Response = Vec<GameHighScore>;
fn into_request(self) -> Request {
Request::json("getGameHighScores", self)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::request::{RequestBody, RequestMethod};
use serde_json::Value;
#[test]
fn get_game_high_scores() {
let request = GetGameHighScores::new(1, 2, 3).into_request();
assert_eq!(request.get_method(), RequestMethod::Post);
assert_eq!(
request.build_url("base-url", "token"),
"base-url/bottoken/getGameHighScores"
);
if let RequestBody::Json(data) = request.into_body() {
let data: Value = serde_json::from_str(&data.unwrap()).unwrap();
assert_eq!(data["user_id"], 1);
assert_eq!(data["chat_id"], 2);
assert_eq!(data["message_id"], 3);
} else {
panic!("Unexpected request body");
}
let request = GetGameHighScores::with_inline_message_id(1, "msg-id").into_request();
assert_eq!(request.get_method(), RequestMethod::Post);
assert_eq!(
request.build_url("base-url", "token"),
"base-url/bottoken/getGameHighScores"
);
if let RequestBody::Json(data) = request.into_body() {
let data: Value = serde_json::from_str(&data.unwrap()).unwrap();
assert_eq!(data["user_id"], 1);
assert_eq!(data["inline_message_id"], "msg-id");
} else {
panic!("Unexpected request body");
}
}
}