mirror of
https://github.com/ralsina/xrandroll.git
synced 2024-11-22 02:52:23 +00:00
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
from xrandroll.monitor import Monitor
|
|
|
|
BASIC_HEADER = "eDP connected primary 1920x1080+0+1080 (0x56) normal (normal left inverted right x axis y axis) 309mm x 173mm" # noqa
|
|
|
|
|
|
def test_parse_pos():
|
|
data = [BASIC_HEADER]
|
|
m = Monitor(data)
|
|
assert m.pos_x == 0
|
|
assert m.pos_y == 1080
|
|
|
|
|
|
def test_parse_output():
|
|
data = [BASIC_HEADER]
|
|
m = Monitor(data)
|
|
assert m.output == "eDP"
|
|
|
|
|
|
def test_parse_modes(test_data):
|
|
data = test_data.read("monitor_1.txt", deserialize=False).splitlines()
|
|
m = Monitor(data)
|
|
assert len(m.modes) == 9
|
|
assert "0x56" in m.modes
|
|
assert str(m.modes["0x56"]) == "1920x1080 60Hz (0x56)"
|
|
assert m.modes["0x56"].frequency == 60.01
|
|
assert m.enabled
|
|
assert m.primary
|
|
assert m.orientation == "normal"
|
|
|
|
|
|
def test_disabled_monitor(test_data):
|
|
data = test_data.read("disabled_monitor.txt", deserialize=False).splitlines()
|
|
m = Monitor(data)
|
|
assert m.enabled is False
|
|
assert m.primary is False
|
|
|
|
|
|
def test_parse_orientation(test_data):
|
|
data = test_data.read("monitor_1.txt", deserialize=False).splitlines()
|
|
data[0] = data[0].replace("normal (", "left (")
|
|
m = Monitor(data)
|
|
assert m.orientation == "left"
|