pub struct TestApp { /* private fields */ }Expand description
Builder for constructing a fully-configured Autumn application in tests.
Analogous to Spring Boot’s @SpringBootTest – it wires up routes,
middleware, config, and optionally a database pool, then produces a
TestClient ready to fire requests.
§Examples
use autumn_web::prelude::*;
use autumn_web::test::TestApp;
#[get("/ping")]
async fn ping() -> &'static str { "pong" }
#[tokio::test]
async fn ping_works() {
let client = TestApp::new()
.routes(routes![ping])
.build();
client.get("/ping").send().await.assert_ok();
}Implementations§
Source§impl TestApp
impl TestApp
Sourcepub fn policy<R, P>(self, policy: P) -> Self
pub fn policy<R, P>(self, policy: P) -> Self
Register a Policy for
resource type R. Mirrors
AppBuilder::policy.
Sourcepub fn scope<R, S>(self, scope: S) -> Self
pub fn scope<R, S>(self, scope: S) -> Self
Register a Scope for resource
type R. Mirrors
AppBuilder::scope.
Sourcepub const fn forbidden_response(self, value: ForbiddenResponse) -> Self
pub const fn forbidden_response(self, value: ForbiddenResponse) -> Self
Override the deny-response shape used by #[authorize] and
#[repository(policy = ...)] handlers. Useful for
round-tripping the 403-vs-404 decision in tests.
Sourcepub fn openapi(self, config: OpenApiConfig) -> Self
pub fn openapi(self, config: OpenApiConfig) -> Self
Enable OpenAPI spec generation for the test app.
Mirrors crate::app::AppBuilder::openapi so integration tests
can exercise the /v3/api-docs and /swagger-ui endpoints.
Gated behind the openapi Cargo feature.
Sourcepub fn merge(self, router: Router<AppState>) -> Self
pub fn merge(self, router: Router<AppState>) -> Self
Merge a router into the internal application state.
This is useful when testing modular route definitions without building the full application.
Sourcepub fn nest(self, path: &str, router: Router<AppState>) -> Self
pub fn nest(self, path: &str, router: Router<AppState>) -> Self
Nest a router under a specific path prefix for testing.
This is useful for testing sub-applications or API versions.
Sourcepub fn layer<L: IntoAppLayer>(self, layer: L) -> Self
pub fn layer<L: IntoAppLayer>(self, layer: L) -> Self
Apply a custom tower::Layer to the entire test application.
Mirrors crate::app::AppBuilder::layer so tests can exercise the
exact middleware wiring that AppBuilder::run() produces.
Sourcepub const fn from_router(router: Router) -> TestClient
pub const fn from_router(router: Router) -> TestClient
Construct a TestClient directly from an axum::Router.
Useful for bypassing TestApp builder if you just want to write requests
against a standard axum Router.
Sourcepub fn routes(self, routes: Vec<Route>) -> Self
pub fn routes(self, routes: Vec<Route>) -> Self
Register a collection of routes to be built into the TestApp.
Sourcepub fn config(self, config: AutumnConfig) -> Self
pub fn config(self, config: AutumnConfig) -> Self
Override the default test configuration.
Sourcepub fn with_db(self, pool: Pool<AsyncPgConnection>) -> Self
pub fn with_db(self, pool: Pool<AsyncPgConnection>) -> Self
Attach a database connection pool to the test app.
Sourcepub fn build(self) -> TestClient
pub fn build(self) -> TestClient
Build the application and return a TestClient ready for requests.
This constructs the full Axum router with all middleware applied,
identical to what AppBuilder::run() produces – without binding
a TCP listener.
The process-level global cache is cleared unconditionally so that
#[cached] functions inside this test app always use their
per-function Moka stores and do not accidentally inherit a Redis or
other shared backend installed by a previous test.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TestApp
impl !RefUnwindSafe for TestApp
impl Send for TestApp
impl !Sync for TestApp
impl Unpin for TestApp
impl UnsafeUnpin for TestApp
impl !UnwindSafe for TestApp
Blanket Implementations§
Source§impl<T> AggregateExpressionMethods for T
impl<T> AggregateExpressionMethods for T
Source§fn aggregate_distinct(self) -> Self::Outputwhere
Self: DistinctDsl,
fn aggregate_distinct(self) -> Self::Outputwhere
Self: DistinctDsl,
DISTINCT modifier for aggregate functions Read moreSource§fn aggregate_all(self) -> Self::Outputwhere
Self: AllDsl,
fn aggregate_all(self) -> Self::Outputwhere
Self: AllDsl,
ALL modifier for aggregate functions Read moreSource§fn aggregate_filter<P>(self, f: P) -> Self::Output
fn aggregate_filter<P>(self, f: P) -> Self::Output
Source§fn aggregate_order<O>(self, o: O) -> Self::Outputwhere
Self: OrderAggregateDsl<O>,
fn aggregate_order<O>(self, o: O) -> Self::Outputwhere
Self: OrderAggregateDsl<O>,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
self to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
&self to an expression for Diesel’s query builder. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> RepositoryHooksDefault for Twhere
T: Default,
impl<T> RepositoryHooksDefault for Twhere
T: Default,
Source§fn autumn_default() -> T
fn autumn_default() -> T
Source§impl<T, Conn> RunQueryDsl<Conn> for T
impl<T, Conn> RunQueryDsl<Conn> for T
Source§fn execute<'conn, 'query>(
self,
conn: &'conn mut Conn,
) -> <Conn as AsyncConnectionCore>::ExecuteFuture<'conn, 'query>
fn execute<'conn, 'query>( self, conn: &'conn mut Conn, ) -> <Conn as AsyncConnectionCore>::ExecuteFuture<'conn, 'query>
Source§fn load<'query, 'conn, U>(
self,
conn: &'conn mut Conn,
) -> AndThen<Self::LoadFuture<'conn>, TryCollect<Self::Stream<'conn>, Vec<U>>>
fn load<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> AndThen<Self::LoadFuture<'conn>, TryCollect<Self::Stream<'conn>, Vec<U>>>
Source§fn load_stream<'conn, 'query, U>(
self,
conn: &'conn mut Conn,
) -> Self::LoadFuture<'conn>where
Conn: AsyncConnectionCore,
U: 'conn,
Self: LoadQuery<'query, Conn, U> + 'query,
fn load_stream<'conn, 'query, U>(
self,
conn: &'conn mut Conn,
) -> Self::LoadFuture<'conn>where
Conn: AsyncConnectionCore,
U: 'conn,
Self: LoadQuery<'query, Conn, U> + 'query,
Stream] with the returned rows. Read moreSource§fn get_result<'query, 'conn, U>(
self,
conn: &'conn mut Conn,
) -> AndThen<Self::LoadFuture<'conn>, LoadNext<Pin<Box<Self::Stream<'conn>>>>>
fn get_result<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> AndThen<Self::LoadFuture<'conn>, LoadNext<Pin<Box<Self::Stream<'conn>>>>>
Source§fn get_results<'query, 'conn, U>(
self,
conn: &'conn mut Conn,
) -> AndThen<Self::LoadFuture<'conn>, TryCollect<Self::Stream<'conn>, Vec<U>>>
fn get_results<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> AndThen<Self::LoadFuture<'conn>, TryCollect<Self::Stream<'conn>, Vec<U>>>
Vec with the affected rows. Read more