From 8087042509ae7b09369d42e361ca73bda0c7c300 Mon Sep 17 00:00:00 2001 From: Přemysl Eric Janouch
Date: Tue, 26 Dec 2023 02:39:46 +0100 Subject: Make the test script shorter --- test.sh | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/test.sh b/test.sh index 007da25..a5136f4 100755 --- a/test.sh +++ b/test.sh @@ -16,18 +16,14 @@ cp -ra $HOME/Pictures/Anime $input ./gallery web $target :8080 & web=$! -echo '{"path":"/tmp/Gi"}' | \ -curl http://localhost:8080/api/browse -X POST --data-binary @- -echo '{}' | \ -curl http://localhost:8080/api/tags -X POST --data-binary @- -echo '{}' | \ -curl http://localhost:8080/api/duplicates -X POST --data-binary @- -echo '{}' | \ -curl http://localhost:8080/api/orphans -X POST --data-binary @- -echo '{"sha1":"d53fc82162fd19a6e7b92b401b08b7505dbf3dfd"}' | \ -curl http://localhost:8080/api/info -X POST --data-binary @- -echo '{"sha1":"9539d9895ab8c25d76c321b23b8a327801a496bb"}' | \ -curl http://localhost:8080/api/similar -X POST --data-binary @- +call() (curl http://localhost:8080/api/$1 -X POST --data-binary @-) + +echo '{"path":"/tmp/Gi"}' | call browse +echo '{}' | call tags +echo '{}' | call duplicates +echo '{}' | call orphans +echo '{"sha1":"d53fc82162fd19a6e7b92b401b08b7505dbf3dfd"}' | call info +echo '{"sha1":"9539d9895ab8c25d76c321b23b8a327801a496bb"}' | call similar kill $web || : wait $web -- cgit v1.2.3-70-g09d2