contacts_plat/predictivesearch_client_api/tsrc/PsClientTestSuite/inc/psclienttestsuitedefs.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 10:12:17 +0200
changeset 0 e686773b3f54
child 15 e8e3147d53eb
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2006-2007 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:  The defs for client test suite
*
*/

#ifndef PS_CLIENT_TEST_DEFS_H
#define PS_CLIENT_TEST_DEFS_H

// Logging path
_LIT( KPsTestSuiteLogPath, "\\logs\\testframework\\PsTestSuite\\" ); 

// Log file
_LIT( KPsTestSuiteLogFile, "PsClientTestSuite.txt" ); 
_LIT( KPsTestSuiteLogFileWithTitle, "PsClientTestSuite_[%S].txt" );

//  The data structure used to store the contacts information
struct cacheData
{   
	// The vpbkId array.The ids correspond to the identifiers mentioned in vpbkeng.rsg
    RArray<TInt> vpbkId;  
    
    // The corresponding data
	RPointerArray<TDesC> data;
} ;

/* Configration file parameters
 * Key board modes. The string mentioned below are used in the configuration
 * parameters in the psclientapitest.cfg file. 
 */
 
 // Keyboard modes
_LIT(KItut,        "EItut");
_LIT(KQwerty,      "EQwerty");
_LIT(KPatternSort, "EPatternSort");
_LIT(KAlphaSort,   "EAlphaSort");

_LIT(KWrongKeyboardMode, "EWrongKeyBoardMode");

//True/False
_LIT(KTrue,  "ETrue");
_LIT(KFalse, "EFalse");

// Configuration options
_LIT(KCreateContacts,               "CreateContacts"); // For creating contacts
_LIT(KCreateGroups,                 "CreateGroups");   // For creating groups
_LIT(KSearchQueryTag,               "SQ");             // The search query  
_LIT(KUriTag,                       "URI");            // The data store uri 
_LIT(KSortOrderTag,                 "SORTORDER");      // Sort order for results
_LIT(KSetDisplayFields,             "DISP");           // Display fields 
_LIT(KSupprotedLanguage,            "LANG");           // Supported Language
_LIT(KAddGroup,                     "AddGroups");      // Adding groups to the phone
_LIT(KSearchInGroup,                "SrchInGroup");    // Search within a group
_LIT(KSearchExpectedResult,         "RES");            // Expected result of a test case  
_LIT(KSearchExpectedMatchLocations, "MATCHLOC");       // Expected match locations result
_LIT(KSearchOnInputString,          "IPSTR");          // The Input string tag for search in input string
_LIT(KExpectedResultString,         "RESSTR");         // Expected string result 
_LIT(KSearchExpectedResultForInput, "RESIP");          // Expected result (For input search string case)

// The enumeration used to specify the type of test case
enum TTestCase
{
	EDeleteSearchedResults = 0,
	EGetGroupId,
	EConvertToVpbkLink,
	EMarkedContacts,
	EDefaultCase
};

_LIT (KFirstName,   "FN");
_LIT (KLastName,    "LN");
_LIT (KCompanyName, "CN");

#endif // PS_CLIENT_TEST_DEFS_H

// End of file