mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
21 lines
643 B
Rust
21 lines
643 B
Rust
use std::time::Duration;
|
|
|
|
use tokio::time::timeout;
|
|
|
|
use librespot_core::{authentication::Credentials, config::SessionConfig, session::Session};
|
|
|
|
#[tokio::test]
|
|
async fn test_connection() {
|
|
timeout(Duration::from_secs(30), async {
|
|
let result = Session::new(SessionConfig::default(), None)
|
|
.connect(Credentials::with_password("test", "test"), false)
|
|
.await;
|
|
|
|
match result {
|
|
Ok(_) => panic!("Authentication succeeded despite of bad credentials."),
|
|
Err(e) => assert!(!e.to_string().is_empty()), // there should be some error message
|
|
}
|
|
})
|
|
.await
|
|
.unwrap();
|
|
}
|