2020-04-27 15:22:39 +00:00
|
|
|
import io
|
|
|
|
|
2020-11-19 18:22:10 +00:00
|
|
|
from rich.abc import RichRenderable
|
2020-04-27 15:22:39 +00:00
|
|
|
from rich.console import Console
|
2020-08-24 16:26:30 +00:00
|
|
|
from rich.panel import Panel
|
2020-04-27 15:22:39 +00:00
|
|
|
from rich.text import Text
|
|
|
|
|
|
|
|
|
|
|
|
class Foo:
|
2020-11-19 18:22:10 +00:00
|
|
|
def __rich__(self) -> Text:
|
2020-04-27 15:22:39 +00:00
|
|
|
return Text("Foo")
|
|
|
|
|
|
|
|
|
2020-08-24 16:26:30 +00:00
|
|
|
def test_rich_cast():
|
2020-04-27 15:22:39 +00:00
|
|
|
foo = Foo()
|
|
|
|
console = Console(file=io.StringIO())
|
|
|
|
console.print(foo)
|
|
|
|
assert console.file.getvalue() == "Foo\n"
|
2020-08-24 16:26:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_rich_cast_container():
|
|
|
|
foo = Foo()
|
2020-08-25 16:23:06 +00:00
|
|
|
console = Console(file=io.StringIO(), legacy_windows=False)
|
2020-10-15 20:17:03 +00:00
|
|
|
console.print(Panel.fit(foo, padding=0))
|
2020-08-24 16:26:30 +00:00
|
|
|
assert console.file.getvalue() == "╭───╮\n│Foo│\n╰───╯\n"
|
2020-11-19 18:22:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_abc():
|
|
|
|
foo = Foo()
|
|
|
|
assert isinstance(foo, RichRenderable)
|
|
|
|
assert isinstance(Text("hello"), RichRenderable)
|
|
|
|
assert isinstance(Panel("hello"), RichRenderable)
|
|
|
|
assert not isinstance(foo, str)
|
|
|
|
assert not isinstance("foo", RichRenderable)
|
|
|
|
assert not isinstance([], RichRenderable)
|