mirror of
https://github.com/onionshare/onionshare.git
synced 2025-04-29 03:36:26 -04:00
Fix tests so they recognize the new receive mode location
This commit is contained in:
parent
65b4afeba3
commit
f5e0e9dd62
@ -61,7 +61,7 @@ class ReceiveModeWeb(object):
|
|||||||
# Make sure the receive mode dir exists
|
# Make sure the receive mode dir exists
|
||||||
now = datetime.now()
|
now = datetime.now()
|
||||||
date_dir = now.strftime("%Y-%m-%d")
|
date_dir = now.strftime("%Y-%m-%d")
|
||||||
time_dir = now.strftime("%H.%M:%S")
|
time_dir = now.strftime("%H.%M.%S")
|
||||||
receive_mode_dir = os.path.join(self.common.settings.get('downloads_dir'), date_dir, time_dir)
|
receive_mode_dir = os.path.join(self.common.settings.get('downloads_dir'), date_dir, time_dir)
|
||||||
valid = True
|
valid = True
|
||||||
try:
|
try:
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
import os
|
import os
|
||||||
import requests
|
import requests
|
||||||
|
from datetime import datetime, timedelta
|
||||||
from PyQt5 import QtCore, QtTest
|
from PyQt5 import QtCore, QtTest
|
||||||
from .GuiBaseTest import GuiBaseTest
|
from .GuiBaseTest import GuiBaseTest
|
||||||
|
|
||||||
class GuiReceiveTest(GuiBaseTest):
|
class GuiReceiveTest(GuiBaseTest):
|
||||||
def upload_file(self, public_mode, file_to_upload, expected_file):
|
def upload_file(self, public_mode, file_to_upload, expected_basename):
|
||||||
'''Test that we can upload the file'''
|
'''Test that we can upload the file'''
|
||||||
files = {'file[]': open(file_to_upload, 'rb')}
|
files = {'file[]': open(file_to_upload, 'rb')}
|
||||||
if not public_mode:
|
if not public_mode:
|
||||||
@ -13,9 +14,23 @@ class GuiReceiveTest(GuiBaseTest):
|
|||||||
path = 'http://127.0.0.1:{}/upload'.format(self.gui.app.port)
|
path = 'http://127.0.0.1:{}/upload'.format(self.gui.app.port)
|
||||||
response = requests.post(path, files=files)
|
response = requests.post(path, files=files)
|
||||||
QtTest.QTest.qWait(2000)
|
QtTest.QTest.qWait(2000)
|
||||||
self.assertTrue(os.path.isfile(expected_file))
|
|
||||||
|
|
||||||
def upload_file_should_fail(self, public_mode, expected_file):
|
# Make sure the file is within the last 10 seconds worth of filenames
|
||||||
|
exists = False
|
||||||
|
now = datetime.now()
|
||||||
|
for i in range(10):
|
||||||
|
date_dir = now.strftime("%Y-%m-%d")
|
||||||
|
time_dir = now.strftime("%H.%M.%S")
|
||||||
|
receive_mode_dir = os.path.join(self.gui.common.settings.get('downloads_dir'), date_dir, time_dir)
|
||||||
|
expected_filename = os.path.join(receive_mode_dir, expected_basename)
|
||||||
|
if os.path.exists(expected_filename):
|
||||||
|
exists = True
|
||||||
|
break
|
||||||
|
now = now - timedelta(seconds=1)
|
||||||
|
|
||||||
|
self.assertTrue(exists)
|
||||||
|
|
||||||
|
def upload_file_should_fail(self, public_mode):
|
||||||
'''Test that we can't upload the file when permissions are wrong, and expected content is shown'''
|
'''Test that we can't upload the file when permissions are wrong, and expected content is shown'''
|
||||||
files = {'file[]': open('/tmp/test.txt', 'rb')}
|
files = {'file[]': open('/tmp/test.txt', 'rb')}
|
||||||
if not public_mode:
|
if not public_mode:
|
||||||
@ -73,14 +88,14 @@ class GuiReceiveTest(GuiBaseTest):
|
|||||||
self.run_all_receive_mode_setup_tests(public_mode)
|
self.run_all_receive_mode_setup_tests(public_mode)
|
||||||
if not public_mode:
|
if not public_mode:
|
||||||
self.try_public_paths_in_non_public_mode()
|
self.try_public_paths_in_non_public_mode()
|
||||||
self.upload_file(public_mode, '/tmp/test.txt', '/tmp/OnionShare/test.txt')
|
self.upload_file(public_mode, '/tmp/test.txt', 'test.txt')
|
||||||
self.history_widgets_present(self.gui.receive_mode)
|
self.history_widgets_present(self.gui.receive_mode)
|
||||||
self.counter_incremented(self.gui.receive_mode, 1)
|
self.counter_incremented(self.gui.receive_mode, 1)
|
||||||
self.upload_file(public_mode, '/tmp/test.txt', '/tmp/OnionShare/test-2.txt')
|
self.upload_file(public_mode, '/tmp/test.txt', 'test.txt')
|
||||||
self.counter_incremented(self.gui.receive_mode, 2)
|
self.counter_incremented(self.gui.receive_mode, 2)
|
||||||
self.upload_file(public_mode, '/tmp/testdir/test', '/tmp/OnionShare/test')
|
self.upload_file(public_mode, '/tmp/testdir/test', 'test')
|
||||||
self.counter_incremented(self.gui.receive_mode, 3)
|
self.counter_incremented(self.gui.receive_mode, 3)
|
||||||
self.upload_file(public_mode, '/tmp/testdir/test', '/tmp/OnionShare/test-2')
|
self.upload_file(public_mode, '/tmp/testdir/test', 'test')
|
||||||
self.counter_incremented(self.gui.receive_mode, 4)
|
self.counter_incremented(self.gui.receive_mode, 4)
|
||||||
self.history_indicator(self.gui.receive_mode, public_mode)
|
self.history_indicator(self.gui.receive_mode, public_mode)
|
||||||
self.server_is_stopped(self.gui.receive_mode, False)
|
self.server_is_stopped(self.gui.receive_mode, False)
|
||||||
@ -94,7 +109,7 @@ class GuiReceiveTest(GuiBaseTest):
|
|||||||
'''Attempt to upload (unwritable) files in receive mode and stop the share'''
|
'''Attempt to upload (unwritable) files in receive mode and stop the share'''
|
||||||
self.run_all_receive_mode_setup_tests(public_mode)
|
self.run_all_receive_mode_setup_tests(public_mode)
|
||||||
self.upload_dir_permissions(0o400)
|
self.upload_dir_permissions(0o400)
|
||||||
self.upload_file_should_fail(public_mode, '/tmp/OnionShare/test.txt')
|
self.upload_file_should_fail(public_mode)
|
||||||
self.server_is_stopped(self.gui.receive_mode, True)
|
self.server_is_stopped(self.gui.receive_mode, True)
|
||||||
self.web_server_is_stopped()
|
self.web_server_is_stopped()
|
||||||
self.server_status_indicator_says_closed(self.gui.receive_mode, False)
|
self.server_status_indicator_says_closed(self.gui.receive_mode, False)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user