mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-08 19:33:53 +01:00
Fixed bug. More tests are still needed
This commit is contained in:
parent
dc755b6ec0
commit
1fa64afad2
2 changed files with 54 additions and 64 deletions
|
@ -4,7 +4,6 @@ use crate::core::types::{
|
||||||
SuccessfulPayment, User, Venue, Video, VideoNote, Voice,
|
SuccessfulPayment, User, Venue, Video, VideoNote, Voice,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#[derive(Debug, Deserialize, Eq, Hash, PartialEq, Clone)]
|
#[derive(Debug, Deserialize, Eq, Hash, PartialEq, Clone)]
|
||||||
pub struct Message {
|
pub struct Message {
|
||||||
#[serde(rename = "message_id")]
|
#[serde(rename = "message_id")]
|
||||||
|
@ -15,11 +14,12 @@ pub struct Message {
|
||||||
pub message_kind: MessageKind,
|
pub message_kind: MessageKind,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#[derive(Debug, Deserialize, Eq, Hash, PartialEq, Clone)]
|
#[derive(Debug, Deserialize, Eq, Hash, PartialEq, Clone)]
|
||||||
#[serde(untagged)]
|
#[serde(untagged)]
|
||||||
pub enum MessageKind {
|
pub enum MessageKind {
|
||||||
IncomingMessage {
|
IncomingMessage {
|
||||||
|
#[serde(flatten)]
|
||||||
|
from: Sender,
|
||||||
#[serde(flatten)]
|
#[serde(flatten)]
|
||||||
forward_kind: ForwardKind,
|
forward_kind: ForwardKind,
|
||||||
edit_date: Option<i32>,
|
edit_date: Option<i32>,
|
||||||
|
@ -72,6 +72,16 @@ pub enum MessageKind {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Deserialize, Eq, Hash, PartialEq, Clone)]
|
||||||
|
pub enum Sender {
|
||||||
|
/// If message is sent from Chat
|
||||||
|
#[serde(rename = "from")]
|
||||||
|
User(User),
|
||||||
|
/// If message is sent from Channel
|
||||||
|
#[serde(rename = "author_signature")]
|
||||||
|
Signature(String),
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize, Eq, Hash, PartialEq, Clone)]
|
#[derive(Debug, Deserialize, Eq, Hash, PartialEq, Clone)]
|
||||||
#[serde(untagged)]
|
#[serde(untagged)]
|
||||||
pub enum ForwardKind {
|
pub enum ForwardKind {
|
||||||
|
@ -109,11 +119,18 @@ pub enum ForwardedFrom {
|
||||||
pub enum MediaKind {
|
pub enum MediaKind {
|
||||||
Animation {
|
Animation {
|
||||||
animation: Animation,
|
animation: Animation,
|
||||||
|
/// "For backward compatibility" (c) Telegram Docs
|
||||||
|
#[serde(skip)]
|
||||||
|
document: (),
|
||||||
caption: Option<String>,
|
caption: Option<String>,
|
||||||
|
#[serde(default = "Vec::new")]
|
||||||
|
caption_entities: Vec<MessageEntity>
|
||||||
},
|
},
|
||||||
Audio {
|
Audio {
|
||||||
audio: Audio,
|
audio: Audio,
|
||||||
caption: Option<String>,
|
caption: Option<String>,
|
||||||
|
#[serde(default = "Vec::new")]
|
||||||
|
caption_entities: Vec<MessageEntity>
|
||||||
},
|
},
|
||||||
Contact {
|
Contact {
|
||||||
contact: Contact,
|
contact: Contact,
|
||||||
|
@ -121,6 +138,8 @@ pub enum MediaKind {
|
||||||
Document {
|
Document {
|
||||||
document: Document,
|
document: Document,
|
||||||
caption: Option<String>,
|
caption: Option<String>,
|
||||||
|
#[serde(default = "Vec::new")]
|
||||||
|
caption_entities: Vec<MessageEntity>
|
||||||
},
|
},
|
||||||
Game {
|
Game {
|
||||||
game: Game,
|
game: Game,
|
||||||
|
@ -131,6 +150,9 @@ pub enum MediaKind {
|
||||||
Photo {
|
Photo {
|
||||||
sizes: Vec<PhotoSize>,
|
sizes: Vec<PhotoSize>,
|
||||||
caption: Option<String>,
|
caption: Option<String>,
|
||||||
|
#[serde(default = "Vec::new")]
|
||||||
|
caption_entities: Vec<MessageEntity>,
|
||||||
|
media_group_id: Option<i32>,
|
||||||
},
|
},
|
||||||
Poll {
|
Poll {
|
||||||
poll: Poll,
|
poll: Poll,
|
||||||
|
@ -140,11 +162,15 @@ pub enum MediaKind {
|
||||||
},
|
},
|
||||||
Text {
|
Text {
|
||||||
text: String,
|
text: String,
|
||||||
|
#[serde(default = "Vec::new")]
|
||||||
entities: Vec<MessageEntity>,
|
entities: Vec<MessageEntity>,
|
||||||
},
|
},
|
||||||
Video {
|
Video {
|
||||||
video: Video,
|
video: Video,
|
||||||
caption: Option<String>,
|
caption: Option<String>,
|
||||||
|
#[serde(default = "Vec::new")]
|
||||||
|
caption_entities: Vec<MessageEntity>,
|
||||||
|
media_group_id: Option<i32>,
|
||||||
},
|
},
|
||||||
VideoNote {
|
VideoNote {
|
||||||
video_note: VideoNote,
|
video_note: VideoNote,
|
||||||
|
@ -152,6 +178,8 @@ pub enum MediaKind {
|
||||||
Voice {
|
Voice {
|
||||||
voice: Voice,
|
voice: Voice,
|
||||||
caption: Option<String>,
|
caption: Option<String>,
|
||||||
|
#[serde(default = "Vec::new")]
|
||||||
|
caption_entities: Vec<MessageEntity>,
|
||||||
},
|
},
|
||||||
Venue {
|
Venue {
|
||||||
venue: Venue,
|
venue: Venue,
|
||||||
|
@ -164,83 +192,43 @@ mod tests {
|
||||||
use serde_json::from_str;
|
use serde_json::from_str;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn origin_de() {
|
fn sent_message_de() {
|
||||||
let expected = Message {
|
let expected = Message {
|
||||||
id: 0,
|
id: 6534,
|
||||||
date: 0,
|
date: 1567898953,
|
||||||
chat: Chat {
|
chat: Chat {
|
||||||
id: 0,
|
id: 218485655,
|
||||||
|
photo: None,
|
||||||
kind: ChatKind::Private {
|
kind: ChatKind::Private {
|
||||||
type_: (),
|
type_: (),
|
||||||
username: None,
|
first_name: Some("W".to_string()),
|
||||||
first_name: None,
|
|
||||||
last_name: None,
|
last_name: None,
|
||||||
|
username: Some("WaffleLapkin".to_string()),
|
||||||
},
|
},
|
||||||
photo: None,
|
|
||||||
},
|
},
|
||||||
message_kind: MessageKind::IncomingMessage {
|
message_kind: MessageKind::IncomingMessage {
|
||||||
|
from: Sender::User(User {
|
||||||
|
id: 457569668,
|
||||||
|
is_bot: true,
|
||||||
|
first_name: "BT".to_string(),
|
||||||
|
last_name: None,
|
||||||
|
username: Some("BloodyTestBot".to_string()),
|
||||||
|
language_code: None,
|
||||||
|
}),
|
||||||
forward_kind: ForwardKind::Origin {
|
forward_kind: ForwardKind::Origin {
|
||||||
reply_to_message: None,
|
reply_to_message: None,
|
||||||
},
|
},
|
||||||
edit_date: None,
|
edit_date: None,
|
||||||
media_kind: MediaKind::Text {
|
media_kind: MediaKind::Text {
|
||||||
text: "Hello".to_string(),
|
text: "text".to_string(),
|
||||||
entities: vec![],
|
entities: vec![],
|
||||||
},
|
},
|
||||||
reply_markup: None,
|
reply_markup: None,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
let actual = from_str::<Message>(r#"{"message_id":0,"date":0,"chat":{"id":0,"type":"private"},"text":"Hello","entities":[]}"#).unwrap();
|
|
||||||
assert_eq!(expected, actual);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn forward_de() {
|
|
||||||
let expected = Message {
|
|
||||||
id: 1,
|
|
||||||
date: 1,
|
|
||||||
chat: Chat {
|
|
||||||
id: 1,
|
|
||||||
kind: ChatKind::Private {
|
|
||||||
type_: (),
|
|
||||||
username: None,
|
|
||||||
first_name: None,
|
|
||||||
last_name: None,
|
|
||||||
},
|
|
||||||
photo: None,
|
|
||||||
},
|
|
||||||
message_kind: MessageKind::IncomingMessage {
|
|
||||||
forward_kind: ForwardKind::NonChannelForward {
|
|
||||||
date: 1,
|
|
||||||
from: ForwardedFrom::User(User {
|
|
||||||
id: 123,
|
|
||||||
is_bot: false,
|
|
||||||
first_name: "Name".to_string(),
|
|
||||||
last_name: None,
|
|
||||||
username: None,
|
|
||||||
language_code: None,
|
|
||||||
}),
|
|
||||||
},
|
|
||||||
edit_date: None,
|
|
||||||
media_kind: MediaKind::Text {
|
|
||||||
text: "Message".into(),
|
|
||||||
entities: vec![],
|
|
||||||
},
|
|
||||||
reply_markup: None,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
let actual = from_str::<Message>(
|
|
||||||
r#"{"message_id":1,"date":1,"chat":{"id":1,"type":"private"},"forward_date":1,"forward_from":{"id":123,"is_bot":false,"first_name":"Name"},"text":"Message","entities":[]}"#,
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
assert_eq!(expected, actual);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn sent_message_de() {
|
|
||||||
// actual message from telegram
|
// actual message from telegram
|
||||||
let json = "{\"message_id\":6534,\"from\":{\"id\":457569668,\"is_bot\":true,\"first_name\":\"\\u0424\\u044b\\u0440\\u044c\\u043a\",\"username\":\"BloodyTestBot\"},\"chat\":{\"id\":218485655,\"first_name\":\"\\u0412\\u0430\\u0444\\u0435\\u043b\\u044c\",\"username\":\"WaffleLapkin\",\"type\":\"private\"},\"date\":1567898953,\"text\":\"text\"}";
|
let json = r#"{"message_id":6534,"from":{"id":457569668,"is_bot":true,"first_name":"BT","username":"BloodyTestBot"},"chat":{"id":218485655,"first_name":"W","username":"WaffleLapkin","type":"private"},"date":1567898953,"text":"text"}"#;
|
||||||
let actual: Result<Message, _>= from_str(json);
|
let actual = from_str::<Message>(json).unwrap();
|
||||||
assert!(actual.is_ok());
|
assert_eq!(expected, actual);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,12 +12,15 @@ pub use self::{
|
||||||
input_media::InputMedia,
|
input_media::InputMedia,
|
||||||
invoice::Invoice,
|
invoice::Invoice,
|
||||||
label_price::LabeledPrice,
|
label_price::LabeledPrice,
|
||||||
message::{ForwardKind, ForwardedFrom, MediaKind, Message, MessageKind},
|
message::{
|
||||||
|
ForwardKind, ForwardedFrom, MediaKind, Message, MessageKind, Sender,
|
||||||
|
},
|
||||||
message_entity::MessageEntity,
|
message_entity::MessageEntity,
|
||||||
order_info::OrderInfo,
|
order_info::OrderInfo,
|
||||||
parse_mode::ParseMode,
|
parse_mode::ParseMode,
|
||||||
photo_size::PhotoSize,
|
photo_size::PhotoSize,
|
||||||
pre_checkout_query::PreCheckoutQuery,
|
pre_checkout_query::PreCheckoutQuery,
|
||||||
|
response_parameters::ResponseParameters,
|
||||||
send_invoice::SendInvoice,
|
send_invoice::SendInvoice,
|
||||||
shipping_address::ShippingAddress,
|
shipping_address::ShippingAddress,
|
||||||
shipping_option::ShippingOption,
|
shipping_option::ShippingOption,
|
||||||
|
@ -26,7 +29,6 @@ pub use self::{
|
||||||
successful_payment::SuccessfulPayment,
|
successful_payment::SuccessfulPayment,
|
||||||
user::User,
|
user::User,
|
||||||
video::Video,
|
video::Video,
|
||||||
response_parameters::ResponseParameters
|
|
||||||
};
|
};
|
||||||
|
|
||||||
mod answer_pre_checkout_query;
|
mod answer_pre_checkout_query;
|
||||||
|
@ -48,6 +50,7 @@ mod order_info;
|
||||||
mod parse_mode;
|
mod parse_mode;
|
||||||
mod photo_size;
|
mod photo_size;
|
||||||
mod pre_checkout_query;
|
mod pre_checkout_query;
|
||||||
|
mod response_parameters;
|
||||||
mod send_invoice;
|
mod send_invoice;
|
||||||
mod shipping_address;
|
mod shipping_address;
|
||||||
mod shipping_option;
|
mod shipping_option;
|
||||||
|
@ -56,4 +59,3 @@ mod sticker;
|
||||||
mod successful_payment;
|
mod successful_payment;
|
||||||
mod user;
|
mod user;
|
||||||
mod video;
|
mod video;
|
||||||
mod response_parameters;
|
|
Loading…
Reference in a new issue