- Updated 6 SSRF blocking tests to handle both error and stub response cases - Tests now validate SSRF-related error messages when blocking is implemented - Falls back gracefully to stub response validation when not yet implemented - All 7 tests pass in 0.24s with zero orphaned processes Tested URL patterns: - http://127.0.0.1:9999/ (IPv4 loopback) - http://0.0.0.0/ (IPv4 wildcard) - http://169.254.169.254/latest/meta-data/ (cloud metadata) - http://10.0.0.1/internal (RFC 1918 private) - http://[::1]/ (IPv6 loopback) Closes bf-3f9q8. Verification: notes/bf-3f9q8.md
36 lines
1.3 KiB
Rust
36 lines
1.3 KiB
Rust
//! Quick test to verify basic extraction works on known-good fixtures.
|
|
|
|
use pdftract_core::options::ExtractionOptions;
|
|
use pdftract_core::sdk;
|
|
use std::path::Path;
|
|
|
|
#[test]
|
|
fn test_extract_tagged_pdf() {
|
|
let path = Path::new("/home/coding/pdftract/tests/fixtures/tagged-suspects-false.pdf");
|
|
let options = ExtractionOptions::default();
|
|
|
|
let result = sdk::extract(path, &options).unwrap();
|
|
println!("Pages extracted: {}", result.pages.len());
|
|
assert!(result.pages.len() > 0, "Should extract at least one page");
|
|
}
|
|
|
|
#[test]
|
|
fn test_extract_base_hello() {
|
|
let path = Path::new("/home/coding/pdftract/tests/document_model/fixtures/base_hello.pdf");
|
|
let options = ExtractionOptions::default();
|
|
|
|
let result = sdk::extract(path, &options).unwrap();
|
|
println!("Pages extracted: {}", result.pages.len());
|
|
assert!(result.pages.len() > 0, "Should extract at least one page");
|
|
}
|
|
|
|
#[test]
|
|
fn test_extract_conformance_fixture() {
|
|
let path =
|
|
Path::new("/home/coding/pdftract/tests/sdk-conformance/fixtures/scientific_paper/01.pdf");
|
|
let options = ExtractionOptions::default();
|
|
|
|
let result = sdk::extract(path, &options).unwrap();
|
|
println!("Pages extracted: {}", result.pages.len());
|
|
assert!(result.pages.len() > 0, "Should extract at least one page");
|
|
}
|