2023-04-27 22:39:58 -04:00
|
|
|
use std::net::TcpListener;
|
|
|
|
|
2023-11-18 13:29:35 -05:00
|
|
|
use websurfx::{config::parser::Config, run, templates::views};
|
2023-04-27 22:39:58 -04:00
|
|
|
|
|
|
|
// Starts a new instance of the HTTP server, bound to a random available port
|
|
|
|
fn spawn_app() -> String {
|
|
|
|
// Binding to port 0 will trigger the OS to assign a port for us.
|
|
|
|
let listener = TcpListener::bind("127.0.0.1:0").expect("Failed to bind random port");
|
|
|
|
let port = listener.local_addr().unwrap().port();
|
2023-08-17 16:48:20 -04:00
|
|
|
let config = Config::parse(false).unwrap();
|
2023-09-09 12:17:29 -04:00
|
|
|
let server = run(
|
|
|
|
listener,
|
|
|
|
config,
|
2023-09-17 12:56:48 -04:00
|
|
|
#[cfg(all(feature = "memory-cache", not(feature = "redis-cache")))]
|
2023-09-09 12:17:29 -04:00
|
|
|
websurfx::cache::cacher::Cache::new_in_memory(),
|
|
|
|
)
|
|
|
|
.expect("Failed to bind address");
|
2023-04-27 22:39:58 -04:00
|
|
|
|
|
|
|
tokio::spawn(server);
|
|
|
|
format!("http://127.0.0.1:{}/", port)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn test_index() {
|
|
|
|
let address = spawn_app();
|
|
|
|
|
|
|
|
let client = reqwest::Client::new();
|
|
|
|
let res = client.get(address).send().await.unwrap();
|
|
|
|
assert_eq!(res.status(), 200);
|
2023-04-30 13:04:31 -04:00
|
|
|
|
2023-08-17 16:48:20 -04:00
|
|
|
let config = Config::parse(true).unwrap();
|
2023-11-18 13:29:35 -05:00
|
|
|
let template = views::index::index(&config.style.colorscheme, &config.style.theme).0;
|
2023-04-27 22:39:58 -04:00
|
|
|
assert_eq!(res.text().await.unwrap(), template);
|
2023-04-30 13:04:31 -04:00
|
|
|
}
|
|
|
|
|
2023-07-03 13:30:25 -04:00
|
|
|
// TODO: Write tests for testing parameters for search function that if provided with something
|
2023-05-02 04:58:21 -04:00
|
|
|
// other than u32 like alphabets and special characters than it should panic
|