nidus-http 1.0.2

Axum and Tower HTTP integration, controllers, middleware, health, metrics, and server defaults for Nidus.
Documentation
use nidus_http::{controller::Controller, router::RouteDefinition, router::RouteMetadata};

#[test]
fn route_metadata_composes_controller_prefix_with_normalized_path() {
    let metadata = RouteMetadata::new("GET", ":id");

    assert_eq!(metadata.full_path("/users"), "/users/{id}");
    assert_eq!(metadata.full_path("/users/"), "/users/{id}");
}

#[test]
fn route_metadata_composes_root_route_without_duplicate_slash() {
    let metadata = RouteMetadata::new("GET", "/");

    assert_eq!(metadata.full_path("/health"), "/health");
    assert_eq!(metadata.full_path("/health/"), "/health");
}

#[test]
fn controller_try_new_normalizes_prefix() {
    let router = Controller::try_new("users")
        .unwrap()
        .route(RouteDefinition::get(":id", || async { "ok" }))
        .try_into_router();

    assert!(router.is_ok());
}

#[test]
fn controller_try_new_rejects_invalid_prefix() {
    let error = match Controller::try_new("/:") {
        Ok(_) => panic!("empty route parameter should fail"),
        Err(error) => error,
    };

    assert_eq!(error.path(), "/:");
}

#[test]
fn route_definition_try_get_rejects_empty_parameter_name() {
    let error = match RouteDefinition::try_get("/:".to_owned(), || async { "ok" }) {
        Ok(_) => panic!("empty route parameter should fail"),
        Err(error) => error,
    };

    assert_eq!(error.path(), "/:");
    assert_eq!(
        error.to_string(),
        "route path `/:` contains a parameter segment without a name after ':'"
    );
}

#[test]
fn route_metadata_try_full_path_rejects_invalid_controller_prefix() {
    let metadata = RouteMetadata::new("GET", "/");

    let error = match metadata.try_full_path("/:") {
        Ok(_) => panic!("empty route parameter should fail"),
        Err(error) => error,
    };

    assert_eq!(error.path(), "/:");
}

#[test]
fn controller_try_into_router_rejects_invalid_prefix() {
    let error = match Controller::new("/:")
        .route(RouteDefinition::get("/", || async { "ok" }))
        .try_into_router()
    {
        Ok(_) => panic!("empty route parameter should fail"),
        Err(error) => error,
    };

    assert_eq!(error.path(), "/:");
}