mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
* move current integration tests to the integration folder * move pyscript.py into its own python folder * change the path for python unit testing files * change pyscript.py path * Update Makefile * remove echo * replace conda run with pytest directly * oops, add python test files I embarrassingly forgot to add Co-authored-by: Peter W <34256109+pww217@users.noreply.github.com>
52 lines
1.2 KiB
Python
52 lines
1.2 KiB
Python
"""All data required for testing examples"""
|
|
import threading
|
|
from http.server import HTTPServer as SuperHTTPServer
|
|
from http.server import SimpleHTTPRequestHandler
|
|
|
|
import pytest
|
|
|
|
from .support import Logger
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def logger():
|
|
return Logger()
|
|
|
|
|
|
class HTTPServer(SuperHTTPServer):
|
|
"""
|
|
Class for wrapper to run SimpleHTTPServer on Thread.
|
|
Ctrl +Only Thread remains dead when terminated with C.
|
|
Keyboard Interrupt passes.
|
|
"""
|
|
|
|
def run(self):
|
|
try:
|
|
self.serve_forever()
|
|
except KeyboardInterrupt:
|
|
pass
|
|
finally:
|
|
self.server_close()
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def http_server(logger):
|
|
class MyHTTPRequestHandler(SimpleHTTPRequestHandler):
|
|
def log_message(self, fmt, *args):
|
|
logger.log("http_server", fmt % args, color="blue")
|
|
|
|
host, port = "127.0.0.1", 8080
|
|
base_url = f"http://{host}:{port}"
|
|
|
|
# serve_Run forever under thread
|
|
server = HTTPServer((host, port), MyHTTPRequestHandler)
|
|
|
|
thread = threading.Thread(None, server.run)
|
|
thread.start()
|
|
|
|
yield base_url # Transition to test here
|
|
|
|
# End thread
|
|
server.shutdown()
|
|
thread.join()
|