mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
418252f7c6
This reverts commit 43eda6b9df
.
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
#!/usr/bin/env python3
|
|
import os
|
|
import sys
|
|
import unittest
|
|
import pytest
|
|
import json
|
|
|
|
from PyQt5 import QtWidgets
|
|
|
|
from onionshare.common import Common
|
|
from onionshare.web import Web
|
|
from onionshare import onion, strings
|
|
from onionshare_gui import *
|
|
|
|
from .GuiBaseTest import GuiBaseTest
|
|
|
|
class ShareModePersistentSlugTest(unittest.TestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
test_settings = {
|
|
"public_mode": False,
|
|
"slug": "",
|
|
"save_private_key": True,
|
|
"close_after_first_download": False,
|
|
}
|
|
cls.gui = GuiBaseTest.set_up(test_settings)
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
GuiBaseTest.tear_down()
|
|
|
|
@pytest.mark.run(order=1)
|
|
def test_run_all_common_setup_tests(self):
|
|
GuiBaseTest.run_all_common_setup_tests(self)
|
|
|
|
@pytest.mark.run(order=2)
|
|
def test_run_all_share_mode_tests(self):
|
|
GuiBaseTest.run_all_share_mode_tests(self, False, True)
|
|
global slug
|
|
slug = self.gui.share_mode.server_status.web.slug
|
|
|
|
@pytest.mark.run(order=3)
|
|
def test_have_same_slug(self):
|
|
'''Test that we have the same slug'''
|
|
self.assertEqual(self.gui.share_mode.server_status.web.slug, slug)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|