sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef T_CENREP_HELPER_H sl@0: #define T_CENREP_HELPER_H sl@0: sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: _LIT(KCPersistsDir, "c:\\private\\10202BE9\\persists\\"); sl@0: _LIT(KCPersistsFiles, "c:\\private\\10202BE9\\persists\\*.*"); sl@0: sl@0: _LIT(KCInstallDir, "c:\\private\\10202BE9\\"); sl@0: _LIT(KCInstallFiles, "c:\\private\\10202BE9\\*.*"); sl@0: sl@0: _LIT(KCRomVersionDir, "c:\\private\\10202BE9\\romversion\\"); sl@0: _LIT(KCRomVersionFiles, "c:\\private\\10202BE9\\romversion\\*.*"); sl@0: sl@0: const TInt KGeneralDelay = 2*1000*1000; sl@0: sl@0: _LIT(KTxtFileExt, ".txt"); sl@0: _LIT(KCreFileExt, ".cre"); sl@0: sl@0: class RTest; sl@0: sl@0: IMPORT_C void printDirL(const TDesC& aDirName); sl@0: sl@0: IMPORT_C TInt KillProcess(const TDesC& aProcessName); sl@0: sl@0: IMPORT_C void CleanupCDriveL(TBool aRemoveRomCache = ETrue); sl@0: IMPORT_C void CleanupFileFromCDriveL(const TUid aRepository); sl@0: IMPORT_C void CopyTestFilesL(CFileMan& aFm, const TDesC& aSrc, const TDesC& aDest); sl@0: sl@0: IMPORT_C void CleanupRepositoryCache(); sl@0: sl@0: IMPORT_C void RecordPerformanceTimingL(TUint32 aTime); sl@0: sl@0: /** This API is for internal use only and for testing purposes. sl@0: @internalComponent sl@0: sl@0: Retrieves transaction state of the session. sl@0: */ sl@0: IMPORT_C TInt TransactionState(CRepository* aRep); sl@0: sl@0: /** This API is for internal use only and for testing purposes. sl@0: @internalComponent sl@0: sl@0: Sends EGetSetParameters to server. sl@0: */ sl@0: IMPORT_C TInt SetGetParameters(const TIpcArgs& aArgs); sl@0: sl@0: #endif // T_CENREP_HELPER_H