2014-09-02 15:10:42 -04:00
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
|
|
|
Copyright (C) 2014 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/>.
|
|
|
|
"""
|
2014-08-26 21:38:46 -04:00
|
|
|
import socket
|
|
|
|
from onionshare import OnionShare
|
|
|
|
from nose import with_setup
|
2014-06-02 23:45:51 -04:00
|
|
|
|
|
|
|
def test_choose_port_returns_a_port_number():
|
|
|
|
"choose_port() returns a port number"
|
2014-08-26 21:38:46 -04:00
|
|
|
app = OnionShare()
|
2014-08-31 16:06:12 -04:00
|
|
|
app.choose_port()
|
2014-08-26 21:38:46 -04:00
|
|
|
assert 1024 <= app.port <= 65535
|
2014-06-02 23:45:51 -04:00
|
|
|
|
|
|
|
def test_choose_port_returns_an_open_port():
|
|
|
|
"choose_port() returns an open port"
|
2014-08-26 21:38:46 -04:00
|
|
|
app = OnionShare()
|
|
|
|
# choose a new port
|
|
|
|
app.choose_port()
|
|
|
|
socket.socket().bind(("127.0.0.1", app.port))
|