djvu-rs 0.24.3

Pure-Rust DjVu codec — decode and encode DjVu documents. MIT licensed, no GPL dependencies.
Documentation
//! CLI OCR backend-selection behavior.
//!
//! These tests intentionally use lightweight experimental OCR features rather
//! than requiring a system Tesseract installation. They verify that unsupported
//! backend choices fail explicitly before users get a late recognition error.

#![cfg(all(
    feature = "cli",
    any(
        feature = "ocr-neural",
        feature = "ocr-onnx",
        feature = "ocr-tesseract"
    )
))]

use assert_cmd::Command;
use predicates::prelude::*;
use std::path::PathBuf;

fn fixture(name: &str) -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR"))
        .join("tests/fixtures")
        .join(name)
}

#[test]
#[cfg(not(feature = "ocr-tesseract"))]
fn ocr_default_backend_errors_when_tesseract_feature_missing() {
    let dir = tempfile::tempdir().unwrap();
    let out = dir.path().join("out.djvu");

    Command::cargo_bin("djvu")
        .unwrap()
        .args([
            "ocr",
            fixture("boy.djvu").to_str().unwrap(),
            "--output",
            out.to_str().unwrap(),
        ])
        .assert()
        .failure()
        .stderr(predicate::str::contains(
            "Tesseract OCR backend is not enabled",
        ));
}

#[test]
fn ocr_candle_backend_reports_experimental_status() {
    let dir = tempfile::tempdir().unwrap();
    let out = dir.path().join("out.djvu");

    Command::cargo_bin("djvu")
        .unwrap()
        .args([
            "ocr",
            fixture("boy.djvu").to_str().unwrap(),
            "--backend",
            "candle",
            "--output",
            out.to_str().unwrap(),
        ])
        .assert()
        .failure()
        .stderr(
            predicate::str::contains("Candle OCR backend is experimental").and(
                predicate::str::contains("no supported model-specific implementation"),
            ),
        );
}

#[test]
fn ocr_onnx_backend_reports_experimental_cli_contract() {
    let dir = tempfile::tempdir().unwrap();
    let out = dir.path().join("out.djvu");

    Command::cargo_bin("djvu")
        .unwrap()
        .args([
            "ocr",
            fixture("boy.djvu").to_str().unwrap(),
            "--backend",
            "onnx",
            "--model",
            "dummy.onnx",
            "--output",
            out.to_str().unwrap(),
        ])
        .assert()
        .failure()
        .stderr(
            predicate::str::contains("ONNX OCR backend is experimental library-only")
                .and(predicate::str::contains("no stable CLI model contract")),
        );
}