persistentstorage/centralrepository/test/t_cenrep_helper.h
author hgs
Tue, 19 Oct 2010 16:26:13 +0100
changeset 55 44f437012c90
parent 0 08ec8eefde2f
permissions -rw-r--r--
201041_01

// Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

#ifndef T_CENREP_HELPER_H
#define T_CENREP_HELPER_H


#include <e32def.h>
#include <e32cmn.h>
#include <f32file.h>
#include <centralrepository.h>

_LIT(KCPersistsDir,				"c:\\private\\10202BE9\\persists\\");
_LIT(KCPersistsFiles,			"c:\\private\\10202BE9\\persists\\*.*");

_LIT(KCInstallDir,				"c:\\private\\10202BE9\\");
_LIT(KCInstallFiles,			"c:\\private\\10202BE9\\*.*");

_LIT(KCRomVersionDir,				"c:\\private\\10202BE9\\romversion\\");
_LIT(KCRomVersionFiles,			"c:\\private\\10202BE9\\romversion\\*.*");

#if defined(SYMBIAN_INCLUDE_APP_CENTRIC)
_LIT(KPMAFiles,           "c:\\private\\10202BE9\\persists\\protected\\*.*");
#endif

const TInt KGeneralDelay = 2*1000*1000;

_LIT(KTxtFileExt, ".txt");
_LIT(KCreFileExt, ".cre");

class RTest;

IMPORT_C void printDirL(const TDesC& aDirName);

IMPORT_C TInt KillProcess(const TDesC& aProcessName);

IMPORT_C void CleanupCDriveL(TBool aRemoveRomCache = ETrue);
IMPORT_C void CleanupFileFromCDriveL(const TUid aRepository);
IMPORT_C void CopyTestFilesL(CFileMan& aFm, const TDesC& aSrc, const TDesC& aDest);

IMPORT_C void CleanupRepositoryCache();

IMPORT_C void RecordPerformanceTimingL(TUint32 aTime);

/** This API is for internal use only and for testing purposes.
@internalComponent

Retrieves transaction state of the session.
*/
IMPORT_C TInt TransactionState(CRepository* aRep);

/** This API is for internal use only and for testing purposes.
@internalComponent

Sends EGetSetParameters to server.
*/
IMPORT_C TInt SetGetParameters(const TIpcArgs& aArgs);

#endif // T_CENREP_HELPER_H