def test_if_port_env_var_is_set_then_specified_host_is_used(app: App): with override_env("PORT", "4242"): def run(_, host, **kwargs): assert host == "example.com" app.run(_run=run, host="example.com")
def test_if_import_string_unknown_then_no_debug_warning_raised(app: App): def run(app, **kwargs): pass app.import_string = None with pytest.warns(UserWarning): app.run(debug=True, _run=run)
def test_if_debug_env_var_set_then_debug_mode_enabled(app: App, empty_run): os.environ["BOCADILLO_DEBUG"] = "1" try: assert not app.debug app.run(_run=empty_run) assert app.debug finally: os.environ.pop("BOCADILLO_DEBUG")
def test_if_port_env_var_is_set_then_host_is_any_and_port_is_env_var(app: App): with override_env("PORT", "4242"): def run(app_obj, host, port, **kwargs): assert host == "0.0.0.0" assert port == 4242 assert app_obj == app app.run(_run=run)
from bocadillo import App app = App( enable_cors=True, cors_config={"allow_origins": ["*"], "allow_methods": ["*"]}, ) _COURSES = [ { "id": 1, "code": "adv-maths", "name": "Advanced Mathematics", "created": "2018-08-14T12:09:45", }, { "id": 2, "code": "cs1", "name": "Computer Science I", "created": "2018-06-12T18:34:16", }, ] @app.route("/courses") async def courses_list(req, res): res.media = _COURSES if __name__ == "__main__": app.run()
def test_declared_as(app: App): def run(app_obj, **kwargs): assert app_obj.endswith(":application") app.run(debug=True, declared_as="application", _run=run)
def test_if_debug_then_static_files_auto_refresh(app: App, empty_run): app.run(debug=True, _run=empty_run) for static_app in app._static_apps.values(): assert static_app.autorefresh
def test_if_debug_then_app_given_as_import_string(app: App): def run(app_obj, **kwargs): assert isinstance(app_obj, str) assert app_obj.endswith(":app") app.run(debug=True, _run=run)
def test_if_debug_then_debug_mode_enabled(app: App, empty_run): assert not app.debug app.run(debug=True, _run=empty_run) assert app.debug
def test_debug_mode_disabled_by_default(app: App, empty_run): assert not app.debug app.run(_run=empty_run) assert not app.debug
def test_port_is_8000_by_default(app: App): def run(_, port, **kwargs): assert port == 8000 app.run(_run=run)
def test_host_is_localhost_by_default(app: App): def run(_, host, **kwargs): assert host == "127.0.0.1" app.run(_run=run)