summaryrefslogblamecommitdiffstats
path: root/src/lib.rs
blob: 8162ccc9d6b6da41cf39d6dddbbb902f3d671356 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
                       
 



                                 
            
               
 



                                        
 
                                                         


            
                          
 

                      
 




                                                                                                  
 














                                                                                    
                  
                      






                                                         


                 
                  

     
#![allow(unused_must_use)]
#![feature(let_chains)]

// TODO: logging (dropped errors)
pub mod client;
pub mod error;
pub mod jabber;
pub mod jid;
pub mod stanza;

pub use client::encrypted::JabberClient;
pub use error::JabberError;
pub use jabber::Jabber;
pub use jid::JID;

pub type Result<T> = std::result::Result<T, JabberError>;

#[cfg(test)]
mod tests {
    use std::str::FromStr;

    use crate::Jabber;
    use crate::JID;

    // #[tokio::test]
    // async fn get_sockets() {
    //     let jabber = Jabber::new(JID::from_str("cel@blos.sm").unwrap(), "password".to_owned());
    //     println!("{:?}", jabber.get_sockets().await)
    // }

    // #[tokio::test]
    // async fn connect() {
    //     Jabber::new(JID::from_str("cel@blos.sm").unwrap(), "password".to_owned())
    //         .unwrap()
    //         .connect()
    //         .await
    //         .unwrap()
    //         .ensure_tls()
    //         .await
    //         .unwrap()
    //         .start_stream()
    //         .await
    //         .unwrap();
    // }

    #[tokio::test]
    async fn login() {
        Jabber::new(
            JID::from_str("test@blos.sm/clown").unwrap(),
            "slayed".to_owned(),
        )
        .unwrap()
        .login()
        .await
        .unwrap()
        .watch()
        .await
        .unwrap();
    }
}