Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Leila011 committed Jul 31, 2024
1 parent b56344a commit e0f24d4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/agat/agat_sp_statistics/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash

## VIASH START
## VIASH END

test_dir="${meta_resources_dir}/test_data"
out_dir="${meta_resources_dir}/out_data"

echo "> Run $meta_name with test data and --emblmygff3"
"$meta_executable" \
--gff "$test_dir/1.gff" \
--output "$out_dir/output.txt" \

echo ">> Checking output"
[ ! -f "$out_dir/output.txt" ] && echo "Output file output.txt does not exist" && exit 1

echo ">> Check if output is empty"
[ ! -s "$out_dir/output.txt" ] && echo "Output file output.txt is empty" && exit 1

echo ">> Check if output matches expected output"
diff "$out_dir/output.txt" "$test_dir/agat_sp_statistics_1.txt"
if [ $? -ne 0 ]; then
echo "Output file output.txt does not match expected output"
exit 1
fi

echo "> Test successful"

0 comments on commit e0f24d4

Please sign in to comment.