diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /qadevOOo/tests/java/mod/_lng | |
parent | Initial commit. (diff) | |
download | libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | qadevOOo/tests/java/mod/_lng/DicList.java | 97 | ||||
-rw-r--r-- | qadevOOo/tests/java/mod/_lng/LinguProps.java | 82 | ||||
-rw-r--r-- | qadevOOo/tests/java/mod/_lng/LngSvcMgr.java | 76 |
3 files changed, 255 insertions, 0 deletions
diff --git a/qadevOOo/tests/java/mod/_lng/DicList.java b/qadevOOo/tests/java/mod/_lng/DicList.java new file mode 100644 index 000000000..a787d79bc --- /dev/null +++ b/qadevOOo/tests/java/mod/_lng/DicList.java @@ -0,0 +1,97 @@ +/* + * 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 mod._lng; + +import java.io.PrintWriter; + +import lib.TestCase; +import lib.TestEnvironment; +import lib.TestParameters; + +import com.sun.star.lang.Locale; +import com.sun.star.lang.XMultiServiceFactory; +import com.sun.star.linguistic2.XDictionary; +import com.sun.star.linguistic2.XDictionaryList; +import com.sun.star.uno.UnoRuntime; +import com.sun.star.uno.XInterface; + +/** + * Test for object which is represented by service + * <code>com.sun.star.lingu2.DicList</code>. <p> + * Object implements the following interfaces : + * <ul> + * <li> <code>com::sun::star::linguistic2::XSearchableDictionaryList</code></li> + * <li> <code>com::sun::star::lang::XComponent</code></li> + * <li> <code>com::sun::star::lang::XServiceInfo</code></li> + * <li> <code>com::sun::star::linguistic2::XDictionaryList</code></li> + * </ul> <p> + * + * This object test <b> is NOT </b> designed to be run in several + * threads concurrently. + * + * @see com.sun.star.linguistic2.XSearchableDictionaryList + * @see com.sun.star.lang.XComponent + * @see com.sun.star.lang.XServiceInfo + * @see com.sun.star.linguistic2.XDictionaryList + * @see ifc.linguistic2._XSearchableDictionaryList + * @see ifc.lang._XComponent + * @see ifc.lang._XServiceInfo + * @see ifc.linguistic2._XDictionaryList + */ +public class DicList extends TestCase { + + /** + * Creating a TestEnvironment for the interfaces to be tested. + * Creates an instance of the service + * <code>com.sun.star.lingu2.DicList</code>. Then two dictionaries + * are created (positive and negative) and added to the list, one + * entry is added to each of dictionaries and they both are activated. + * The dictionary list is returned as a component for testing. + */ + @Override + public TestEnvironment createTestEnvironment( TestParameters Param, PrintWriter log ) + throws Exception { + + XMultiServiceFactory xMSF = Param.getMSF(); + XInterface oObj = (XInterface)xMSF.createInstance("com.sun.star.lingu2.DicList"); + + String Iname = util.utils.getImplName(oObj); + log.println("Implementation Name: "+Iname); + TestEnvironment tEnv = new TestEnvironment(oObj); + + //creating a user defined dictionary for XSearchableDictionaryList + XDictionaryList xDicList = UnoRuntime.queryInterface( + XDictionaryList.class, oObj); + xDicList.removeDictionary(xDicList.getDictionaryByName("MyDictionary")); + XDictionary xDic = xDicList.createDictionary("NegativDic",new Locale( + "en","US","WIN"),com.sun.star.linguistic2.DictionaryType.NEGATIVE,""); + XDictionary xDic2 = xDicList.createDictionary("PositivDic",new Locale( + "en","US","WIN"),com.sun.star.linguistic2.DictionaryType.POSITIVE,""); + xDic2.add("Positive",false,""); + xDic.add("Negative",true,""); + xDicList.addDictionary(xDic); + xDicList.addDictionary(xDic2); + xDic.setActive(true); + xDic2.setActive(true); + + return tEnv; + } + +} // finish class DicList + diff --git a/qadevOOo/tests/java/mod/_lng/LinguProps.java b/qadevOOo/tests/java/mod/_lng/LinguProps.java new file mode 100644 index 000000000..f5097cba4 --- /dev/null +++ b/qadevOOo/tests/java/mod/_lng/LinguProps.java @@ -0,0 +1,82 @@ +/* + * 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 mod._lng; + +import java.io.PrintWriter; + +import lib.TestCase; +import lib.TestEnvironment; +import lib.TestParameters; + +import com.sun.star.lang.XMultiServiceFactory; +import com.sun.star.uno.XInterface; + +/** + * Test for object which is represented by service + * <code>com.sun.star.linguistic2.LinguProperties</code>. <p> + * + * Object implements the following interfaces : + * <ul> + * <li> <code>com::sun::star::lang::XComponent</code></li> + * <li> <code>com::sun::star::lang::XServiceInfo</code></li> + * <li> <code>com::sun::star::beans::XFastPropertySet</code></li> + * <li> <code>com::sun::star::beans::XPropertySet</code></li> + * <li> <code>com::sun::star::linguistic2::LinguProperties</code></li> + * </ul> <p> + * + * This object test <b> is NOT </b> designed to be run in several + * threads concurrently. + * + * @see com.sun.star.lang.XComponent + * @see com.sun.star.lang.XServiceInfo + * @see com.sun.star.beans.XFastPropertySet + * @see com.sun.star.beans.XPropertySet + * @see com.sun.star.linguistic2.LinguProperties + * @see ifc.lang._XComponent + * @see ifc.lang._XServiceInfo + * @see ifc.beans._XFastPropertySet + * @see ifc.beans._XPropertySet + * @see ifc.linguistic2._LinguProperties + */ +public class LinguProps extends TestCase { + + /** + * Creating a TestEnvironment for the interfaces to be tested. + * Creates an instance of the service + * <code>com.sun.star.linguistic2.LinguProperties</code>. + */ + @Override + public TestEnvironment createTestEnvironment + ( TestParameters Param, PrintWriter log ) + throws Exception { + + XMultiServiceFactory xMSF = Param.getMSF(); + XInterface oObj = (XInterface)xMSF.createInstance + ("com.sun.star.linguistic2.LinguProperties"); + + String Iname = util.utils.getImplName(oObj); + log.println("Implementation Name: "+Iname); + TestEnvironment tEnv = new TestEnvironment(oObj); + + return tEnv; + } + + +} // finish class LinguProps + diff --git a/qadevOOo/tests/java/mod/_lng/LngSvcMgr.java b/qadevOOo/tests/java/mod/_lng/LngSvcMgr.java new file mode 100644 index 000000000..ff234d823 --- /dev/null +++ b/qadevOOo/tests/java/mod/_lng/LngSvcMgr.java @@ -0,0 +1,76 @@ +/* + * 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 mod._lng; + +import java.io.PrintWriter; + +import lib.TestCase; +import lib.TestEnvironment; +import lib.TestParameters; + +import com.sun.star.lang.XMultiServiceFactory; +import com.sun.star.uno.XInterface; + +/** + * Test for object which is represented by service + * <code>com.sun.star.linguistic2.LinguServiceManager</code>. <p> + * + * Object implements the following interfaces : + * <ul> + * <li> <code>com::sun::star::lang::XComponent</code></li> + * <li> <code>com::sun::star::lang::XServiceInfo</code></li> + * <li> <code>com::sun::star::linguistic2::XLinguServiceManager</code></li> + * </ul> <p> + * + * This object test <b> is NOT </b> designed to be run in several + * threads concurrently. + * + * @see com.sun.star.lang.XComponent + * @see com.sun.star.lang.XServiceInfo + * @see com.sun.star.linguistic2.XLinguServiceManager + * @see ifc.lang._XComponent + * @see ifc.lang._XServiceInfo + * @see ifc.linguistic2._XLinguServiceManager + */ +public class LngSvcMgr extends TestCase { + + /** + * Creating a TestEnvironment for the interfaces to be tested. + * Creates an instance of the service + * <code>com.sun.star.linguistic2.LinguServiceManager</code>. + */ + @Override + public TestEnvironment createTestEnvironment + ( TestParameters Param, PrintWriter log ) + throws Exception { + + XMultiServiceFactory xMSF = Param.getMSF(); + XInterface oObj = (XInterface)xMSF.createInstance + ("com.sun.star.linguistic2.LinguServiceManager"); + + String Iname = util.utils.getImplName(oObj); + log.println("Implementation Name: "+Iname); + TestEnvironment tEnv = new TestEnvironment(oObj); + + return tEnv; + } + + +} // finish class LngSvcMgr + |