summaryrefslogtreecommitdiff
path: root/sw/qa/python
diff options
context:
space:
mode:
authorslideon <adamkasztenny@gmail.com>2016-05-19 18:52:06 -0400
committerjan iversen <jani@documentfoundation.org>2016-05-20 05:43:31 +0000
commit7b704dfbdb23540ff6366fa60c73474bbda9dc26 (patch)
treea49ffedec54e0bc183eabfa78194ef2ccc2b6422 /sw/qa/python
parent6821ad076c276b997c44520fd700817566a718c5 (diff)
Add test for checking the color of characters and paragraphs
check_change_color.py only checked for page-related colors previously. Change-Id: I3b188db34c1f43ed6ed977f792615bb6646fbcce Reviewed-on: https://gerrit.libreoffice.org/25183 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'sw/qa/python')
-rw-r--r--sw/qa/python/check_change_color.py81
1 files changed, 73 insertions, 8 deletions
diff --git a/sw/qa/python/check_change_color.py b/sw/qa/python/check_change_color.py
index a835bc254bbf..d8562bc77b52 100644
--- a/sw/qa/python/check_change_color.py
+++ b/sw/qa/python/check_change_color.py
@@ -1,6 +1,25 @@
+'''
+ This file is part of the LibreOffice project.
+
+ This Source Code Form is subject to the terms of the Mozilla Public
+ License, v. 2.0. If a copy of the MPL was not distributed with this
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+ This file incorporates work covered by the following license notice:
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright
+ ownership. The ASF licenses this file to you under the Apache
+ License, Version 2.0 (the "License"); you may not use this file
+ except in compliance with the License. You may obtain a copy of
+ the License at http://www.apache.org/licenses/LICENSE-2.0 .
+'''
+
import unittest
from org.libreoffice.unotest import UnoInProcess
-
+from com.sun.star.text.ControlCharacter import PARAGRAPH_BREAK
+from com.sun.star.awt.FontUnderline import SINGLE
class CheckChangeColor(unittest.TestCase):
@@ -9,6 +28,9 @@ class CheckChangeColor(unittest.TestCase):
cls._uno = UnoInProcess()
cls._uno.setUp()
cls._xEmptyDoc = cls._uno.openEmptyWriterDoc()
+ cls.RED = 0xFF0000
+ cls.BLUE = 0x0000FF
+ cls.GREEN = 0x008000
@classmethod
def tearDownClass(cls):
@@ -18,19 +40,62 @@ class CheckChangeColor(unittest.TestCase):
xDoc = CheckChangeColor._uno.openEmptyWriterDoc()
xPageStyles = xDoc.StyleFamilies["PageStyles"]
xPageStyle = xPageStyles["Standard"]
+
self.assertEqual(xPageStyle.BackColor, -1)
self.assertEqual(xPageStyle.IsLandscape, False)
- xPageStyle.setPropertyValue("BackColor", 0x000000FF)
- xPageStyle.setPropertyValue("IsLandscape", True)
- self.assertEqual(xPageStyle.BackColor, 0x000000FF)
+ xPageStyle.BackColor = self.RED
+ xPageStyle.IsLandscape = True
+ self.assertEqual(xPageStyle.BackColor, self.RED)
self.assertEqual(xPageStyle.IsLandscape, True)
- xPageStyle.setPropertyValue("GridColor", 0x000000FF)
- self.assertEqual(xPageStyle.GridColor, 0x000000FF)
+ xPageStyle.GridColor = self.GREEN
+ self.assertEqual(xPageStyle.GridColor, self.GREEN)
+
+ xPageStyle.FootnoteLineColor = self.BLUE
+ self.assertEqual(xPageStyle.FootnoteLineColor, self.BLUE)
+
+ xDoc.dispose()
+
+ def test_change_text_color(self):
+ xDoc = CheckChangeColor._uno.openEmptyWriterDoc()
+ cursor = xDoc.Text.createTextCursor()
+
+ cursor.CharColor = self.RED
+ self.assertEqual(cursor.CharColor, self.RED)
+
+ cursor.CharBackColor = self.BLUE
+ self.assertEqual(cursor.CharBackColor, self.BLUE)
+
+ self.assertEqual(cursor.CharUnderlineHasColor, False)
+ cursor.CharUnderlineHasColor = True
+ cursor.CharUnderline = SINGLE
+ cursor.CharUnderlineColor = self.GREEN
+ self.assertEqual(cursor.CharUnderlineColor, self.GREEN)
+ self.assertEqual(cursor.CharUnderline, SINGLE)
+ self.assertEqual(cursor.CharUnderlineHasColor, True)
+
+ xDoc.Text.insertString(cursor, "One foo to rule them all", 0)
+
+ self.assertEqual(xDoc.getText().createTextCursor().CharColor, self.RED)
+ self.assertEqual(xDoc.getText().createTextCursor().CharBackColor, self.BLUE)
+ self.assertEqual(xDoc.getText().createTextCursor().CharUnderlineColor, self.GREEN)
+
+ xDoc.dispose()
+
+ def test_change_paragraph_color(self):
+ xDoc = CheckChangeColor._uno.openEmptyWriterDoc()
+ cursor = xDoc.Text.createTextCursor()
+
+ cursor.ParaBackColor = self.RED
+ self.assertEqual(cursor.ParaBackColor, self.RED)
+
+ xDoc.Text.insertControlCharacter(cursor, PARAGRAPH_BREAK, False)
+ xDoc.Text.insertString(cursor, "One foo to find them all", 0)
+
+ self.assertEqual(xDoc.getText().createTextCursor().ParaBackColor, self.RED)
- xPageStyle.setPropertyValue("FootnoteLineColor", 0x000000FF)
- self.assertEqual(xPageStyle.FootnoteLineColor, 0x000000FF)
+ xDoc.dispose()
if __name__ == '__main__':
unittest.main()