/* * 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._fwl; import java.io.PrintWriter; import java.util.ArrayList; import lib.TestCase; import lib.TestEnvironment; import lib.TestParameters; import util.utils; import com.sun.star.beans.NamedValue; import com.sun.star.beans.PropertyValue; import com.sun.star.container.XNameAccess; import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.XInterface; /** * Test for object which is represented by service * com.sun.star.comp.framework.FilterFactory.

* * Object implements the following interfaces : *

* * @see com.sun.star.container.XNameAccess * @see com.sun.star.container.XElementAccess * @see com.sun.star.lang.XMultiServiceFactory * @see ifc.container._XNameAccess * @see ifc.container._XElementAccess * @see ifc.lang._XMultiServiceFactory */ public class FilterFactory extends TestCase { /** * Creating a TestEnvironment for the interfaces to be tested. * Creates an instance of the service * com.sun.star.comp.framework.FilterFactory. * Prepares relation for * XMultiServiceFactory.createInstanceWithArguments method * test. Only filters which have their service names can be instantiated * in some reasons (?). For instantiation used filter type as service * name and its name as a parameter.

*/ @Override protected TestEnvironment createTestEnvironment (TestParameters Param, PrintWriter log) throws Exception { Object oInterface = Param.getMSF().createInstance ("com.sun.star.document.FilterFactory") ; XInterface oObj = (XInterface) oInterface ; log.println("ImplName: "+utils.getImplName(oObj)); log.println( "creating a new environment for object" ); TestEnvironment tEnv = new TestEnvironment( oObj ); XNameAccess xNA = UnoRuntime.queryInterface (XNameAccess.class, oObj); String[] filterNames = xNA.getElementNames(); // XNameContainer; XNameReplace String filterName = filterNames[0]; Object[] instance = (Object[]) xNA.getByName(filterName); log.println("adding INSTANCE 1 as obj relation to environment"); log.println("fill property 'TemplateName' with 'INSTANCE1'"); setPropertyValueValue((PropertyValue[])instance, "TemplateName", "INSTANCE1"); tEnv.addObjRelation("INSTANCE" +1, instance); // XMSF ArrayList vFTypes = new ArrayList(); ArrayList vFArgs = new ArrayList(); for (int i = 0; i < filterNames.length; i++) { PropertyValue[] filterProps = null; System.out.println(filterNames[i]); filterProps = (PropertyValue[]) xNA.getByName(filterNames[i]); String filterImpl = (String) getPropertyValueValue (filterProps, "FilterService"); if (filterImpl != null && filterImpl.length() > 0) { String filterType = (String) getPropertyValueValue (filterProps, "Type"); vFTypes.add(filterType); PropertyValue prop = new PropertyValue(); prop.Name = "FilterName"; prop.Value = filterNames[i]; vFArgs.add(new Object[] {prop}); log.println("Found filter '" + filterNames[i] + "', type: " + filterType + ", service name: '" + filterImpl + "'"); } } tEnv.addObjRelation("XMSF.serviceNamesWithArgs", vFTypes.toArray(new String[vFTypes.size()])); tEnv.addObjRelation("XMSF.Args", vFArgs.toArray(new Object[vFArgs.size()][])); // com.sun.star.container.XContainerQuery NamedValue[] querySequenze = new NamedValue[1]; NamedValue query = new NamedValue(); query.Name = "Name"; query.Value = "Rich Text Format"; querySequenze[0] = query; tEnv.addObjRelation("XContainerQuery.createSubSetEnumerationByProperties", querySequenze); return tEnv; } // finish method getTestEnvironment protected Object getPropertyValueValue(PropertyValue[] props, String pName) { int i = 0; while (i < props.length && !props[i].Name.equals(pName)) { i++; } return i < props.length ? props[i].Value : null; } protected void setPropertyValueValue(PropertyValue[] props, String pName, Object pValue) { int i = 0; while (i < props.length && !props[i].Name.equals(pName)) { i++; } props[i].Value = pValue; } protected PropertyValue getPropertyValue(PropertyValue[] props, String pName) { int i = 0; while (i < props.length && !props[i].Name.equals(pName)) { i++; } return i < props.length ? props[i] : null; } }