librespot/core/tests/connect.rs
Roderick van Domburg 059e17dca5
Fix tests
2021-12-26 23:51:25 +01:00

27 lines
700 B
Rust

use std::time::Duration;
use librespot_core::authentication::Credentials;
use librespot_core::config::SessionConfig;
use librespot_core::session::Session;
use tokio::time::timeout;
#[tokio::test]
async fn test_connection() {
timeout(Duration::from_secs(30), async {
let result = Session::connect(
SessionConfig::default(),
Credentials::with_password("test", "test"),
None,
)
.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();
}