Files
textual/tests/test_screens.py
2024-09-07 17:52:25 +01:00

627 lines
18 KiB
Python

from __future__ import annotations
import asyncio
import sys
import threading
import pytest
from textual import work
from textual.app import App, ComposeResult, ScreenStackError
from textual.events import MouseMove
from textual.geometry import Offset
from textual.screen import Screen
from textual.widgets import Button, Input, Label
from textual.worker import NoActiveWorker
skip_py310 = pytest.mark.skipif(
sys.version_info.minor == 10 and sys.version_info.major == 3,
reason="segfault on py3.10",
)
async def test_screen_walk_children():
"""Test query only reports active screen."""
class ScreensApp(App):
pass
app = ScreensApp()
async with app.run_test() as pilot:
screen1 = Screen()
screen2 = Screen()
pilot.app.push_screen(screen1)
assert list(pilot.app.query("*")) == [screen1]
pilot.app.push_screen(screen2)
assert list(pilot.app.query("*")) == [screen2]
async def test_installed_screens():
class ScreensApp(App):
SCREENS = {
"home": Screen, # Screen type
"one": Screen, # Screen instance, disallowed as of #4893
"two": Screen, # Callable[[], Screen]
}
app = ScreensApp()
async with app.run_test() as pilot:
pilot.app.push_screen("home") # Instantiates and pushes the "home" screen
pilot.app.push_screen("one") # Pushes the pre-instantiated "one" screen
pilot.app.push_screen("home") # Pushes the single instance of "home" screen
pilot.app.push_screen(
"two"
) # Calls the callable, pushes returned Screen instance
assert len(app.screen_stack) == 5
assert app.screen_stack[1] is app.screen_stack[3]
assert app.screen is app.screen_stack[4]
assert isinstance(app.screen, Screen)
assert app.is_screen_installed(app.screen)
assert pilot.app.pop_screen()
assert pilot.app.pop_screen()
assert pilot.app.pop_screen()
assert pilot.app.pop_screen()
with pytest.raises(ScreenStackError):
pilot.app.pop_screen()
async def test_screens():
app = App()
app._loop = asyncio.get_running_loop()
app._thread_id = threading.get_ident()
# There should be nothing in the children since the app hasn't run yet
assert not app._nodes
assert not app.children
with app._context():
with pytest.raises(ScreenStackError):
app.screen
assert not app._installed_screens
screen1 = Screen(name="screen1")
screen2 = Screen(name="screen2")
screen3 = Screen(name="screen3")
# installs screens
app.install_screen(screen1, "screen1")
app.install_screen(screen2, "screen2")
# Installing a screen does not add it to the DOM
assert not app._nodes
assert not app.children
# Check they are installed
assert app.is_screen_installed("screen1")
assert app.is_screen_installed("screen2")
assert app.get_screen("screen1") is screen1
with pytest.raises(KeyError):
app.get_screen("foo")
# Check screen3 is not installed
assert not app.is_screen_installed("screen3")
# Installs screen3
app.install_screen(screen3, "screen3")
# Confirm installed
assert app.is_screen_installed("screen3")
# Check screen stack is empty
assert app.screen_stack == []
# Push a screen
await app.push_screen("screen1")
# Check it is on the stack
assert app.screen_stack == [screen1]
# Check it is current
assert app.screen is screen1
# There should be one item in the children view
assert app.children == (screen1,)
# Switch to another screen
await app.switch_screen("screen2")
# Check it has changed the stack and that it is current
assert app.screen_stack == [screen2]
assert app.screen is screen2
assert app.children == (screen2,)
# Push another screen
await app.push_screen("screen3")
assert app.screen_stack == [screen2, screen3]
assert app.screen is screen3
# Only the current screen is in children
assert app.children == (screen3,)
# Pop a screen
await app.pop_screen()
assert app.screen is screen2
assert app.screen_stack == [screen2]
# Uninstall screens
app.uninstall_screen(screen1)
assert not app.is_screen_installed(screen1)
app.uninstall_screen("screen3")
assert not app.is_screen_installed(screen1)
# Check we can't uninstall a screen on the stack
with pytest.raises(ScreenStackError):
app.uninstall_screen(screen2)
# Check we can't pop last screen
with pytest.raises(ScreenStackError):
app.pop_screen()
screen1.remove()
screen2.remove()
screen3.remove()
await app._shutdown()
async def test_auto_focus_on_screen_if_app_auto_focus_is_none():
"""Setting app.AUTO_FOCUS = `None` means it is not taken into consideration."""
class MyScreen(Screen[None]):
def compose(self):
yield Button()
yield Input(id="one")
yield Input(id="two")
class MyApp(App[None]):
AUTO_FOCUS = None
app = MyApp()
async with app.run_test():
MyScreen.AUTO_FOCUS = "*"
await app.push_screen(MyScreen())
assert isinstance(app.focused, Button)
app.pop_screen()
MyScreen.AUTO_FOCUS = None
await app.push_screen(MyScreen())
assert app.focused is None
app.pop_screen()
MyScreen.AUTO_FOCUS = "Input"
await app.push_screen(MyScreen())
assert isinstance(app.focused, Input)
assert app.focused.id == "one"
app.pop_screen()
MyScreen.AUTO_FOCUS = "#two"
await app.push_screen(MyScreen())
assert isinstance(app.focused, Input)
assert app.focused.id == "two"
# If we push and pop another screen, focus should be preserved for #two.
MyScreen.AUTO_FOCUS = None
await app.push_screen(MyScreen())
assert app.focused is None
app.pop_screen()
assert app.focused.id == "two"
async def test_auto_focus_on_screen_if_app_auto_focus_is_disabled():
"""Setting app.AUTO_FOCUS = `None` means it is not taken into consideration."""
class MyScreen(Screen[None]):
def compose(self):
yield Button()
yield Input(id="one")
yield Input(id="two")
class MyApp(App[None]):
AUTO_FOCUS = ""
app = MyApp()
async with app.run_test():
MyScreen.AUTO_FOCUS = "*"
await app.push_screen(MyScreen())
assert isinstance(app.focused, Button)
app.pop_screen()
MyScreen.AUTO_FOCUS = None
await app.push_screen(MyScreen())
assert app.focused is None
app.pop_screen()
MyScreen.AUTO_FOCUS = "Input"
await app.push_screen(MyScreen())
assert isinstance(app.focused, Input)
assert app.focused.id == "one"
app.pop_screen()
MyScreen.AUTO_FOCUS = "#two"
await app.push_screen(MyScreen())
assert isinstance(app.focused, Input)
assert app.focused.id == "two"
# If we push and pop another screen, focus should be preserved for #two.
MyScreen.AUTO_FOCUS = None
await app.push_screen(MyScreen())
assert app.focused is None
app.pop_screen()
assert app.focused.id == "two"
async def test_auto_focus_inheritance():
"""Setting app.AUTO_FOCUS = `None` means it is not taken into consideration."""
class MyScreen(Screen[None]):
def compose(self):
yield Button()
yield Input(id="one")
yield Input(id="two")
class MyApp(App[None]):
pass
app = MyApp()
async with app.run_test():
MyApp.AUTO_FOCUS = "Input"
MyScreen.AUTO_FOCUS = "*"
await app.push_screen(MyScreen())
assert isinstance(app.focused, Button)
app.pop_screen()
MyScreen.AUTO_FOCUS = None
await app.push_screen(MyScreen())
assert isinstance(app.focused, Input)
app.pop_screen()
MyScreen.AUTO_FOCUS = ""
await app.push_screen(MyScreen())
assert app.focused is None
app.pop_screen()
async def test_auto_focus_skips_non_focusable_widgets():
class MyScreen(Screen[None]):
def compose(self):
yield Label()
yield Button()
class MyApp(App[None]):
def on_mount(self):
self.push_screen(MyScreen())
app = MyApp()
async with app.run_test():
assert app.focused is not None
assert isinstance(app.focused, Button)
async def test_dismiss_non_top_screen():
class MyApp(App[None]):
async def key_p(self) -> None:
self.bottom = Screen()
top = Screen()
await self.push_screen(self.bottom)
await self.push_screen(top)
app = MyApp()
async with app.run_test() as pilot:
await pilot.press("p")
# A noop if not the top
stack = list(app.screen_stack)
await app.bottom.dismiss()
assert app.screen_stack == stack
async def test_dismiss_action():
class ConfirmScreen(Screen[bool]):
BINDINGS = [("y", "dismiss(True)", "Dismiss")]
class MyApp(App[None]):
bingo = False
def on_mount(self) -> None:
self.push_screen(ConfirmScreen(), callback=self.callback)
def callback(self, result: bool) -> None:
self.bingo = result
app = MyApp()
async with app.run_test() as pilot:
await pilot.press("y")
assert app.bingo
async def test_dismiss_action_no_argument():
class ConfirmScreen(Screen[bool]):
BINDINGS = [("y", "dismiss", "Dismiss")]
class MyApp(App[None]):
bingo = False
def on_mount(self) -> None:
self.push_screen(ConfirmScreen(), callback=self.callback)
def callback(self, result: bool | None) -> None:
self.bingo = result
app = MyApp()
async with app.run_test() as pilot:
await pilot.press("y")
assert app.bingo is None
async def test_switch_screen_no_op():
"""Regression test for https://github.com/Textualize/textual/issues/2650"""
class MyScreen(Screen):
pass
class MyApp(App[None]):
SCREENS = {"screen": MyScreen}
def on_mount(self):
self.push_screen("screen")
app = MyApp()
async with app.run_test():
screen_id = id(app.screen)
app.switch_screen("screen")
assert screen_id == id(app.screen)
app.switch_screen("screen")
assert screen_id == id(app.screen)
async def test_switch_screen_updates_results_callback_stack():
"""Regression test for https://github.com/Textualize/textual/issues/2650"""
class ScreenA(Screen):
pass
class ScreenB(Screen):
pass
class MyApp(App[None]):
SCREENS = {
"a": ScreenA,
"b": ScreenB,
}
def callback(self, _):
return 42
def on_mount(self):
self.push_screen("a", self.callback)
app = MyApp()
async with app.run_test():
assert len(app.screen._result_callbacks) == 1
assert app.screen._result_callbacks[-1].callback(None) == 42
app.switch_screen("b")
assert len(app.screen._result_callbacks) == 1
assert app.screen._result_callbacks[-1].callback is None
async def test_screen_receives_mouse_move_events():
class MouseMoveRecordingScreen(Screen):
mouse_events = []
def on_mouse_move(self, event: MouseMove) -> None:
MouseMoveRecordingScreen.mouse_events.append(event)
class SimpleApp(App[None]):
SCREENS = {"a": MouseMoveRecordingScreen}
def on_mount(self):
self.push_screen("a")
mouse_offset = Offset(1, 1)
async with SimpleApp().run_test() as pilot:
await pilot.hover(None, mouse_offset)
assert len(MouseMoveRecordingScreen.mouse_events) == 1
mouse_event = MouseMoveRecordingScreen.mouse_events[0]
assert mouse_event.x, mouse_event.y == mouse_offset
async def test_mouse_move_event_bubbles_to_screen_from_widget():
class MouseMoveRecordingScreen(Screen):
mouse_events = []
DEFAULT_CSS = """
Label {
offset: 10 10;
}
"""
def compose(self) -> ComposeResult:
yield Label("Any label")
def on_mouse_move(self, event: MouseMove) -> None:
MouseMoveRecordingScreen.mouse_events.append(event)
class SimpleApp(App[None]):
SCREENS = {"a": MouseMoveRecordingScreen}
def on_mount(self):
self.push_screen("a")
label_offset = Offset(10, 10)
mouse_offset = Offset(1, 1)
async with SimpleApp().run_test() as pilot:
await pilot.hover(Label, mouse_offset)
assert len(MouseMoveRecordingScreen.mouse_events) == 1
mouse_event = MouseMoveRecordingScreen.mouse_events[0]
assert mouse_event.x, mouse_event.y == (
label_offset.x + mouse_offset.x,
label_offset.y + mouse_offset.y,
)
async def test_push_screen_wait_for_dismiss() -> None:
"""Test push_screen returns result."""
class QuitScreen(Screen[bool]):
BINDINGS = [
("y", "quit(True)"),
("n", "quit(False)"),
]
def action_quit(self, quit: bool) -> None:
self.dismiss(quit)
results: list[bool] = []
class ScreensApp(App):
BINDINGS = [("x", "exit")]
@work
async def action_exit(self) -> None:
result = await self.push_screen(QuitScreen(), wait_for_dismiss=True)
results.append(result)
app = ScreensApp()
# Press X to exit, then Y to dismiss, expect True result
async with app.run_test() as pilot:
await pilot.press("x", "y")
assert results == [True]
results.clear()
app = ScreensApp()
# Press X to exit, then N to dismiss, expect False result
async with app.run_test() as pilot:
await pilot.press("x", "n")
assert results == [False]
async def test_push_screen_wait_for_dismiss_no_worker() -> None:
"""Test wait_for_dismiss raises NoActiveWorker when not using workers."""
class QuitScreen(Screen[bool]):
BINDINGS = [
("y", "quit(True)"),
("n", "quit(False)"),
]
def action_quit(self, quit: bool) -> None:
self.dismiss(quit)
results: list[bool] = []
class ScreensApp(App):
BINDINGS = [("x", "exit")]
async def action_exit(self) -> None:
result = await self.push_screen(QuitScreen(), wait_for_dismiss=True)
results.append(result)
app = ScreensApp()
# using `wait_for_dismiss` outside of a worker should raise NoActiveWorker
with pytest.raises(NoActiveWorker):
async with app.run_test() as pilot:
await pilot.press("x", "y")
async def test_default_custom_screen() -> None:
"""Test we can override the default screen."""
class CustomScreen(Screen):
pass
class CustomScreenApp(App):
def get_default_screen(self) -> Screen:
return CustomScreen()
app = CustomScreenApp()
async with app.run_test():
assert len(app.screen_stack) == 1
assert isinstance(app.screen_stack[0], CustomScreen)
assert app.screen is app.screen_stack[0]
async def test_disallow_screen_instances() -> None:
"""Test that screen instances are disallowed."""
class CustomScreen(Screen):
pass
with pytest.raises(ValueError):
class Bad(App):
SCREENS = {"a": CustomScreen()} # type: ignore
with pytest.raises(ValueError):
class Worse(App):
MODES = {"a": CustomScreen()} # type: ignore
# While we're here, let's make sure that other types
# are disallowed.
with pytest.raises(TypeError):
class Terrible(App):
MODES = {"a": 42, "b": CustomScreen} # type: ignore
with pytest.raises(TypeError):
class Worst(App):
MODES = {"OK": CustomScreen, 1: 2} # type: ignore
async def test_worker_cancellation():
"""Regression test for https://github.com/Textualize/textual/issues/4884
The MRE below was pushing a screen in an exclusive worker.
This was previously breaking because the second time the worker was launched,
it cancelled the first one which was awaiting the screen.
"""
from textual import on, work
from textual.app import App
from textual.containers import Vertical
from textual.screen import Screen
from textual.widgets import Button, Footer, Label
class InfoScreen(Screen[bool]):
def __init__(self, question: str) -> None:
self.question = question
super().__init__()
def compose(self) -> ComposeResult:
yield Vertical(
Label(self.question, id="info-label"),
Button("Ok", variant="primary", id="ok"),
id="info-vertical",
)
yield Footer()
@on(Button.Pressed, "#ok")
def handle_ok(self) -> None:
self.dismiss(True) # Changed the `dismiss` result to compatible type
class ExampleApp(App):
BINDINGS = [("i", "info", "Info")]
screen_count = 0
def compose(self) -> ComposeResult:
yield Label("This is the default screen")
yield Footer()
@work(exclusive=True)
async def action_info(self) -> None:
# Since this is an exclusive worker, the second time it is called,
# the original `push_screen_wait` is also cancelled
self.screen_count += 1
await self.push_screen_wait(
InfoScreen(f"This is info screen #{self.screen_count}")
)
app = ExampleApp()
async with app.run_test() as pilot:
# Press i twice to launch 2 InfoScreens
await pilot.press("i")
await pilot.press("i")
# Press enter to activate button to dismiss them
await pilot.press("enter")
await pilot.press("enter")