mirror of
https://github.com/maplibre/martin.git
synced 2024-12-21 05:41:55 +03:00
3fcad46500
Compression middleware turned out to be hard to use for image cases - it simply looks at the content-encoding, and if not set, tries to compress if accepted by the client. Instead, now individual routes are configured with either that middleware, or for tiles, I decompress and optionally recompress if applicable. Now encoding is tracked separately from the tile content, making it cleaner too. Plus lots of tests for mbtiles & pmtiles. Fixes #577
35 lines
978 B
Rust
35 lines
978 B
Rust
#![allow(clippy::missing_panics_doc)]
|
|
#![allow(clippy::redundant_clone)]
|
|
#![allow(clippy::unused_async)]
|
|
|
|
mod pg_utils;
|
|
|
|
use actix_web::web::Data;
|
|
use log::warn;
|
|
use martin::srv::AppState;
|
|
use martin::{Config, Sources};
|
|
pub use pg_utils::*;
|
|
|
|
#[path = "../../src/utils/test_utils.rs"]
|
|
mod test_utils;
|
|
#[allow(clippy::wildcard_imports)]
|
|
pub use test_utils::*;
|
|
|
|
pub async fn mock_app_data(sources: Sources) -> Data<AppState> {
|
|
Data::new(AppState { sources })
|
|
}
|
|
|
|
#[must_use]
|
|
pub fn mock_cfg(yaml: &str) -> Config {
|
|
let env = if let Ok(db_url) = std::env::var("DATABASE_URL") {
|
|
FauxEnv(vec![("DATABASE_URL", db_url.into())].into_iter().collect())
|
|
} else {
|
|
warn!("DATABASE_URL env var is not set. Might not be able to do integration tests");
|
|
FauxEnv::default()
|
|
};
|
|
let mut cfg: Config = subst::yaml::from_str(yaml, &env).unwrap();
|
|
let res = cfg.finalize().unwrap();
|
|
assert!(res.is_empty(), "unrecognized config: {res:?}");
|
|
cfg
|
|
}
|