From 3876d0f987400355c9865017662e03a7f999be4d Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sat, 8 Aug 2020 01:41:15 +0300 Subject: kmstest: Extend Rect class Add a helper isEmpty() method to the Rect class, as well as a __repr__() method to pretty-print the rectangle. Signed-off-by: Laurent Pinchart --- tests/kmstest.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/kmstest.py b/tests/kmstest.py index f13e3fb..0281c67 100755 --- a/tests/kmstest.py +++ b/tests/kmstest.py @@ -212,6 +212,13 @@ class Rect(object): self.width = width self.height = height + def __repr__(self): + return "(%d,%d)/%ux%u" % (self.left, self.top, self.width, self.height) + + def isEmpty(self): + """Check if the rectangle has a zero width or height""" + return self.width == 0 or self.height == 0 + class AtomicRequest(pykms.AtomicReq): """pymkms.AtomicReq wrapper to track state changes""" -- cgit v1.2.3