From 7daee6daefee15183e87f9f01680f27a34274bc1 Mon Sep 17 00:00:00 2001 From: Přemysl Eric Janouch Date: Wed, 27 Dec 2023 03:35:29 +0100 Subject: Start generalizing the test script --- test.sh | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'test.sh') diff --git a/test.sh b/test.sh index 0f69676..844148c 100755 --- a/test.sh +++ b/test.sh @@ -1,28 +1,29 @@ #!/bin/sh -xe +cd "$(dirname "$0")" make gallery -target=/tmp/G input=/tmp/Gi -rm -rf $target $input +target=/tmp/G input=/tmp/G/Images +rm -rf $target -mkdir -p $target -cp -ra $HOME/Pictures/Anime $input +mkdir -p $target $input +# TODO: Generate something in there. ./gallery init $target ./gallery sync $target $input "$@" ./gallery thumbnail $target ./gallery dhash $target -./gallery tag $target autotagger "DanBooru autotagger" \ - < ../build-db/autotagger.tsv +./gallery tag $target test "Test space" < /dev/null ./gallery web $target :8080 & web=$! -trap "kill $web; wait $web" EXIT INT +trap "kill $web; wait $web" EXIT INT TERM sleep 0.25 call() (curl http://localhost:8080/api/$1 -X POST --data-binary @-) -echo '{"path":"/tmp/Gi"}' | call browse +echo '{"path":"'"$(basename "$input")"'"}' | call browse echo '{}' | call tags echo '{}' | call duplicates echo '{}' | call orphans +# TODO: Use hashes of generated images. echo '{"sha1":"d53fc82162fd19a6e7b92b401b08b7505dbf3dfd"}' | call info echo '{"sha1":"9539d9895ab8c25d76c321b23b8a327801a496bb"}' | call similar -- cgit v1.2.3-70-g09d2