mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-22 05:58:21 -05:00
e704c26ed3
* ♻️ Refactor cache system * 🐛 Fix cache not getting set This patch also makes it that cookies are eagerly evaluated. This is done to figure out the safe search level set by the user. The performance hit wouldn't be much of a deal as the cookie is a small json string * 🔖 chore: bump the app version (#399) * 🔖 chore: bump the app version (#399) --------- Co-authored-by: alamin655 <mdalamin655@outlook.com>
33 lines
1.2 KiB
Rust
33 lines
1.2 KiB
Rust
use std::net::TcpListener;
|
|
|
|
use websurfx::{config::parser::Config, run, templates::views};
|
|
|
|
// Starts a new instance of the HTTP server, bound to a random available port
|
|
async 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();
|
|
let config = Config::parse(false).unwrap();
|
|
let cache = websurfx::cache::cacher::create_cache(&config).await;
|
|
let server = run(listener, config, cache).expect("Failed to bind address");
|
|
|
|
tokio::spawn(server);
|
|
format!("http://127.0.0.1:{}/", port)
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn test_index() {
|
|
let address = spawn_app().await;
|
|
|
|
let client = reqwest::Client::new();
|
|
let res = client.get(address).send().await.unwrap();
|
|
assert_eq!(res.status(), 200);
|
|
|
|
let config = Config::parse(true).unwrap();
|
|
let template = views::index::index(&config.style.colorscheme, &config.style.theme).0;
|
|
assert_eq!(res.text().await.unwrap(), template);
|
|
}
|
|
|
|
// TODO: Write tests for testing parameters for search function that if provided with something
|
|
// other than u32 like alphabets and special characters than it should panic
|