49 lines
1.2 KiB
Rust
49 lines
1.2 KiB
Rust
use std::fmt::Debug;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::{
|
|
common::NoExtension,
|
|
request::{Command, Transaction},
|
|
};
|
|
|
|
impl Transaction<NoExtension> for Logout {}
|
|
|
|
impl Command for Logout {
|
|
type Response = ();
|
|
const COMMAND: &'static str = "logout";
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Debug, PartialEq)]
|
|
/// Type corresponding to the <logout> tag in an EPP XML logout request
|
|
pub struct Logout;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::Logout;
|
|
use crate::response::ResultCode;
|
|
use crate::tests::{assert_serialized, response_from_file, CLTRID, SVTRID};
|
|
|
|
#[test]
|
|
fn command() {
|
|
let object = Logout;
|
|
assert_serialized("request/logout.xml", &object);
|
|
}
|
|
|
|
#[test]
|
|
fn response() {
|
|
let object = response_from_file::<Logout>("response/logout.xml");
|
|
|
|
assert_eq!(
|
|
object.result.code,
|
|
ResultCode::CommandCompletedSuccessfullyEndingSession
|
|
);
|
|
assert_eq!(
|
|
object.result.message,
|
|
"Command completed successfully; ending session".into()
|
|
);
|
|
assert_eq!(object.tr_ids.client_tr_id.unwrap(), CLTRID.into());
|
|
assert_eq!(object.tr_ids.server_tr_id, SVTRID.into());
|
|
}
|
|
}
|