#[cfg(any(feature = "pdf", feature = "office", feature = "ocr", feature = "ocr-wasm"))]
const MIN_NON_WHITESPACE_CHARS: usize = 3;
#[cfg(any(feature = "pdf", feature = "office", feature = "ocr", feature = "ocr-wasm"))]
pub(crate) fn is_page_text_blank(text: &str) -> bool {
let non_whitespace_count = text.chars().filter(|c| !c.is_whitespace()).count();
non_whitespace_count < MIN_NON_WHITESPACE_CHARS
}
#[cfg(all(
test,
any(feature = "pdf", feature = "office", feature = "ocr", feature = "ocr-wasm")
))]
mod tests {
use super::*;
#[test]
fn empty_string_is_blank() {
assert!(is_page_text_blank(""));
}
#[test]
fn whitespace_only_is_blank() {
assert!(is_page_text_blank(" \n\t\n "));
}
#[test]
fn single_character_is_blank() {
assert!(is_page_text_blank("1"));
}
#[test]
fn two_characters_is_blank() {
assert!(is_page_text_blank("- "));
}
#[test]
fn three_non_whitespace_chars_is_not_blank() {
assert!(!is_page_text_blank("abc"));
}
#[test]
fn meaningful_text_is_not_blank() {
assert!(!is_page_text_blank("This page has content."));
}
}