2022-09-30 16:47:20 -04:00
|
|
|
name: Run Tests
|
2022-09-30 19:25:07 -04:00
|
|
|
run-name: Run tests
|
2022-12-14 17:48:15 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-09-30 17:00:44 -04:00
|
|
|
|
2022-09-30 16:47:20 -04:00
|
|
|
jobs:
|
|
|
|
test-cli:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
2022-10-07 18:44:12 -04:00
|
|
|
python-version: "3.9"
|
2022-09-30 16:47:20 -04:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install tor obfs4proxy
|
|
|
|
pip install --upgrade pip poetry
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pypoetry/virtualenvs
|
2022-09-30 17:00:44 -04:00
|
|
|
key: ${{ runner.os }}-cli-poetry-${{ hashFiles('cli/poetry.lock') }}
|
2022-09-30 16:47:20 -04:00
|
|
|
- run: cd cli && poetry install
|
|
|
|
- run: |
|
|
|
|
cd cli
|
|
|
|
poetry run pytest -v ./tests
|
2023-10-09 00:54:19 -04:00
|
|
|
poetry run onionshare-cli --local-only ./tests --auto-stop-timer 2 --qr --verbose
|
|
|
|
poetry run onionshare-cli --local-only ./tests --auto-start-timer 2 --auto-stop-timer 2 --qr --verbose
|
|
|
|
poetry run onionshare-cli --local-only --receive --auto-stop-timer 2 --qr --verbose
|
|
|
|
poetry run onionshare-cli --local-only --website ../docs --auto-stop-timer 2 --qr --verbose
|
|
|
|
poetry run onionshare-cli --local-only --chat --auto-stop-timer 5 --qr --verbose
|
2022-09-30 17:00:44 -04:00
|
|
|
|
2022-10-02 14:03:28 -04:00
|
|
|
test-desktop:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
2022-10-07 18:44:12 -04:00
|
|
|
python-version: "3.9"
|
2022-10-02 14:03:28 -04:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y tor obfs4proxy gcc python3-dev python3-pyside2.qtcore python3-pyside2.qtwidgets python3-pyside2.qtgui
|
|
|
|
sudo apt-get install -y xvfb x11-utils libxkbcommon-x11-0 libxcb-randr0-dev libxcb-xtest0-dev libxcb-xinerama0-dev libxcb-shape0-dev libxcb-xkb-dev libxcb-render-util0 libxcb-icccm4 libxcb-keysyms1 libxcb-image0
|
|
|
|
pip install --upgrade pip poetry
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pypoetry/virtualenvs
|
|
|
|
key: ${{ runner.os }}-desktop-poetry-${{ hashFiles('desktop/poetry.lock') }}
|
|
|
|
- run: cd desktop && poetry install
|
|
|
|
- run: |
|
|
|
|
cd desktop
|
2023-05-22 00:57:31 -04:00
|
|
|
QT_QPA_PLATFORM=offscreen QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py
|