[pitivi/sdk: 2/7] tests: Move utils.ui tests
- From: Alexandru Băluț <alexbalut src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi/sdk: 2/7] tests: Move utils.ui tests
- Date: Wed, 22 Jan 2020 09:33:57 +0000 (UTC)
commit 8b3ac254ff6f624af64cf00457ba128445f40bf3
Author: Alexandru Băluț <alexandru balut gmail com>
Date: Tue Jan 21 00:28:06 2020 +0100
tests: Move utils.ui tests
tests/test_common.py | 41 -----------------------------------------
tests/test_utils.py | 27 +++++++++++++++++++++++++++
2 files changed, 27 insertions(+), 41 deletions(-)
---
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 01d6c63e..20008c0c 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -32,6 +32,10 @@ from pitivi.utils.ui import beautify_length
from pitivi.utils.ui import format_audiochannels
from pitivi.utils.ui import format_audiorate
from pitivi.utils.ui import format_framerate_value
+from pitivi.utils.ui import pack_color_32
+from pitivi.utils.ui import pack_color_64
+from pitivi.utils.ui import unpack_color_32
+from pitivi.utils.ui import unpack_color_64
from tests import common
@@ -244,3 +248,26 @@ class TestMiscUtils(common.TestCase):
for template, restrictions, default_values, prev_vals, expected in dataset:
res = fixate_caps_with_default_values(template, restrictions, default_values, prev_vals)
self.assertTrue(res.is_equal_fixed(expected), "%s != %s" % (res, expected))
+
+
+class TestColors(common.TestCase):
+
+ def test_pack_color_32(self):
+ self.assertEqual(
+ 0x01020408,
+ pack_color_32(0x01FF, 0x02FF, 0x04FF, 0x08FF))
+
+ def test_pack_color_64(self):
+ self.assertEqual(
+ 0x01FF02FF04FF08FF,
+ pack_color_64(0x01FF, 0x02FF, 0x04FF, 0x08FF))
+
+ def test_unpack_color_32(self):
+ self.assertEqual(
+ (0x0100, 0x0200, 0x0400, 0x0800),
+ unpack_color_32(0x01020408))
+
+ def test_unpack_color_64(self):
+ self.assertEqual(
+ (0x01FF, 0x02FF, 0x04FF, 0x08FF),
+ unpack_color_64(0x01FF02FF04FF08FF))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]