1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #ifndef SVTOOLS_HISTORYOPTTEST_HXX 29*cdf0e10cSrcweir #define SVTOOLS_HISTORYOPTTEST_HXX 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include <com/sun/star/container/XNameAccess.hpp> 32*cdf0e10cSrcweir #include <unotools/historyoptions.hxx> 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir namespace css = ::com::sun::star; 35*cdf0e10cSrcweir 36*cdf0e10cSrcweir class HistoryOptTest 37*cdf0e10cSrcweir { 38*cdf0e10cSrcweir public: 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir HistoryOptTest(); 41*cdf0e10cSrcweir virtual ~HistoryOptTest(); 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir //--------------------------------------------------------------------- 44*cdf0e10cSrcweir /** unit test of picklist */ 45*cdf0e10cSrcweir void checkPicklist(); 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir //--------------------------------------------------------------------- 48*cdf0e10cSrcweir /** unit test of URL list */ 49*cdf0e10cSrcweir void checkURLHistory(); 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir //--------------------------------------------------------------------- 52*cdf0e10cSrcweir /** unit test of Help bookmarks */ 53*cdf0e10cSrcweir void checkHelpBookmarks(); 54*cdf0e10cSrcweir 55*cdf0e10cSrcweir private: 56*cdf0e10cSrcweir 57*cdf0e10cSrcweir //--------------------------------------------------------------------- 58*cdf0e10cSrcweir /** test every well known history list in the same way. 59*cdf0e10cSrcweir * Only the count of created and tested items can be defined from outside 60*cdf0e10cSrcweir * e.g. usefull for stress tests. 61*cdf0e10cSrcweir * 62*cdf0e10cSrcweir * @param eHistory 63*cdf0e10cSrcweir * specify the history list for testing. 64*cdf0e10cSrcweir * 65*cdf0e10cSrcweir * @param nMaxItems 66*cdf0e10cSrcweir * max count of new created and tested history items. 67*cdf0e10cSrcweir */ 68*cdf0e10cSrcweir void impl_testHistory(EHistoryType eHistory , 69*cdf0e10cSrcweir ::sal_Int32 nMaxItems); 70*cdf0e10cSrcweir 71*cdf0e10cSrcweir //--------------------------------------------------------------------- 72*cdf0e10cSrcweir /** try to clear the whole list and check the results. 73*cdf0e10cSrcweir * If list could not be cleared successfully an exception is thrown. 74*cdf0e10cSrcweir */ 75*cdf0e10cSrcweir void impl_clearList(); 76*cdf0e10cSrcweir 77*cdf0e10cSrcweir //--------------------------------------------------------------------- 78*cdf0e10cSrcweir /** define a new size for the current list and check the results. 79*cdf0e10cSrcweir * Note: The given size must match against the defined constraints. 80*cdf0e10cSrcweir * That must be checked before this method is called. 81*cdf0e10cSrcweir * 82*cdf0e10cSrcweir * @param nSize 83*cdf0e10cSrcweir * the new size. 84*cdf0e10cSrcweir */ 85*cdf0e10cSrcweir void impl_setSize(::sal_Int32 nSize); 86*cdf0e10cSrcweir 87*cdf0e10cSrcweir //--------------------------------------------------------------------- 88*cdf0e10cSrcweir /** create a new item (means it's properties using a special schema using the 89*cdf0e10cSrcweir * item id). 90*cdf0e10cSrcweir * 91*cdf0e10cSrcweir * Note: This method does not check if creation was successfully. 92*cdf0e10cSrcweir * Therefore exists more specialized method impl_existsItem() 93*cdf0e10cSrcweir * and impl_existsItemAtPosition(). 94*cdf0e10cSrcweir * 95*cdf0e10cSrcweir * @param nItem 96*cdf0e10cSrcweir * id of the item 97*cdf0e10cSrcweir */ 98*cdf0e10cSrcweir void impl_appendItem(::sal_Int32 nItem); 99*cdf0e10cSrcweir 100*cdf0e10cSrcweir //--------------------------------------------------------------------- 101*cdf0e10cSrcweir /** check if an entry for given item id realy exists (in memory and xcu file). 102*cdf0e10cSrcweir * 103*cdf0e10cSrcweir * @param nItem 104*cdf0e10cSrcweir * id of the item 105*cdf0e10cSrcweir * 106*cdf0e10cSrcweir * @return true if item exists - false otherwise. 107*cdf0e10cSrcweir */ 108*cdf0e10cSrcweir ::sal_Bool impl_existsItem(::sal_Int32 nItem); 109*cdf0e10cSrcweir 110*cdf0e10cSrcweir //--------------------------------------------------------------------- 111*cdf0e10cSrcweir /** check if an entry for given item id realy exists (in memory and xcu file). 112*cdf0e10cSrcweir * Further it checks if the requested item is placed at the also specified 113*cdf0e10cSrcweir * position inside history list. 114*cdf0e10cSrcweir * 115*cdf0e10cSrcweir * @param nItem 116*cdf0e10cSrcweir * id of the item 117*cdf0e10cSrcweir * 118*cdf0e10cSrcweir * @param nIndex 119*cdf0e10cSrcweir * expected position of item inside history list. 120*cdf0e10cSrcweir * 121*cdf0e10cSrcweir * @return true if item exists at right position - false otherwise. 122*cdf0e10cSrcweir */ 123*cdf0e10cSrcweir ::sal_Bool impl_existsItemAtIndex(::sal_Int32 nItem , 124*cdf0e10cSrcweir ::sal_Int32 nIndex); 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir //--------------------------------------------------------------------- 127*cdf0e10cSrcweir /** create an URL suitable for the given item id. 128*cdf0e10cSrcweir * 129*cdf0e10cSrcweir * @param nItem 130*cdf0e10cSrcweir * id of the item 131*cdf0e10cSrcweir * 132*cdf0e10cSrcweir * @return the new created URL. 133*cdf0e10cSrcweir */ 134*cdf0e10cSrcweir ::rtl::OUString impl_createItemURL(::sal_Int32 nItem); 135*cdf0e10cSrcweir 136*cdf0e10cSrcweir //--------------------------------------------------------------------- 137*cdf0e10cSrcweir /** create a title suitable for the given item id. 138*cdf0e10cSrcweir * 139*cdf0e10cSrcweir * @param nItem 140*cdf0e10cSrcweir * id of the item 141*cdf0e10cSrcweir * 142*cdf0e10cSrcweir * @return the new created title. 143*cdf0e10cSrcweir */ 144*cdf0e10cSrcweir ::rtl::OUString impl_createItemTitle(::sal_Int32 nItem); 145*cdf0e10cSrcweir 146*cdf0e10cSrcweir //--------------------------------------------------------------------- 147*cdf0e10cSrcweir /** create a password suitable for the given item id. 148*cdf0e10cSrcweir * 149*cdf0e10cSrcweir * @param nItem 150*cdf0e10cSrcweir * id of the item 151*cdf0e10cSrcweir * 152*cdf0e10cSrcweir * @return the new created password. 153*cdf0e10cSrcweir */ 154*cdf0e10cSrcweir ::rtl::OUString impl_createItemPassword(::sal_Int32 nItem); 155*cdf0e10cSrcweir 156*cdf0e10cSrcweir //--------------------------------------------------------------------- 157*cdf0e10cSrcweir /** returns direct access to the item list inside histories.xcu 158*cdf0e10cSrcweir * suitable for the current defined list type (m_eList). 159*cdf0e10cSrcweir * 160*cdf0e10cSrcweir * @return reference to the item list configuration 161*cdf0e10cSrcweir */ 162*cdf0e10cSrcweir css::uno::Reference< css::container::XNameAccess > impl_getItemList(); 163*cdf0e10cSrcweir 164*cdf0e10cSrcweir //--------------------------------------------------------------------- 165*cdf0e10cSrcweir /** returns direct access to the order list inside histories.xcu 166*cdf0e10cSrcweir * suitable for the current defined list type (m_eList). 167*cdf0e10cSrcweir * 168*cdf0e10cSrcweir * @return reference to the order list configuration 169*cdf0e10cSrcweir */ 170*cdf0e10cSrcweir css::uno::Reference< css::container::XNameAccess > impl_getOrderList(); 171*cdf0e10cSrcweir 172*cdf0e10cSrcweir //--------------------------------------------------------------------- 173*cdf0e10cSrcweir /** returns direct access to the history list inside histories.xcu 174*cdf0e10cSrcweir * suitable for the current defined list type (m_eList). 175*cdf0e10cSrcweir * 176*cdf0e10cSrcweir * @return reference to the history list configuration 177*cdf0e10cSrcweir */ 178*cdf0e10cSrcweir css::uno::Reference< css::container::XNameAccess > impl_getNewHistory(); 179*cdf0e10cSrcweir 180*cdf0e10cSrcweir //--------------------------------------------------------------------- 181*cdf0e10cSrcweir /** returns direct access to the history config inside common.xcu 182*cdf0e10cSrcweir * suitable for the current defined list type (m_eList). 183*cdf0e10cSrcweir * 184*cdf0e10cSrcweir * @return reference to the history configuration 185*cdf0e10cSrcweir */ 186*cdf0e10cSrcweir css::uno::Reference< css::container::XNameAccess > impl_getOldHistory(); 187*cdf0e10cSrcweir 188*cdf0e10cSrcweir private: 189*cdf0e10cSrcweir 190*cdf0e10cSrcweir // the config item which should be tested here 191*cdf0e10cSrcweir SvtHistoryOptions m_aConfigItem; 192*cdf0e10cSrcweir 193*cdf0e10cSrcweir // defines the special list for testing (picklist, history or url list) 194*cdf0e10cSrcweir EHistoryType m_eList; 195*cdf0e10cSrcweir 196*cdf0e10cSrcweir // underlying configuration of the tested config items for cross over checks 197*cdf0e10cSrcweir css::uno::Reference< css::container::XNameAccess > m_xHistoriesXCU; 198*cdf0e10cSrcweir 199*cdf0e10cSrcweir // underlying configuration of the tested config items for cross over checks 200*cdf0e10cSrcweir css::uno::Reference< css::container::XNameAccess > m_xCommonXCU; 201*cdf0e10cSrcweir }; 202*cdf0e10cSrcweir 203*cdf0e10cSrcweir #endif // #ifndef SVTOOLS_HISTORYOPTTEST_HXX 204