unstructured/test_unstructured_ingest/test-ingest-against-api.sh
Yao You 1a0b737e9c
revert pdf changes and add new pdf for empty page testing (#1255)
- revert the layout parser fast pdf file to original with just two pages
- add a new file that has one empty page and one page says "this page is
intentionally left blank" for tests
2023-09-01 22:33:06 +00:00

28 lines
763 B
Bash
Executable File

#!/usr/bin/env bash
set -e
if [ -z "$UNS_API_KEY" ]; then
echo "Skipping ingest test against api because the UNS_API_KEY env var is not set."
exit 0
fi
SCRIPT_DIR=$(dirname "$(realpath "$0")")
cd "$SCRIPT_DIR"/.. || exit 1
OUTPUT_FOLDER_NAME=api-ingest-output
OUTPUT_DIR=$SCRIPT_DIR/structured-output/$OUTPUT_FOLDER_NAME
PYTHONPATH=. ./unstructured/ingest/main.py \
local \
--api-key "$UNS_API_KEY" \
--metadata-exclude coordinates,metadata.last_modified \
--partition-by-api \
--partition-strategy hi_res \
--reprocess \
--structured-output-dir "$OUTPUT_DIR" \
--verbose \
--num-processes 1 \
--file-glob "*1p.txt" \
--input-path example-docs
sh "$SCRIPT_DIR"/check-num-files-output.sh 1 $OUTPUT_FOLDER_NAME