2018-10-15 22:01:44 -04:00
|
|
|
import os
|
|
|
|
import requests
|
2018-10-11 20:28:47 -04:00
|
|
|
import socks
|
|
|
|
import zipfile
|
|
|
|
from PyQt5 import QtCore, QtTest
|
|
|
|
from .GuiBaseTest import GuiBaseTest
|
|
|
|
|
|
|
|
class GuiShareTest(GuiBaseTest):
|
2018-10-11 21:18:34 -04:00
|
|
|
# Persistence tests
|
|
|
|
def have_same_slug(self, slug):
|
|
|
|
'''Test that we have the same slug'''
|
|
|
|
self.assertEqual(self.gui.share_mode.server_status.web.slug, slug)
|
|
|
|
|
2018-10-11 20:28:47 -04:00
|
|
|
# Share-specific tests
|
2018-10-16 20:57:21 -04:00
|
|
|
|
|
|
|
def file_selection_widget_has_files(self, num=2):
|
|
|
|
'''Test that the number of items in the list is as expected'''
|
|
|
|
self.assertEqual(self.gui.share_mode.server_status.file_selection.get_num_files(), num)
|
2018-10-11 20:28:47 -04:00
|
|
|
|
|
|
|
|
2018-10-15 22:01:44 -04:00
|
|
|
def deleting_all_files_hides_delete_button(self):
|
2018-10-11 20:28:47 -04:00
|
|
|
'''Test that clicking on the file item shows the delete button. Test that deleting the only item in the list hides the delete button'''
|
|
|
|
rect = self.gui.share_mode.server_status.file_selection.file_list.visualItemRect(self.gui.share_mode.server_status.file_selection.file_list.item(0))
|
|
|
|
QtTest.QTest.mouseClick(self.gui.share_mode.server_status.file_selection.file_list.viewport(), QtCore.Qt.LeftButton, pos=rect.center())
|
|
|
|
# Delete button should be visible
|
|
|
|
self.assertTrue(self.gui.share_mode.server_status.file_selection.delete_button.isVisible())
|
2018-10-15 22:01:44 -04:00
|
|
|
# Click delete, delete button should still be visible since we have one more file
|
2018-10-11 20:28:47 -04:00
|
|
|
QtTest.QTest.mouseClick(self.gui.share_mode.server_status.file_selection.delete_button, QtCore.Qt.LeftButton)
|
2018-10-15 22:01:44 -04:00
|
|
|
|
|
|
|
rect = self.gui.share_mode.server_status.file_selection.file_list.visualItemRect(self.gui.share_mode.server_status.file_selection.file_list.item(0))
|
|
|
|
QtTest.QTest.mouseClick(self.gui.share_mode.server_status.file_selection.file_list.viewport(), QtCore.Qt.LeftButton, pos=rect.center())
|
|
|
|
self.assertTrue(self.gui.share_mode.server_status.file_selection.delete_button.isVisible())
|
|
|
|
QtTest.QTest.mouseClick(self.gui.share_mode.server_status.file_selection.delete_button, QtCore.Qt.LeftButton)
|
|
|
|
|
|
|
|
# No more files, the delete button should be hidden
|
2018-10-11 20:28:47 -04:00
|
|
|
self.assertFalse(self.gui.share_mode.server_status.file_selection.delete_button.isVisible())
|
|
|
|
|
|
|
|
|
|
|
|
def add_a_file_and_delete_using_its_delete_widget(self):
|
|
|
|
'''Test that we can also delete a file by clicking on its [X] widget'''
|
|
|
|
self.gui.share_mode.server_status.file_selection.file_list.add_file('/etc/hosts')
|
|
|
|
QtTest.QTest.mouseClick(self.gui.share_mode.server_status.file_selection.file_list.item(0).item_button, QtCore.Qt.LeftButton)
|
2018-10-16 20:57:21 -04:00
|
|
|
self.file_selection_widget_has_files(0)
|
2018-10-11 20:28:47 -04:00
|
|
|
|
|
|
|
|
|
|
|
def file_selection_widget_readd_files(self):
|
|
|
|
'''Re-add some files to the list so we can share'''
|
|
|
|
self.gui.share_mode.server_status.file_selection.file_list.add_file('/etc/hosts')
|
|
|
|
self.gui.share_mode.server_status.file_selection.file_list.add_file('/tmp/test.txt')
|
2018-10-16 20:57:21 -04:00
|
|
|
self.file_selection_widget_has_files(2)
|
2018-10-11 20:28:47 -04:00
|
|
|
|
2018-10-15 22:01:44 -04:00
|
|
|
|
|
|
|
def add_large_file(self):
|
|
|
|
'''Add a large file to the share'''
|
|
|
|
size = 1024*1024*155
|
|
|
|
with open('/tmp/large_file', 'wb') as fout:
|
|
|
|
fout.write(os.urandom(size))
|
|
|
|
self.gui.share_mode.server_status.file_selection.file_list.add_file('/tmp/large_file')
|
2018-10-11 20:28:47 -04:00
|
|
|
|
2018-10-15 22:01:44 -04:00
|
|
|
|
2018-10-11 20:28:47 -04:00
|
|
|
def add_delete_buttons_hidden(self):
|
|
|
|
'''Test that the add and delete buttons are hidden when the server starts'''
|
|
|
|
self.assertFalse(self.gui.share_mode.server_status.file_selection.add_button.isVisible())
|
|
|
|
self.assertFalse(self.gui.share_mode.server_status.file_selection.delete_button.isVisible())
|
|
|
|
|
|
|
|
|
|
|
|
def download_share(self, public_mode):
|
|
|
|
'''Test that we can download the share'''
|
|
|
|
s = socks.socksocket()
|
|
|
|
s.settimeout(60)
|
|
|
|
s.connect(('127.0.0.1', self.gui.app.port))
|
|
|
|
|
|
|
|
if public_mode:
|
|
|
|
path = '/download'
|
|
|
|
else:
|
|
|
|
path = '{}/download'.format(self.gui.share_mode.web.slug)
|
|
|
|
|
|
|
|
http_request = 'GET {} HTTP/1.0\r\n'.format(path)
|
|
|
|
http_request += 'Host: 127.0.0.1\r\n'
|
|
|
|
http_request += '\r\n'
|
|
|
|
s.sendall(http_request.encode('utf-8'))
|
|
|
|
|
|
|
|
with open('/tmp/download.zip', 'wb') as file_to_write:
|
|
|
|
while True:
|
|
|
|
data = s.recv(1024)
|
|
|
|
if not data:
|
|
|
|
break
|
|
|
|
file_to_write.write(data)
|
|
|
|
file_to_write.close()
|
|
|
|
|
|
|
|
zip = zipfile.ZipFile('/tmp/download.zip')
|
|
|
|
QtTest.QTest.qWait(2000)
|
|
|
|
self.assertEqual('onionshare', zip.read('test.txt').decode('utf-8'))
|
|
|
|
|
2018-10-15 22:01:44 -04:00
|
|
|
def hit_404(self, public_mode):
|
|
|
|
'''Test that the server stops after too many 404s, or doesn't when in public_mode'''
|
|
|
|
bogus_path = '/gimme'
|
|
|
|
url = "http://127.0.0.1:{}/{}".format(self.gui.app.port, bogus_path)
|
|
|
|
|
|
|
|
for _ in range(20):
|
|
|
|
r = requests.get(url)
|
|
|
|
|
|
|
|
# A nasty hack to avoid the Alert dialog that blocks the rest of the test
|
|
|
|
if not public_mode:
|
2018-10-16 20:57:21 -04:00
|
|
|
QtCore.QTimer.singleShot(1000, self.accept_dialog)
|
2018-10-15 22:01:44 -04:00
|
|
|
|
|
|
|
# In public mode, we should still be running (no rate-limiting)
|
|
|
|
if public_mode:
|
|
|
|
self.web_server_is_running()
|
|
|
|
# In non-public mode, we should be shut down (rate-limiting)
|
|
|
|
else:
|
|
|
|
self.web_server_is_stopped()
|
|
|
|
|
|
|
|
|
2018-10-11 20:28:47 -04:00
|
|
|
def add_button_visible(self):
|
|
|
|
'''Test that the add button should be visible'''
|
|
|
|
self.assertTrue(self.gui.share_mode.server_status.file_selection.add_button.isVisible())
|
|
|
|
|
|
|
|
|
2018-10-15 22:01:44 -04:00
|
|
|
# 'Grouped' tests follow from here
|
|
|
|
|
2018-10-11 20:28:47 -04:00
|
|
|
def run_all_share_mode_setup_tests(self):
|
|
|
|
"""Tests in share mode prior to starting a share"""
|
|
|
|
self.click_mode(self.gui.share_mode)
|
2018-10-15 22:01:44 -04:00
|
|
|
self.file_selection_widget_has_files()
|
2018-10-11 20:28:47 -04:00
|
|
|
self.history_is_not_visible(self.gui.share_mode)
|
|
|
|
self.click_toggle_history(self.gui.share_mode)
|
|
|
|
self.history_is_visible(self.gui.share_mode)
|
2018-10-15 22:01:44 -04:00
|
|
|
self.deleting_all_files_hides_delete_button()
|
2018-10-11 20:28:47 -04:00
|
|
|
self.add_a_file_and_delete_using_its_delete_widget()
|
|
|
|
self.file_selection_widget_readd_files()
|
|
|
|
|
|
|
|
|
2018-10-15 22:01:44 -04:00
|
|
|
def run_all_share_mode_started_tests(self, public_mode, startup_time=2000):
|
2018-10-11 20:28:47 -04:00
|
|
|
"""Tests in share mode after starting a share"""
|
|
|
|
self.server_working_on_start_button_pressed(self.gui.share_mode)
|
|
|
|
self.server_status_indicator_says_starting(self.gui.share_mode)
|
|
|
|
self.add_delete_buttons_hidden()
|
|
|
|
self.settings_button_is_hidden()
|
2018-10-15 22:01:44 -04:00
|
|
|
self.server_is_started(self.gui.share_mode, startup_time)
|
|
|
|
self.web_server_is_running()
|
2018-10-11 20:28:47 -04:00
|
|
|
self.have_a_slug(self.gui.share_mode, public_mode)
|
|
|
|
self.url_description_shown(self.gui.share_mode)
|
2018-10-15 22:01:44 -04:00
|
|
|
self.have_copy_url_button(self.gui.share_mode, public_mode)
|
2018-10-11 20:28:47 -04:00
|
|
|
self.server_status_indicator_says_started(self.gui.share_mode)
|
|
|
|
|
|
|
|
|
|
|
|
def run_all_share_mode_download_tests(self, public_mode, stay_open):
|
|
|
|
"""Tests in share mode after downloading a share"""
|
2018-10-12 03:53:03 -04:00
|
|
|
self.web_page(self.gui.share_mode, 'Total size', public_mode)
|
2018-10-11 20:28:47 -04:00
|
|
|
self.download_share(public_mode)
|
|
|
|
self.history_widgets_present(self.gui.share_mode)
|
|
|
|
self.server_is_stopped(self.gui.share_mode, stay_open)
|
2018-10-15 22:01:44 -04:00
|
|
|
self.web_server_is_stopped()
|
2018-10-11 20:28:47 -04:00
|
|
|
self.server_status_indicator_says_closed(self.gui.share_mode, stay_open)
|
|
|
|
self.add_button_visible()
|
|
|
|
self.server_working_on_start_button_pressed(self.gui.share_mode)
|
2018-10-15 22:01:44 -04:00
|
|
|
self.server_is_started(self.gui.share_mode)
|
2018-10-11 20:28:47 -04:00
|
|
|
self.history_indicator(self.gui.share_mode, public_mode)
|
|
|
|
|
|
|
|
|
|
|
|
def run_all_share_mode_tests(self, public_mode, stay_open):
|
|
|
|
"""End-to-end share tests"""
|
|
|
|
self.run_all_share_mode_setup_tests()
|
|
|
|
self.run_all_share_mode_started_tests(public_mode)
|
|
|
|
self.run_all_share_mode_download_tests(public_mode, stay_open)
|
|
|
|
|
|
|
|
|
2018-10-15 22:01:44 -04:00
|
|
|
def run_all_large_file_tests(self, public_mode, stay_open):
|
|
|
|
"""Same as above but with a larger file"""
|
|
|
|
self.run_all_share_mode_setup_tests()
|
|
|
|
self.add_large_file()
|
|
|
|
self.run_all_share_mode_started_tests(public_mode, startup_time=15000)
|
|
|
|
self.assertTrue(self.gui.share_mode.filesize_warning.isVisible())
|
|
|
|
self.server_is_stopped(self.gui.share_mode, stay_open)
|
|
|
|
self.web_server_is_stopped()
|
|
|
|
self.server_status_indicator_says_closed(self.gui.share_mode, stay_open)
|
|
|
|
|
|
|
|
|
2018-10-11 21:18:34 -04:00
|
|
|
def run_all_share_mode_persistent_tests(self, public_mode, stay_open):
|
|
|
|
"""Same as end-to-end share tests but also test the slug is the same on multiple shared"""
|
|
|
|
self.run_all_share_mode_setup_tests()
|
|
|
|
self.run_all_share_mode_started_tests(public_mode)
|
|
|
|
slug = self.gui.share_mode.server_status.web.slug
|
|
|
|
self.run_all_share_mode_download_tests(public_mode, stay_open)
|
|
|
|
self.have_same_slug(slug)
|
|
|
|
|
|
|
|
|
2018-10-11 20:28:47 -04:00
|
|
|
def run_all_share_mode_timer_tests(self, public_mode):
|
|
|
|
"""Auto-stop timer tests in share mode"""
|
|
|
|
self.run_all_share_mode_setup_tests()
|
|
|
|
self.set_timeout(self.gui.share_mode, 5)
|
|
|
|
self.run_all_share_mode_started_tests(public_mode)
|
2019-03-25 00:05:54 -04:00
|
|
|
self.autostop_timer_widget_hidden(self.gui.share_mode)
|
2018-10-11 20:28:47 -04:00
|
|
|
self.server_timed_out(self.gui.share_mode, 10000)
|
2018-10-15 22:01:44 -04:00
|
|
|
self.web_server_is_stopped()
|
2018-10-11 20:28:47 -04:00
|
|
|
|
2019-03-04 18:28:27 -05:00
|
|
|
def run_all_share_mode_startup_timer_tests(self, public_mode):
|
|
|
|
"""Auto-stop timer tests in share mode"""
|
|
|
|
self.run_all_share_mode_setup_tests()
|
|
|
|
self.set_startup_timer(self.gui.share_mode, 5)
|
|
|
|
self.server_working_on_start_button_pressed(self.gui.share_mode)
|
|
|
|
self.startup_timer_widget_hidden(self.gui.share_mode)
|
|
|
|
self.server_status_indicator_says_scheduled(self.gui.share_mode)
|
2019-03-05 00:59:13 -05:00
|
|
|
self.web_server_is_stopped()
|
2019-03-04 18:28:27 -05:00
|
|
|
self.scheduled_service_started(self.gui.share_mode, 7000)
|
|
|
|
self.web_server_is_running()
|
2018-10-16 20:57:21 -04:00
|
|
|
|
2019-03-25 00:05:54 -04:00
|
|
|
def run_all_share_mode_autostop_autostart_mismatch_tests(self, public_mode):
|
2019-03-11 00:55:17 -04:00
|
|
|
"""Auto-stop timer tests in share mode"""
|
|
|
|
self.run_all_share_mode_setup_tests()
|
|
|
|
self.set_startup_timer(self.gui.share_mode, 15)
|
|
|
|
self.set_timeout(self.gui.share_mode, 5)
|
|
|
|
QtCore.QTimer.singleShot(4000, self.accept_dialog)
|
|
|
|
QtTest.QTest.mouseClick(self.gui.share_mode.server_status.server_button, QtCore.Qt.LeftButton)
|
|
|
|
self.server_is_stopped(self.gui.share_mode, False)
|
|
|
|
|
2018-10-16 20:57:21 -04:00
|
|
|
def run_all_share_mode_unreadable_file_tests(self):
|
|
|
|
'''Attempt to share an unreadable file'''
|
|
|
|
self.run_all_share_mode_setup_tests()
|
|
|
|
QtCore.QTimer.singleShot(1000, self.accept_dialog)
|
|
|
|
self.gui.share_mode.server_status.file_selection.file_list.add_file('/tmp/nonexistent.txt')
|
|
|
|
self.file_selection_widget_has_files(2)
|