2020-04-26 15:28:18 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from rich.padding import Padding
|
2020-10-08 11:21:49 +00:00
|
|
|
from rich.console import Console, ConsoleOptions
|
|
|
|
from rich.style import Style
|
|
|
|
from rich.segment import Segment
|
2020-04-26 15:28:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_repr():
|
|
|
|
padding = Padding("foo", (1, 2))
|
|
|
|
assert isinstance(repr(padding), str)
|
|
|
|
|
|
|
|
|
2020-10-08 09:07:30 +00:00
|
|
|
def test_indent():
|
2020-10-08 11:21:49 +00:00
|
|
|
indent_result = Padding.indent("test", 4)
|
|
|
|
assert indent_result.top == 0
|
|
|
|
assert indent_result.right == 0
|
|
|
|
assert indent_result.bottom == 0
|
|
|
|
assert indent_result.left == 4
|
2020-10-08 09:07:30 +00:00
|
|
|
|
|
|
|
|
2020-04-26 15:28:18 +00:00
|
|
|
def test_unpack():
|
|
|
|
assert Padding.unpack(3) == (3, 3, 3, 3)
|
|
|
|
assert Padding.unpack((3,)) == (3, 3, 3, 3)
|
|
|
|
assert Padding.unpack((3, 4)) == (3, 4, 3, 4)
|
|
|
|
assert Padding.unpack((3, 4, 5, 6)) == (3, 4, 5, 6)
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
Padding.unpack((1, 2, 3))
|
2020-10-08 11:21:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_rich_console():
|
|
|
|
renderable = "test renderable"
|
|
|
|
style = Style(color="red")
|
|
|
|
options = ConsoleOptions(
|
|
|
|
min_width=10, max_width=20, is_terminal=False, encoding="utf-8"
|
|
|
|
)
|
|
|
|
|
|
|
|
expected_outputs = [
|
|
|
|
Segment(renderable, style=style),
|
|
|
|
Segment(" " * (20 - len(renderable)), style=style),
|
|
|
|
Segment("\n", style=None),
|
|
|
|
]
|
|
|
|
padding_generator = Padding(renderable, style=style).__rich_console__(
|
|
|
|
Console(), options
|
|
|
|
)
|
|
|
|
for output, expected in zip(padding_generator, expected_outputs):
|
|
|
|
assert output == expected
|