Add tests for consolidate extension
This commit is contained in:
parent
9e0627dcc5
commit
a620fc6598
|
@ -61,12 +61,14 @@ impl fmt::Display for GMonthDay {
|
||||||
/// ```no_run
|
/// ```no_run
|
||||||
/// use std::collections::HashMap;
|
/// use std::collections::HashMap;
|
||||||
///
|
///
|
||||||
/// use epp_client::config::{EppClientConfig, EppClientConnection};
|
/// use epp_client::config::{EppClientConfig, RegistryConfig};
|
||||||
/// use epp_client::EppClient;
|
/// use epp_client::EppClient;
|
||||||
/// use epp_client::common::{DomainStatus, DomainContact};
|
/// use epp_client::common::{DomainStatus, DomainContact};
|
||||||
/// use epp_client::extensions::rgp::report::RgpRestoreReport;
|
/// use epp_client::extensions::consolidate::Sync;
|
||||||
/// use epp_client::domain::update::DomainUpdate;
|
/// use epp_client::domain::update::DomainUpdate;
|
||||||
/// use epp_client::generate_client_tr_id;
|
/// use epp_client::generate_client_tr_id;
|
||||||
|
/// use epp_client::extensions::consolidate;
|
||||||
|
/// use epp_client::extensions::consolidate::GMonthDay;
|
||||||
/// use epp_client::common::NoExtension;
|
/// use epp_client::common::NoExtension;
|
||||||
/// use chrono::{DateTime, NaiveDate};
|
/// use chrono::{DateTime, NaiveDate};
|
||||||
/// use std::str::FromStr;
|
/// use std::str::FromStr;
|
||||||
|
@ -74,10 +76,10 @@ impl fmt::Display for GMonthDay {
|
||||||
/// #[tokio::main]
|
/// #[tokio::main]
|
||||||
/// async fn main() {
|
/// async fn main() {
|
||||||
/// // Create a config
|
/// // Create a config
|
||||||
/// let mut registry: HashMap<String, EppClientConnection> = HashMap::new();
|
/// let mut registry: HashMap<String, RegistryConfig> = HashMap::new();
|
||||||
/// registry.insert(
|
/// registry.insert(
|
||||||
/// "registry_name".to_owned(),
|
/// "registry_name".to_owned(),
|
||||||
/// EppClientConnection {
|
/// RegistryConfig {
|
||||||
/// host: "example.com".to_owned(),
|
/// host: "example.com".to_owned(),
|
||||||
/// port: 700,
|
/// port: 700,
|
||||||
/// username: "username".to_owned(),
|
/// username: "username".to_owned(),
|
||||||
|
@ -94,18 +96,11 @@ impl fmt::Display for GMonthDay {
|
||||||
/// Err(e) => panic!("Failed to create EppClient: {}", e)
|
/// Err(e) => panic!("Failed to create EppClient: {}", e)
|
||||||
/// };
|
/// };
|
||||||
///
|
///
|
||||||
/// let domain_restore_report = RgpRestoreReport::new(
|
/// let exp = GMonthDay::new(5, 31, None).unwrap();
|
||||||
/// pre_data,
|
/// let consolidate_ext = consolidate::Sync::new(exp);
|
||||||
/// post_data,
|
|
||||||
/// deleted_at,
|
|
||||||
/// restored_at,
|
|
||||||
/// restore_reason,
|
|
||||||
/// &statements,
|
|
||||||
/// other
|
|
||||||
/// );
|
|
||||||
///
|
///
|
||||||
/// // Create an DomainUpdate instance
|
/// // Create an DomainUpdate instance
|
||||||
/// let mut domain_update = DomainUpdate::<RgpRestoreReport>::new("eppdev-100.com").with_extension(domain_restore_report);
|
/// let mut domain_update = DomainUpdate::<consolidate::Sync>::new("eppdev-100.com").with_extension(consolidate_ext);
|
||||||
///
|
///
|
||||||
/// // send it to the registry and receive a response of type EppDomainUpdateResponse
|
/// // send it to the registry and receive a response of type EppDomainUpdateResponse
|
||||||
/// let response = client.transact(domain_update, generate_client_tr_id(&client).as_str()).await.unwrap();
|
/// let response = client.transact(domain_update, generate_client_tr_id(&client).as_str()).await.unwrap();
|
||||||
|
|
|
@ -29,6 +29,8 @@ mod request {
|
||||||
use crate::domain::update::DomainAddRemove;
|
use crate::domain::update::DomainAddRemove;
|
||||||
use crate::domain::update::DomainChangeInfo;
|
use crate::domain::update::DomainChangeInfo;
|
||||||
use crate::domain::update::DomainUpdate;
|
use crate::domain::update::DomainUpdate;
|
||||||
|
use crate::extensions::consolidate;
|
||||||
|
use crate::extensions::consolidate::GMonthDay;
|
||||||
use crate::extensions::namestore::NameStore;
|
use crate::extensions::namestore::NameStore;
|
||||||
use crate::extensions::rgp::report::RgpRestoreReport;
|
use crate::extensions::rgp::report::RgpRestoreReport;
|
||||||
use crate::extensions::rgp::request::RgpRestoreRequest;
|
use crate::extensions::rgp::request::RgpRestoreRequest;
|
||||||
|
@ -597,4 +599,25 @@ mod request {
|
||||||
|
|
||||||
assert_eq!(xml, serialized);
|
assert_eq!(xml, serialized);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn consolidate() {
|
||||||
|
let xml = get_xml("request/extensions/consolidate.xml").unwrap();
|
||||||
|
|
||||||
|
let exp = GMonthDay::new(5, 31, None).unwrap();
|
||||||
|
|
||||||
|
let consolidate_ext = consolidate::Sync::new(exp);
|
||||||
|
|
||||||
|
let mut object =
|
||||||
|
DomainUpdate::<consolidate::Sync>::new("eppdev.com").with_extension(consolidate_ext);
|
||||||
|
|
||||||
|
object.info(DomainChangeInfo {
|
||||||
|
registrant: None,
|
||||||
|
auth_info: None,
|
||||||
|
});
|
||||||
|
|
||||||
|
let serialized = object.serialize_request(CLTRID).unwrap();
|
||||||
|
|
||||||
|
assert_eq!(xml, serialized);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||||
|
<command>
|
||||||
|
<update>
|
||||||
|
<domain:update xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||||
|
<domain:name>eppdev.com</domain:name>
|
||||||
|
<domain:chg/>
|
||||||
|
</domain:update>
|
||||||
|
</update>
|
||||||
|
<extension>
|
||||||
|
<sync:update xmlns:sync="http://www.verisign.com/epp/sync-1.0">
|
||||||
|
<sync:expMonthDay>--05-31</sync:expMonthDay>
|
||||||
|
</sync:update>
|
||||||
|
</extension>
|
||||||
|
<clTRID>cltrid:1626454866</clTRID>
|
||||||
|
</command>
|
||||||
|
</epp>
|
Loading…
Reference in New Issue