mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-13 06:32:34 +01:00
54e78b6274
test_upload: This will create a file and make sure it uploads by verifying a file uploads and is assigned a URL. test_download: This will create a file, upload it and then download it making sure it is the same filename that was uploaded. We can expand this later to maybe check the sizes and such. test_progress: This will create a file and make sure the progress bar shows up after it begins uploading. These are python tests and use Pipenv to manage dependencies as well as tox as the virtualenv manager, and finally pytest as the test runner.
25 lines
532 B
INI
Executable File
25 lines
532 B
INI
Executable File
[tox]
|
|
envlist = integration-tests, flake8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
recreate=True
|
|
skip_install = True
|
|
passenv = DISPLAY MOZ_HEADLESS
|
|
deps = -rpipenv.txt
|
|
commands =
|
|
pipenv install --skip-lock
|
|
pipenv run pytest -v --verify-base-url --driver Firefox --html=send-test.html --self-contained-html {posargs}
|
|
|
|
[testenv:flake8]
|
|
commands =
|
|
pipenv install --skip-lock
|
|
pipenv run flake8 {posargs:.}
|
|
|
|
[flake8]
|
|
exclude = .eggs,.tox,docs,node_modules
|
|
|
|
[pytest]
|
|
base_url = http://localhost:8080
|
|
sensitive_url = mozilla\.(com|org)
|