os/persistentdata/persistentstorage/centralrepository/test/t_cenrep_helper.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/test/t_cenrep_helper.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,67 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef T_CENREP_HELPER_H
    1.20 +#define T_CENREP_HELPER_H
    1.21 +
    1.22 +
    1.23 +#include <e32def.h>
    1.24 +#include <e32cmn.h>
    1.25 +#include <f32file.h>
    1.26 +#include <centralrepository.h>
    1.27 +
    1.28 +_LIT(KCPersistsDir,				"c:\\private\\10202BE9\\persists\\");
    1.29 +_LIT(KCPersistsFiles,			"c:\\private\\10202BE9\\persists\\*.*");
    1.30 +
    1.31 +_LIT(KCInstallDir,				"c:\\private\\10202BE9\\");
    1.32 +_LIT(KCInstallFiles,			"c:\\private\\10202BE9\\*.*");
    1.33 +
    1.34 +_LIT(KCRomVersionDir,				"c:\\private\\10202BE9\\romversion\\");
    1.35 +_LIT(KCRomVersionFiles,			"c:\\private\\10202BE9\\romversion\\*.*");
    1.36 +
    1.37 +const TInt KGeneralDelay = 2*1000*1000;
    1.38 +
    1.39 +_LIT(KTxtFileExt, ".txt");
    1.40 +_LIT(KCreFileExt, ".cre");
    1.41 +
    1.42 +class RTest;
    1.43 +
    1.44 +IMPORT_C void printDirL(const TDesC& aDirName);
    1.45 +
    1.46 +IMPORT_C TInt KillProcess(const TDesC& aProcessName);
    1.47 +
    1.48 +IMPORT_C void CleanupCDriveL(TBool aRemoveRomCache = ETrue);
    1.49 +IMPORT_C void CleanupFileFromCDriveL(const TUid aRepository);
    1.50 +IMPORT_C void CopyTestFilesL(CFileMan& aFm, const TDesC& aSrc, const TDesC& aDest);
    1.51 +
    1.52 +IMPORT_C void CleanupRepositoryCache();
    1.53 +
    1.54 +IMPORT_C void RecordPerformanceTimingL(TUint32 aTime);
    1.55 +
    1.56 +/** This API is for internal use only and for testing purposes.
    1.57 +@internalComponent
    1.58 +
    1.59 +Retrieves transaction state of the session.
    1.60 +*/
    1.61 +IMPORT_C TInt TransactionState(CRepository* aRep);
    1.62 +
    1.63 +/** This API is for internal use only and for testing purposes.
    1.64 +@internalComponent
    1.65 +
    1.66 +Sends EGetSetParameters to server.
    1.67 +*/
    1.68 +IMPORT_C TInt SetGetParameters(const TIpcArgs& aArgs);
    1.69 +
    1.70 +#endif // T_CENREP_HELPER_H