-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial end-to-end tests using GitHub Actions
- Loading branch information
Showing
3 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
tests: | ||
name: Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version-file: 'pyproject.toml' | ||
cache: 'poetry' | ||
- name: Install Poetry dependencies | ||
run: poetry install | ||
- name: Install poppler-utils | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y poppler-utils | ||
- name: Write SERVICE_ACCOUNT_CREDENTIALS to service_account_credentials.json | ||
uses: jsdaniell/[email protected] | ||
with: | ||
name: "service_account_credentials.json" | ||
json: ${{ secrets.SERVICE_ACCOUNT_CREDENTIALS }} | ||
|
||
- name: Test Tahweel on 1 page file | ||
run: | | ||
poetry run tahweel .github/data/test-case-1-page.pdf --service-account-credentials service_account_credentials.json | ||
test -f ".github/data/test-case-1-page.txt" || exit 1 | ||
test -f ".github/data/test-case-1-page.docx" || exit 1 | ||
grep -q "^بسم الله الرحمن الرحيم$" ".github/data/test-case-1-page.txt" || exit 1 | ||
rm -f ".github/data/test-case-1-page.txt" ".github/data/test-case-1-page.docx" | ||
- name: Test Tahweel on 3 pages file | ||
run: | | ||
poetry run tahweel .github/data/test-case-3-pages.pdf --service-account-credentials service_account_credentials.json | ||
test -f ".github/data/test-case-3-pages.txt" || exit 1 | ||
test -f ".github/data/test-case-3-pages.docx" || exit 1 | ||
grep -o "PAGE_SEPARATOR" ".github/data/test-case-3-pages.txt" | wc -l | grep -q "^2$" || exit 1 | ||
head -n 1 ".github/data/test-case-3-pages.txt" | grep -q "^بسم الله الرحمن الرحيم$" || exit 1 | ||
tail -n 1 ".github/data/test-case-3-pages.txt" | grep -q "^والصلاة والسلام على أشرف الأنبياء والمرسلين$" || exit 1 | ||
rm -f ".github/data/test-case-3-pages.txt" ".github/data/test-case-3-pages.docx" | ||
- name: Test Tahweel on a directory with --dir-output-type tree_to_tree | ||
run: | | ||
poetry run tahweel .github/data/ --service-account-credentials service_account_credentials.json --dir-output-type tree_to_tree | ||
test -f ".github/data - Tahweel TXT/test-case-1-page.txt" || exit 1 | ||
test -f ".github/data - Tahweel DOCX/test-case-1-page.docx" || exit 1 | ||
test -f ".github/data - Tahweel TXT/test-case-3-pages.txt" || exit 1 | ||
test -f ".github/data - Tahweel DOCX/test-case-3-pages.docx" || exit 1 | ||
rm -rf ".github/data - Tahweel TXT" ".github/data - Tahweel DOCX" | ||
- name: Test Tahweel on a directory with --dir-output-type side_by_side | ||
run: | | ||
poetry run tahweel .github/data/ --service-account-credentials service_account_credentials.json --dir-output-type side_by_side | ||
test -f ".github/data/test-case-1-page.txt" || exit 1 | ||
test -f ".github/data/test-case-1-page.docx" || exit 1 | ||
test -f ".github/data/test-case-3-pages.txt" || exit 1 | ||
test -f ".github/data/test-case-3-pages.docx" || exit 1 | ||
rm -rf ".github/data/test-case-1-page.txt" ".github/data/test-case-1-page.docx" ".github/data/test-case-3-pages.txt" ".github/data/test-case-3-pages.docx" |