Kaydet (Commit) 0f543e38 authored tarafından aqcoder's avatar aqcoder Kaydeden (comit) jan iversen

tdf#97362: Convert Java unit test to Python(check_change_color.py)

Change-Id: I0fa4973b6af028666428fa58438eaf39f7b81d27
Reviewed-on: https://gerrit.libreoffice.org/23482Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarjan iversen <jani@documentfoundation.org>
üst 8d267cdd
......@@ -26,7 +26,6 @@ $(eval $(call gb_JunitTest_set_defs,sw_complex,\
$(eval $(call gb_JunitTest_add_sourcefiles,sw_complex,\
sw/qa/complex/accessibility/AccessibleRelationSet \
sw/qa/complex/checkColor/CheckChangeColor \
sw/qa/complex/indeterminateState/CheckIndeterminateState \
sw/qa/complex/writer/CheckBookmarks \
sw/qa/complex/writer/TestDocument \
......@@ -43,7 +42,6 @@ $(eval $(call gb_JunitTest_use_jars,sw_complex,\
$(eval $(call gb_JunitTest_add_classes,sw_complex,\
complex.accessibility.AccessibleRelationSet \
complex.checkColor.CheckChangeColor \
complex.writer.CheckBookmarks \
complex.writer.TextPortionEnumerationTest \
))
......
......@@ -14,6 +14,7 @@ $(eval $(call gb_PythonTest_set_defs,sw_python,\
))
$(eval $(call gb_PythonTest_add_modules,sw_python,$(SRCDIR)/sw/qa/python,\
check_change_color \
check_index \
check_flies \
check_fields \
......
/*
* 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 .
*/
package complex.checkColor;
import com.sun.star.awt.Size;
import com.sun.star.beans.XPropertySet;
import com.sun.star.container.XNameAccess;
import com.sun.star.container.XNameContainer;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.style.XStyleFamiliesSupplier;
import com.sun.star.text.XTextDocument;
import com.sun.star.uno.Any;
import com.sun.star.uno.Type;
import com.sun.star.uno.UnoRuntime;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.openoffice.test.OfficeConnection;
import util.DesktopTools;
import util.SOfficeFactory;
import static org.junit.Assert.*;
/**
* Created because of complaint on dev@openoffice.org: check the changing of
* BackColor and IsLandscape properties on the PageStyle service.
*/
public class CheckChangeColor {
/**
* Check BackColor and IsLandscape properties, wait for an exception: test
* is ok if no exception happened.
*/
@Test public void checkChangeColor() throws Exception {
// create a supplier to get the Style family collection
XStyleFamiliesSupplier xSupplier = UnoRuntime.queryInterface(XStyleFamiliesSupplier.class, document);
// get the NameAccess interface from the Style family collection
XNameAccess xNameAccess = xSupplier.getStyleFamilies();
XNameContainer xPageStyleCollection = UnoRuntime.queryInterface(XNameContainer.class, xNameAccess.getByName( "PageStyles" ));
// create a PropertySet to set the properties for the new Pagestyle
XPropertySet xPropertySet = UnoRuntime.queryInterface(XPropertySet.class, xPageStyleCollection.getByName("Standard") );
assertEquals(
"BackColor", new Any(Type.LONG, 0xFFFFFFFF),
Any.complete(xPropertySet.getPropertyValue("BackColor")));
assertEquals(
"IsLandscape", new Any(Type.BOOLEAN, false),
Any.complete(xPropertySet.getPropertyValue("IsLandscape")));
assertEquals(
"Size", new Type(Size.class),
Any.complete(xPropertySet.getPropertyValue("Size")).getType());
xPropertySet.setPropertyValue("BackColor", 0xFF000000);
xPropertySet.setPropertyValue("IsLandscape", true);
assertEquals(
"BackColor", new Any(Type.LONG, 0xFF000000),
Any.complete(xPropertySet.getPropertyValue("BackColor")));
assertEquals(
"IsLandscape", new Any(Type.BOOLEAN, true),
Any.complete(xPropertySet.getPropertyValue("IsLandscape")));
}
@Before public void setUpDocument() throws com.sun.star.uno.Exception {
document = SOfficeFactory.getFactory(
UnoRuntime.queryInterface(
XMultiServiceFactory.class,
connection.getComponentContext().getServiceManager())).
createTextDoc(null);
}
@After public void tearDownDocument() {
DesktopTools.closeDoc(document);
}
private XTextDocument document = null;
@BeforeClass public static void setUpConnection() throws Exception {
connection.setUp();
}
@AfterClass public static void tearDownConnection()
throws InterruptedException, com.sun.star.uno.Exception
{
connection.tearDown();
}
private static final OfficeConnection connection = new OfficeConnection();
}
import unittest
from org.libreoffice.unotest import UnoInProcess
class CheckChangeColor(unittest.TestCase):
_uno = None
_xDoc = None
@classmethod
def setUpClass(cls):
cls._uno = UnoInProcess()
cls._uno.setUp()
cls._xEmptyDoc = cls._uno.openEmptyWriterDoc()
@classmethod
def tearDownClass(cls):
cls._uno.tearDown()
def test_change_color(self):
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)
self.assertEqual(xPageStyle.IsLandscape, True)
if __name__ == '__main__':
unittest.main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment