aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2020-09-14Use different test string to test translationsMicah Lee
2020-09-03Merge pull request #1167 from micahflee/docsMicah Lee
OnionShare documentation website
2020-08-27Update Copyright to 2020 everywhere, and assign to Micah Lee, et al. instead ↵Micah Lee
of just Micah Lee
2020-08-27Wait longer in GUI tabs test, and check for the precense of chat mode widget ↵Micah Lee
in GUI base tests
2020-08-21Skip receive mode file permission tests in WindowsMicah Lee
2020-08-21Fix one more tempfile Windows test bugMicah Lee
2020-08-21Wait longer, and Windows tests workMicah Lee
2020-08-21In web tests, allow mime-type to be either application/zip or ↵Micah Lee
application/x-zip-compressed
2020-08-21Windows batch script for running testsMicah Lee
2020-08-21Fix more tempfile already open problems in Windows testsMicah Lee
2020-08-21Close test temporary file before returning, to avoid permission denied error ↵Micah Lee
in windows
2020-08-21Fix settings tests for WindowsMicah Lee
2020-08-21Change how TestLog works to also work in WindowsMicah Lee
2020-08-20Fix base GUI test to take account that the macOS version has separate Add ↵Micah Lee
Files and Add Folder
2020-08-20Allow tor files to be in /usr/share or /usr/local/share in testsMicah Lee
2020-07-05Merge pull request #1139 from micahflee/910_flatpakMicah Lee
Flatpak support
2020-07-06Add tests to make sure URL, QR Code, description etc are hidden when server ↵Miguel Jacq
stops
2020-06-30Merge branch 'develop' into 910_flatpakMicah Lee
2020-06-29Merge pull request #1132 from mig5/update_status_bar_on_tab_changeMicah Lee
#1126 update the status bar each time the active tab is changed
2020-06-29Merge pull request #1128 from mig5/fail_early_on_tests.shMicah Lee
Fail early if any of the tests fail, rather than continue and possibly exit 0
2020-06-29Merge branch 'qrcode' of https://github.com/mig5/onionshare into mig5-qrcodeMicah Lee
2020-06-28Fix testsMicah Lee
2020-06-08Use 'Delete' rather than 'Clear' when talking about removing file items from ↵Miguel Jacq
the FileList, since we have a Delete button for individual files
2020-06-07#1126 update the status bar each time the active tab is changedMiguel Jacq
2020-05-31Fail early if any of the tests fail, rather than continue and possibly exit 0Miguel Jacq
2020-05-31#1115 Add QR Code for onion URLMiguel Jacq
2020-05-27Change code doc from 'Delete All' to 'Clear All' and remove whitespace in testMiguel Jacq
2020-05-27#1116 Add a Clear All button in the File List area for share modesMiguel Jacq
2020-04-06Fix common.get_tor_paths testMicah Lee
2020-04-01Revert "Enable stacktraces of segfaults when running tests"Micah Lee
This reverts commit 145021b2e52083fd91cfa9ee2562f05375c125cb.
2020-04-02Adds bash script to run GUI tests individuallySaptak S
2020-03-29Enable stacktraces of segfaults when running testsMicah Lee
2020-03-22Merge branch 'fix_tests' into 1064_tabsMicah Lee
2020-03-22Add a pytest.ini file to register custom markers, to avoid so many test warningsMicah Lee
2019-11-11Raising qWaits slightlyMiguel Jacq
2019-11-11Add accept dialogs into the ratelimit tests, it seems to helpMiguel Jacq
2019-11-11Fix TypeError: start_onion_service() takes from 1 to 3 positional arguments ↵Miguel Jacq
but 4 were given
2019-11-10Try increasing waits moreMicah Lee
2019-11-10Add some waits so the tests will pass consistentlyMicah Lee
2019-11-10Delete the old tests and replace them with the new testsMicah Lee
2019-11-02Fix settings test, now that we added the persistent_tabs settingMicah Lee
2019-11-02Remove mode settings from global settings objectMicah Lee
2019-11-02Fix CLI tests, and also fix bug related to autostop_sharing that the tests foundMicah Lee
2019-10-20Rename OnionShareGui to MainWindowMicah Lee
2019-10-20Replace .format with python 3.6 f-strings in testsMicah Lee
2019-10-19Use ==/!= to compare str, bytes, and int literalsChristian Clauss
https://docs.python.org/3/whatsnew/3.8.html#changes-in-python-behavior The compiler now produces a SyntaxWarning when identity checks (is and is not) are used with certain types of literals (e.g. strings, numbers). These can often work by accident in CPython, but are not guaranteed by the language spec. The warning advises users to use equality tests (== and !=) instead.
2019-10-12Format all code using blackMicah Lee
2019-09-22Invert the CSP header setting and put it in its own Website Mode settings ↵Miguel Jacq
group. Make the CSP header mandatory for share/receive modes, optional for website mode only.
2019-09-16Make setting the Content-Security-Policy header optional so it doesn't break ↵Miguel Jacq
website mode shares
2019-09-09Fix the discrepancy between SendBaseModeWeb and Web objects' separate ↵Miguel Jacq
cur_history_id attibutes, ensuring that when we call web.error404() we send a new history_id integer for communicating back to the frontend. Add tests for this