mirror of
https://github.com/onionshare/onionshare.git
synced 2025-05-05 07:55:23 -04:00
Renamed onionshare.helpers module to onionshare.common
This commit is contained in:
parent
219c4351e1
commit
1591888863
19 changed files with 74 additions and 75 deletions
|
@ -1,36 +0,0 @@
|
|||
"""
|
||||
OnionShare | https://onionshare.org/
|
||||
|
||||
Copyright (C) 2017 Micah Lee <micah@micahflee.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
import socket
|
||||
from onionshare import helpers
|
||||
|
||||
|
||||
def test_get_platform_returns_platform_system():
|
||||
"""get_platform() returns platform.system() when ONIONSHARE_PLATFORM is not defined"""
|
||||
p = helpers.platform.system
|
||||
helpers.platform.system = lambda: 'Sega Saturn'
|
||||
assert helpers.get_platform() == 'Sega Saturn'
|
||||
helpers.platform.system = p
|
||||
|
||||
def test_get_available_port_returns_an_open_port():
|
||||
"""get_available_port() should return an open port within the range"""
|
||||
for i in range(100):
|
||||
port = helpers.get_available_port(1024, 2048)
|
||||
assert 1024 <= port <= 2048
|
||||
socket.socket().bind(("127.0.0.1", port))
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue