summaryrefslogtreecommitdiff
path: root/sw/qa/complex/checkColor/CheckChangeColor.java
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/complex/checkColor/CheckChangeColor.java')
-rw-r--r--sw/qa/complex/checkColor/CheckChangeColor.java107
1 files changed, 0 insertions, 107 deletions
diff --git a/sw/qa/complex/checkColor/CheckChangeColor.java b/sw/qa/complex/checkColor/CheckChangeColor.java
deleted file mode 100644
index 9324e35fa8fd..000000000000
--- a/sw/qa/complex/checkColor/CheckChangeColor.java
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * 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();
-}