1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
|
import errno
import webbrowser
from http.server import HTTPServer, SimpleHTTPRequestHandler
from unittest import mock
import pytest
from briefcase.exceptions import BriefcaseCommandError
from briefcase.platforms.web.static import (
HTTPHandler,
LocalHTTPServer,
StaticWebRunCommand,
)
# OSError doesn't expose errno in the constructor; create some
# custom exceptions that mock common connection errors.
class ErrnoError(OSError):
def __init__(self, errno):
super().__init__()
self.errno = errno
@pytest.fixture
def run_command(dummy_console, tmp_path):
command = StaticWebRunCommand(
console=dummy_console,
base_path=tmp_path / "base_path",
data_path=tmp_path / "briefcase",
)
command.data_path = tmp_path / "briefcase"
return command
def test_default_options(run_command):
"""The default options are as expected."""
options, overrides = run_command.parse_options([])
assert options == {
"appname": None,
"update": False,
"update_requirements": False,
"update_resources": False,
"update_support": False,
"update_stub": False,
"no_update": False,
"test_mode": False,
"passthrough": [],
"host": "localhost",
"port": 8080,
"open_browser": True,
}
assert overrides == {}
def test_options(run_command):
"""The extra options can be parsed."""
options, overrides = run_command.parse_options(
["--host", "myhost", "--port", "1234", "--no-browser"]
)
assert options == {
"appname": None,
"update": False,
"update_requirements": False,
"update_resources": False,
"update_support": False,
"update_stub": False,
"no_update": False,
"test_mode": False,
"passthrough": [],
"host": "myhost",
"port": 1234,
"open_browser": False,
}
assert overrides == {}
def test_run(monkeypatch, run_command, first_app_built):
"""A static web app can be launched as a server."""
# Mock server creation
mock_server_init = mock.MagicMock(spec_set=HTTPServer)
monkeypatch.setattr(HTTPServer, "__init__", mock_server_init)
# Mock the socket name returned by the server.
socket = mock.MagicMock()
socket.getsockname.return_value = ("127.0.0.1", "8080")
LocalHTTPServer.socket = socket
# Mock server execution, raising a user exit.
mock_serve_forever = mock.MagicMock(side_effect=KeyboardInterrupt())
monkeypatch.setattr(HTTPServer, "serve_forever", mock_serve_forever)
# Mock shutdown
mock_shutdown = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "shutdown", mock_shutdown)
# Mock server close
mock_server_close = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "server_close", mock_server_close)
# Mock the webbrowser
mock_open_new_tab = mock.MagicMock()
monkeypatch.setattr(webbrowser, "open_new_tab", mock_open_new_tab)
# Run the app
run_command.run_app(
first_app_built,
passthrough=[],
host="localhost",
port=8080,
open_browser=True,
)
# The browser was opened
mock_open_new_tab.assert_called_once_with("http://127.0.0.1:8080")
# The server was started
mock_serve_forever.assert_called_once_with()
# The webserver was shutdown.
mock_shutdown.assert_called_once_with()
# The webserver was closed.
mock_server_close.assert_called_once_with()
@pytest.mark.parametrize(
"exception",
[
ErrnoError(errno.EADDRINUSE),
ErrnoError(errno.ENOSR),
],
)
def test_run_with_fallback_port(
monkeypatch,
run_command,
first_app_built,
exception,
capsys,
):
"""A static web app can be launched as a server even when the requested port is
already in use."""
# Mock server creation that first errors on port, then connects with port 0
mock_server_init = mock.MagicMock(side_effect=[exception, HTTPServer])
monkeypatch.setattr(HTTPServer, "__init__", mock_server_init)
# Mock the socket name returned by the server.
# This value has been auto-selected by the server.
socket = mock.MagicMock()
socket.getsockname.return_value = ("127.0.0.1", "12345")
LocalHTTPServer.socket = socket
# Mock server execution, raising a user exit.
mock_serve_forever = mock.MagicMock(side_effect=KeyboardInterrupt())
monkeypatch.setattr(HTTPServer, "serve_forever", mock_serve_forever)
# Mock shutdown
mock_shutdown = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "shutdown", mock_shutdown)
# Mock server close
mock_server_close = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "server_close", mock_server_close)
# Mock the webbrowser
mock_open_new_tab = mock.MagicMock()
monkeypatch.setattr(webbrowser, "open_new_tab", mock_open_new_tab)
# Run the app
run_command.run_app(
first_app_built,
passthrough=[],
host="localhost",
port=8080,
open_browser=True,
)
# User is warned a system-allocated port is being used
assert "Using a system-allocated port since port 8080" in capsys.readouterr().out
# The browser was opened
mock_open_new_tab.assert_called_once_with("http://127.0.0.1:12345")
# The server was started
mock_serve_forever.assert_called_once_with()
# The webserver was shutdown.
mock_shutdown.assert_called_once_with()
# The webserver was closed.
mock_server_close.assert_called_once_with()
def test_run_with_args(monkeypatch, run_command, first_app_built):
"""A static web app can be launched as a server; passthrough args will be
ignored."""
# Mock server creation
mock_server_init = mock.MagicMock(spec_set=HTTPServer)
monkeypatch.setattr(HTTPServer, "__init__", mock_server_init)
# Mock the socket name returned by the server.
socket = mock.MagicMock()
socket.getsockname.return_value = ("127.0.0.1", "8080")
LocalHTTPServer.socket = socket
# Mock server execution, raising a user exit.
mock_serve_forever = mock.MagicMock(side_effect=KeyboardInterrupt())
monkeypatch.setattr(HTTPServer, "serve_forever", mock_serve_forever)
# Mock shutdown
mock_shutdown = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "shutdown", mock_shutdown)
# Mock server close
mock_server_close = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "server_close", mock_server_close)
# Mock the webbrowser
mock_open_new_tab = mock.MagicMock()
monkeypatch.setattr(webbrowser, "open_new_tab", mock_open_new_tab)
# Run the app
run_command.run_app(
first_app_built,
passthrough=["foo", "--bar"],
host="localhost",
port=8080,
open_browser=True,
)
# The browser was opened
mock_open_new_tab.assert_called_once_with("http://127.0.0.1:8080")
# The server was started
mock_serve_forever.assert_called_once_with()
# The webserver was shutdown.
mock_shutdown.assert_called_once_with()
# The webserver was closed.
mock_server_close.assert_called_once_with()
@pytest.mark.parametrize(
"host, port, exception, message",
[
(
"localhost",
80,
PermissionError(),
r"Try using a port > 1023\.",
),
(
"localhost",
8080,
PermissionError(),
r"Did you specify a valid host and port\?",
),
(
"999.999.999.999",
8080,
ErrnoError(errno.EADDRNOTAVAIL),
r"999.999.999.999 is not a valid hostname.",
),
(
"999.999.999.999",
8080,
ErrnoError(errno.ENOSTR),
r"999.999.999.999 is not a valid hostname.",
),
(
"localhost",
8080,
OSError("Unknown error"),
r"Unknown error",
),
(
"localhost",
99999,
OverflowError(),
r"Port must be in the range 0-65535.",
),
],
)
def test_cleanup_server_error(
monkeypatch,
run_command,
first_app_built,
host,
port,
exception,
message,
):
"""If the server raises an error, it is cleaned up."""
# Mock server creation, raising an error.
mock_server_init = mock.MagicMock(side_effect=exception)
monkeypatch.setattr(HTTPServer, "__init__", mock_server_init)
# Mock server execution
mock_serve_forever = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "serve_forever", mock_serve_forever)
# Mock shutdown
mock_shutdown = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "shutdown", mock_shutdown)
# Mock server close
mock_server_close = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "server_close", mock_server_close)
# Mock the webbrowser
mock_open_new_tab = mock.MagicMock()
monkeypatch.setattr(webbrowser, "open_new_tab", mock_open_new_tab)
# Run the app; an error is raised
with pytest.raises(BriefcaseCommandError, match=message):
run_command.run_app(
first_app_built,
passthrough=[],
host=host,
port=port,
open_browser=True,
)
# The browser was not opened
mock_open_new_tab.assert_not_called()
# The server was not started
mock_serve_forever.assert_not_called()
# The webserver was never started, so it wasn't shut down either.
mock_shutdown.assert_not_called()
mock_server_close.assert_not_called()
def test_cleanup_runtime_server_error(monkeypatch, run_command, first_app_built):
"""If the server raises an error at runtime, it is cleaned up."""
# Mock server creation, raising an error due to an already used port.
mock_server_init = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "__init__", mock_server_init)
# Mock the socket name returned by the server.
socket = mock.MagicMock()
socket.getsockname.return_value = ("127.0.0.1", "8080")
LocalHTTPServer.socket = socket
# Mock server execution
mock_serve_forever = mock.MagicMock(side_effect=ValueError())
monkeypatch.setattr(HTTPServer, "serve_forever", mock_serve_forever)
# Mock shutdown
mock_shutdown = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "shutdown", mock_shutdown)
# Mock server close
mock_server_close = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "server_close", mock_server_close)
# Mock the webbrowser
mock_open_new_tab = mock.MagicMock()
monkeypatch.setattr(webbrowser, "open_new_tab", mock_open_new_tab)
# Run the app; it raises an error
with pytest.raises(ValueError):
run_command.run_app(
first_app_built,
passthrough=[],
host="localhost",
port=8080,
open_browser=True,
)
# The browser was opened
mock_open_new_tab.assert_called_once_with("http://127.0.0.1:8080")
# The server was started
mock_serve_forever.assert_called_once_with()
# The server crashed, so it won't need to be shut down
mock_shutdown.assert_not_called()
# The webserver was closed.
mock_server_close.assert_called_once_with()
def test_run_without_browser(monkeypatch, run_command, first_app_built):
"""A static web app can be launched as a server."""
# Mock server creation
mock_server_init = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "__init__", mock_server_init)
# Mock the socket name returned by the server.
socket = mock.MagicMock()
socket.getsockname.return_value = ("127.0.0.1", "8080")
LocalHTTPServer.socket = socket
# Mock server execution, raising a user exit.
mock_serve_forever = mock.MagicMock(side_effect=KeyboardInterrupt())
monkeypatch.setattr(HTTPServer, "serve_forever", mock_serve_forever)
# Mock shutdown
mock_shutdown = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "shutdown", mock_shutdown)
# Mock server close
mock_server_close = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "server_close", mock_server_close)
# Mock the webbrowser
mock_open_new_tab = mock.MagicMock()
monkeypatch.setattr(webbrowser, "open_new_tab", mock_open_new_tab)
# Run the app
run_command.run_app(
first_app_built,
passthrough=[],
host="localhost",
port=8080,
open_browser=False,
)
# The browser was not opened
mock_open_new_tab.assert_not_called()
# The server was started
mock_serve_forever.assert_called_once_with()
# The webserver was shut down.
mock_shutdown.assert_called_once_with()
# The webserver was closed.
mock_server_close.assert_called_once_with()
def test_run_autoselect_port(monkeypatch, run_command, first_app_built):
"""A static web app can be launched as a server."""
# Mock server creation
mock_server_init = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "__init__", mock_server_init)
# Mock the socket name returned by the server.
# This value has been auto-selected by the server.
socket = mock.MagicMock()
socket.getsockname.return_value = ("127.0.0.1", "12345")
LocalHTTPServer.socket = socket
# Mock server execution, raising a user exit.
mock_serve_forever = mock.MagicMock(side_effect=KeyboardInterrupt())
monkeypatch.setattr(HTTPServer, "serve_forever", mock_serve_forever)
# Mock shutdown
mock_shutdown = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "shutdown", mock_shutdown)
# Mock server close
mock_server_close = mock.MagicMock()
monkeypatch.setattr(HTTPServer, "server_close", mock_server_close)
# Mock the webbrowser
mock_open_new_tab = mock.MagicMock()
monkeypatch.setattr(webbrowser, "open_new_tab", mock_open_new_tab)
# Run the app on an autoselected port
run_command.run_app(
first_app_built,
passthrough=[],
host="localhost",
port=0,
open_browser=True,
)
# The browser was opened
mock_open_new_tab.assert_called_once_with("http://127.0.0.1:12345")
# The server was started
mock_serve_forever.assert_called_once_with()
# The webserver was shut down.
mock_shutdown.assert_called_once_with()
# The webserver was closed.
mock_server_close.assert_called_once_with()
def test_served_paths(monkeypatch, tmp_path):
"""URLs are converted into paths in the project www folder."""
# Mock server creation
mock_server_init = mock.MagicMock(return_value=None)
monkeypatch.setattr(SimpleHTTPRequestHandler, "__init__", mock_server_init)
# Create a handler instance.
request = mock.MagicMock()
server = mock.MagicMock()
handler = HTTPHandler(request, ("localhost", 8080), server)
# We need some properties that are set on the handler instance
# by the superclass; force set them here for test purposes.
handler.server = server
handler.server.base_path = tmp_path / "base_path"
# Invoke this as a static method because we don't want to
# instantiate a full server just to verify that URL rewriting works.
assert handler.translate_path("/static/css/briefcase.css") == str(
tmp_path / "base_path/static/css/briefcase.css"
)
def test_cache_headers(monkeypatch, tmp_path):
"""Server sets no-cache headers."""
# Mock server creation
mock_server_init = mock.MagicMock(return_value=None)
monkeypatch.setattr(SimpleHTTPRequestHandler, "__init__", mock_server_init)
# Mock end_headers on the base class
mock_end_headers = mock.MagicMock()
monkeypatch.setattr(SimpleHTTPRequestHandler, "end_headers", mock_end_headers)
# Create a handler instance.
request = mock.MagicMock()
server = mock.MagicMock()
handler = HTTPHandler(request, ("localhost", 8080), server)
# We need some properties that are set on the handler instance
# by the superclass; force set them here for test purposes.
handler.request_version = "HTTP/1.1"
# Invoke end_headers()
handler.end_headers()
# end_headers was invoked on the base class...
mock_end_headers.assert_called_once_with()
# ...but the custom handler added cache control headers.
assert handler._headers_buffer == [
b"Cache-Control: no-cache, no-store, must-revalidate\r\n",
b"Pragma: no-cache\r\n",
b"Expires: 0\r\n",
]
def test_log_requests_to_logger(monkeypatch):
"""The request handler logs messages to the server's logger."""
monkeypatch.setattr(
SimpleHTTPRequestHandler, "handle", mock.Mock(return_value=None)
)
server = mock.MagicMock()
handler = HTTPHandler(mock.MagicMock(), ("localhost", 8080), server)
handler.log_date_time_string = mock.Mock(return_value="now")
handler.log_message("hello\033")
server.logger.info.assert_called_once_with("localhost - - [now] hello\\x1b")
def test_test_mode(run_command, first_app_built):
"""Test mode raises an error (at least for now)."""
first_app_built.test_mode = True
# Run the app
with pytest.raises(
BriefcaseCommandError,
match=r"Briefcase can't run web apps in test mode.",
):
run_command.run_app(
first_app_built,
passthrough=[],
host="localhost",
port=8080,
open_browser=True,
)
|