Files
wehub-resource-sync d718c5a372
CI / compile_and_lint (push) Failing after 0s
CI / docker_build (linux/amd64, -linux-amd64-duckdb, duckdb) (push) Failing after 0s
CI / docker_build (linux/arm64, -linux-arm64, minimal) (push) Failing after 2s
CI / docker_build (linux/arm64, -linux-arm64-duckdb, duckdb) (push) Failing after 1s
CI / docker_build (linux/amd64, minimal) (push) Failing after 1s
CI / test (, sqlite, sqlite::memory:) (push) Has been skipped
CI / test (mssql, mssql, mssql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (mysql, mysql, mysql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (oracle, oracle, Driver=Oracle 21 ODBC driver;Dbq=//127.0.0.1:1521/FREEPDB1;Uid=root;Pwd=Password123!) (push) Has been skipped
CI / test (postgres, odbc, Driver=PostgreSQL Unicode;Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!, true) (push) Has been skipped
CI / test (postgres, postgres, postgres://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / playwright (push) Has been skipped
CI / docker_build (linux/arm/v7, -linux-arm-v7, minimal) (push) Failing after 0s
CI / hurl_examples (push) Failing after 8s
deploy website / deploy_official_site (push) Failing after 1s
CI / hurl (${{ matrix.example }}) (push) Has been skipped
CI / docker_push (duckdb) (push) Has been cancelled
CI / docker_push (minimal) (push) Has been cancelled
CI / windows_test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:57 +08:00

109 lines
3.2 KiB
Rust

use crate::common::req_path;
use actix_web::{http::StatusCode, test};
use percent_encoding::{NON_ALPHANUMERIC, utf8_percent_encode};
use serde_json::{Value, json};
struct InvalidHeaderCase {
name: &'static str,
properties: Value,
}
async fn assert_invalid_header_response(case: &InvalidHeaderCase) {
let properties = serde_json::to_string(&case.properties).unwrap();
let properties = utf8_percent_encode(&properties, NON_ALPHANUMERIC).to_string();
let path = format!("/tests/errors/invalid_header.sql?properties={properties}");
let resp = req_path(&path).await.unwrap_or_else(|err| {
panic!(
"{} should return an error response instead of failing the request: {err:#}",
case.name
)
});
assert_eq!(
resp.status(),
StatusCode::INTERNAL_SERVER_ERROR,
"{} should return a 500 response",
case.name
);
let body = test::read_body(resp).await;
let body_str = String::from_utf8(body.to_vec()).unwrap();
assert!(
body_str.to_lowercase().contains("error"),
"{} should render an error response body, got:\n{body_str}",
case.name
);
}
#[actix_web::test]
async fn test_invalid_header_components_return_an_error_response() {
let cases = vec![
InvalidHeaderCase {
name: "cookie domain with newline",
properties: json!({
"component": "cookie",
"name": "boom",
"value": "x",
"domain": "\n",
}),
},
InvalidHeaderCase {
name: "cookie path with DEL",
properties: json!({
"component": "cookie",
"name": "boom",
"value": "x",
"path": "\u{007f}",
}),
},
InvalidHeaderCase {
name: "http_header value with carriage return",
properties: json!({
"component": "http_header",
"X-Test": "\r",
}),
},
InvalidHeaderCase {
name: "redirect link with NUL",
properties: json!({
"component": "redirect",
"link": "\u{0000}",
}),
},
InvalidHeaderCase {
name: "authentication link with unit separator",
properties: json!({
"component": "authentication",
"link": "\u{001f}",
}),
},
InvalidHeaderCase {
name: "download filename with newline",
properties: json!({
"component": "download",
"data_url": "data:text/plain,ok",
"filename": "\n",
}),
},
InvalidHeaderCase {
name: "csv filename with carriage return",
properties: json!({
"component": "csv",
"filename": "\r",
}),
},
InvalidHeaderCase {
name: "csv title with NUL",
properties: json!({
"component": "csv",
"title": "\u{0000}",
}),
},
];
for case in &cases {
assert_invalid_header_response(case).await;
}
}