mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
f5e4d70731
Fix Website and Chat modes with auto-stop timer in CLI mode. Add 'poetry run onionshare-cli' tests to CircleCI to catch CLI runtime bugs.
66 lines
2.0 KiB
YAML
66 lines
2.0 KiB
YAML
version: 2
|
|
workflows:
|
|
version: 2
|
|
test:
|
|
jobs:
|
|
- test-cli
|
|
- test-gui
|
|
|
|
jobs:
|
|
test-cli:
|
|
docker:
|
|
- image: circleci/python:3.8-buster
|
|
|
|
working_directory: ~/repo
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- run:
|
|
name: Install dependencies
|
|
command: |
|
|
sudo apt-get update
|
|
sudo apt-get -y install tor obfs4proxy
|
|
pip install poetry
|
|
cd ~/repo/cli
|
|
poetry install
|
|
|
|
- run:
|
|
name: Run tests
|
|
command: |
|
|
cd ~/repo/cli
|
|
poetry run pytest -v ./tests
|
|
poetry run onionshare-cli --local-only ./tests --auto-stop-timer 2
|
|
poetry run onionshare-cli --local-only --receive --auto-stop-timer 2
|
|
poetry run onionshare-cli --local-only --website ../docs --auto-stop-timer 2
|
|
poetry run onionshare-cli --local-only --chat --auto-stop-timer 2
|
|
|
|
test-gui:
|
|
docker:
|
|
- image: circleci/python:3.8-buster
|
|
|
|
working_directory: ~/repo
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- run:
|
|
name: Install dependencies
|
|
command: |
|
|
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
|
|
cd ~/repo/cli
|
|
poetry install
|
|
poetry build
|
|
cp dist/onionshare_cli-*.whl ~/repo/desktop
|
|
cd ~/repo/desktop
|
|
pip install briefcase pytest pytest-briefcase pytest-faulthandler pytest-qt pytest-xvfb
|
|
pip install $(python -c 'import toml; print(" ".join(toml.loads(open("pyproject.toml").read())["tool"]["briefcase"]["app"]["onionshare"]["requires"]))')
|
|
|
|
- run:
|
|
name: Run tests
|
|
command: |
|
|
cd ~/repo/desktop
|
|
./tests/run.sh
|