Forbid outgoing requests in activitypub tests (fixes #2289) (#2294)

pull/2293/head
Nutomic 2 years ago committed by GitHub
parent 339eab01fd
commit 5387c262c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

1
Cargo.lock generated

@ -1962,6 +1962,7 @@ dependencies = [
"serial_test", "serial_test",
"sha2", "sha2",
"strum_macros", "strum_macros",
"task-local-extensions",
"tracing", "tracing",
"url", "url",
"uuid", "uuid",

@ -49,3 +49,4 @@ parking_lot = "0.12.0"
serial_test = "0.6.0" serial_test = "0.6.0"
assert-json-diff = "2.0.1" assert-json-diff = "2.0.1"
reqwest-middleware = "0.1.5" reqwest-middleware = "0.1.5"
task-local-extensions = "0.1.1"

@ -55,6 +55,7 @@ pub(crate) fn verify_is_remote_object(id: &Url) -> Result<(), LemmyError> {
#[cfg(test)] #[cfg(test)]
pub(crate) mod tests { pub(crate) mod tests {
use actix::Actor; use actix::Actor;
use anyhow::anyhow;
use diesel::{ use diesel::{
r2d2::{ConnectionManager, Pool}, r2d2::{ConnectionManager, Pool},
PgConnection, PgConnection,
@ -71,9 +72,25 @@ pub(crate) mod tests {
}; };
use lemmy_websocket::{chat_server::ChatServer, LemmyContext}; use lemmy_websocket::{chat_server::ChatServer, LemmyContext};
use parking_lot::Mutex; use parking_lot::Mutex;
use reqwest::Client; use reqwest::{Client, Request, Response};
use reqwest_middleware::ClientBuilder; use reqwest_middleware::{ClientBuilder, Middleware, Next};
use std::sync::Arc; use std::sync::Arc;
use task_local_extensions::Extensions;
struct BlockedMiddleware;
/// A reqwest middleware which blocks all requests
#[async_trait::async_trait]
impl Middleware for BlockedMiddleware {
async fn handle(
&self,
_req: Request,
_extensions: &mut Extensions,
_next: Next<'_>,
) -> reqwest_middleware::Result<Response> {
Err(anyhow!("Network requests not allowed").into())
}
}
// TODO: would be nice if we didnt have to use a full context for tests. // TODO: would be nice if we didnt have to use a full context for tests.
pub(crate) fn init_context() -> LemmyContext { pub(crate) fn init_context() -> LemmyContext {
@ -89,7 +106,7 @@ pub(crate) mod tests {
.build() .build()
.unwrap(); .unwrap();
let client = ClientBuilder::new(client).build(); let client = ClientBuilder::new(client).with(BlockedMiddleware).build();
let secret = Secret { let secret = Secret {
id: 0, id: 0,
jwt_secret: "".to_string(), jwt_secret: "".to_string(),

Loading…
Cancel
Save