/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ package ifc.ucb; import lib.MultiMethodTest; import lib.Status; import lib.StatusException; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.ucb.ContentProviderInfo; import com.sun.star.ucb.DuplicateProviderException; import com.sun.star.ucb.XContentProvider; import com.sun.star.ucb.XContentProviderManager; import com.sun.star.uno.Exception; import com.sun.star.uno.UnoRuntime; /** * Tests XContentProviderManager. The test registers two ContentProviders, calls * queryXXX methods to verify results, and deregisters them. * * Testing com.sun.star.ucb.XContentProviderManager * interface methods : *

* The test registers two ContentProviders, calls * queryXXX methods to verify results, and deregisters them.

* * Test is NOT multithread compilant.

* @see com.sun.star.ucb.XContentProviderManager */ public class _XContentProviderManager extends MultiMethodTest { /** * Contains the tested object. */ public XContentProviderManager oObj; /** * The test scheme name. */ static final String myScheme = "test-scheme"; /** * First content provider. It will be hidden by contentProvider * , registred with the same myScheme to test * the "hiding" behaviour. */ XContentProvider firstContentProvider; /** * The main content provider. */ XContentProvider contentProvider; /** * ContentProviders information which are in the manager * before registering the testing providers. */ ContentProviderInfo[] initialProvidersInfo; /** * Creates two testing providers. * * @see #firstContentProvider * @see #contentProvider */ public void before() { XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF(); log.println("creating testing content providers"); try { firstContentProvider = (XContentProvider)UnoRuntime.queryInterface( XContentProvider.class, xMSF.createInstance( "com.sun.star.ucb.FileContentProvider")); contentProvider = (XContentProvider)UnoRuntime.queryInterface( XContentProvider.class, xMSF.createInstance( "com.sun.star.ucb.FileContentProvider")); } catch (Exception e) { log.println("Can't create content providers " + e.getMessage()); e.printStackTrace(log); throw new StatusException("Unexpected exception", e); } } /** * At the beginning call queryContentProviders method * * to have info about providers existing before new adding. * It adds two testing contents providers, both for the same scheme. * The second one is added two times: first, in non-replacing mode, to test * DuplicateProviderException, and second, in replacing mode, * to hide the first provider.

* * The evaluation of results are performed later, in * queryContentProvider(). * * Has OK status if in the first provider is registered * without exceptions, the second throws * DuplicateProviderException in non-replacing mode, * and no exceptions in replacing mode.

* * @see #_queryContentProvider */ public void _registerContentProvider() { // querying providfers info before inserting them, to verify results initialProvidersInfo = oObj.queryContentProviders(); log.println("registering the first provider"); try { oObj.registerContentProvider(firstContentProvider, myScheme,false); } catch (DuplicateProviderException e) { log.println("Unexpected exception thrown " + e.getMessage()); e.printStackTrace(log); throw new StatusException("Unexpected exception ", e); } log.println("registering the second provider in non-replacing mode"); try { oObj.registerContentProvider(contentProvider, myScheme, false); Status.failed("registerContentProvider(.., .., false)"); } catch (DuplicateProviderException e) { log.println("DuplicateProviderException thrown - OK"); } XContentProvider result; log.println("registering the second provider in the replace mode"); try { result = oObj.registerContentProvider(contentProvider, myScheme, true); } catch (DuplicateProviderException e) { log.println("Unexpected exception thrown " + e.getMessage()); e.printStackTrace(log); throw new StatusException("Unexpected exception ", e); } // check the result is the first provider tRes.tested("registerContentProvider()", result.equals(firstContentProvider)); } /** * It calls the method (after registering providers) and compares * its result with the result before registering. * * Has OK status if the number of providers increases * by one after registering custom provider. * * The following method tests are to be completed successfully before : *

* @see #_registerContentProvider */ public void _queryContentProviders() { executeMethod("registerContentProvider()"); ContentProviderInfo[] providersInfo = oObj.queryContentProviders(); // verifying that the number of providers increased by 1 tRes.tested("queryContentProviders()", providersInfo.length == initialProvidersInfo.length + 1); } /** * It queries for added custom provider using its scheme * and verifies its result with * queryContentProviders() result and with * custom provider created in registerContentProvider(). * Also verifies registerContentProvider().

* * Has OK status if the provider returned is found within * all providers and is equal to provider created before. * * The following method tests are to be completed successfully before : *

*/ public void _queryContentProvider() { executeMethod("registerContentProvider()"); XContentProvider result = oObj.queryContentProvider ("http://www.sun.com"); log.println("finding queryContentProvider() result"); boolean found = false; ContentProviderInfo[] providersInfo = oObj.queryContentProviders(); for (int i = 0; i < providersInfo.length; i++) { if (result.equals(providersInfo[i].ContentProvider) /*&& myScheme.equals(providersInfo[i].Scheme)*/) { found = true; break; } } // boolean gotTheRightOne = util.ValueComparer.equalValue // (result,contentProvider); tRes.tested("queryContentProvider()", found); // gotTheRightOne = result.equals(contentProvider); } /** * At first one provider is deregistered, after that provider * is queried, the second provider must be returned for the * specified scheme. Then the second provider is deregistered. * Now null value must be retruned by the method * queryContentProvider on the specified scheme.

* * Has OK status if in the first case the second provider * remains registered, and after its removing no providers remain * registered for the scheme specified. * * The following method tests are to be completed successfully before : *

* The following method tests are to be executed before : * */ public void _deregisterContentProvider() { executeMethod("queryContentProvider()"); executeMethod("queryContentProviders()"); requiredMethod("registerContentProvider()"); log.println("deregistering the second provider"); oObj.deregisterContentProvider(contentProvider, myScheme); XContentProvider res = oObj.queryContentProvider(myScheme); log.println("deregistering the first provider"); oObj.deregisterContentProvider(firstContentProvider, myScheme); res = oObj.queryContentProvider(myScheme); // verifying that no provider is returned tRes.tested("deregisterContentProvider()", res == null); } }