os/graphics/windowing/windowserver/test/t_genericplugin/src/t_testmwsinifile.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "t_testmwsinifile.h"
sl@0
    23
#include "t_logfile.h"
sl@0
    24
sl@0
    25
_LIT(KTestPluginName, "testmwsinifile");
sl@0
    26
sl@0
    27
_LIT(KWsIniFile, "z:\\system\\data\\wsini.ini");
sl@0
    28
_LIT(KString, "string");
sl@0
    29
_LIT(KInteger, "integer");
sl@0
    30
sl@0
    31
/***************************************************
sl@0
    32
CTestMWsIniFile
sl@0
    33
****************************************************/
sl@0
    34
/**
sl@0
    35
Creates a new CTestMWsIniFile object
sl@0
    36
*/ 
sl@0
    37
CTestMWsIniFile* CTestMWsIniFile::CreateL()
sl@0
    38
	{
sl@0
    39
	return new(ELeave) CTestMWsIniFile;
sl@0
    40
	}
sl@0
    41
sl@0
    42
/**
sl@0
    43
Initialisation phase of two phase construction.
sl@0
    44
@param aEnv The environment for a graphic drawer 
sl@0
    45
@param aData The data for construction
sl@0
    46
*/
sl@0
    47
void CTestMWsIniFile::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& /*aData*/)
sl@0
    48
	{
sl@0
    49
	BaseConstructL(aEnv);
sl@0
    50
sl@0
    51
	iWsIniFile = aEnv.ObjectInterface<MWsIniFile>();
sl@0
    52
	iIniData = CIniData::NewL(KWsIniFile, ' ');	//delimiter between key and value in wsini.ini
sl@0
    53
	CLogFile* log = CLogFile::NewL();
sl@0
    54
	CleanupStack::PushL(log);
sl@0
    55
	log->WriteToLogL(_L("TestMWsIniFile is created."));		
sl@0
    56
	CleanupStack::PopAndDestroy(log);
sl@0
    57
	//runs tests which test the MWsIniFile interface
sl@0
    58
	RunMWsIniFileTestsL();
sl@0
    59
	}
sl@0
    60
sl@0
    61
/**
sl@0
    62
Constructor for CTestMWsIniFile
sl@0
    63
*/
sl@0
    64
CTestMWsIniFile::CTestMWsIniFile()
sl@0
    65
	{
sl@0
    66
	}
sl@0
    67
sl@0
    68
/**
sl@0
    69
Destructor for CTestMWsIniFile
sl@0
    70
*/
sl@0
    71
CTestMWsIniFile::~CTestMWsIniFile()
sl@0
    72
	{
sl@0
    73
	iWsIniFile = NULL;
sl@0
    74
    delete iIniData;
sl@0
    75
	}
sl@0
    76
sl@0
    77
/**
sl@0
    78
Tests which test the MWsIniFile interface 
sl@0
    79
*/
sl@0
    80
void CTestMWsIniFile::RunMWsIniFileTestsL()
sl@0
    81
	{
sl@0
    82
	_LIT(KDefaultInt, "defaultInt"); //default section data
sl@0
    83
	_LIT(KDefaultStr, "defaultStr");
sl@0
    84
	_LIT(KScreen0Int, "screen0Int");
sl@0
    85
	_LIT(KScreen0Str, "screen0Str");
sl@0
    86
	_LIT(KCustomSection, "TESTMWSINIFILE"); //custom section data
sl@0
    87
	_LIT(KStdFaderInt, "stdfaderInt"); 
sl@0
    88
	_LIT(KStdFaderStr, "stdfaderStr");
sl@0
    89
	_LIT(KNeScreenInt, "NEScreenInt"); //nonexistent screen data (Screen5)
sl@0
    90
	_LIT(KNeScreenStr, "NEScreenStr");
sl@0
    91
	_LIT(KNeSection, "NESection"); //nonexistent section data
sl@0
    92
	_LIT(KNeSectionInt, "NESectionInt");
sl@0
    93
	_LIT(KNeSectionStr, "NESectionStr");
sl@0
    94
	_LIT(KMissingVar, "DoesNotExist");
sl@0
    95
sl@0
    96
	const TInt KScreen0 = 0;
sl@0
    97
	const TInt KNeScreen = 5;
sl@0
    98
	
sl@0
    99
	//
sl@0
   100
	//     Positive Tests     //
sl@0
   101
	//
sl@0
   102
	
sl@0
   103
	FindDefaultVariableL(KDefaultInt, KDefaultStr);  //Default Section
sl@0
   104
	FindScreenVariableL(KScreen0, KScreen0Int, KScreen0Str);  //Screen0 Section
sl@0
   105
	FindCustomSectionVariableL(KCustomSection, KStdFaderInt, KStdFaderStr);  //Custom Section
sl@0
   106
sl@0
   107
	//
sl@0
   108
	//     Negative Tests     //
sl@0
   109
	//
sl@0
   110
			
sl@0
   111
	//ACCESS MISSING VARIABLE
sl@0
   112
	FindDefaultMissingVariableL(KMissingVar);	
sl@0
   113
	FindScreenMissingVariableL(KScreen0,KMissingVar);
sl@0
   114
	FindCustomSectionMissingVariableL(KCustomSection,KMissingVar);
sl@0
   115
	
sl@0
   116
	//ACCESS INTEGER ATTRIBUTE WITH FindVar MEANT FOR STRING ATTRIBUTE
sl@0
   117
	FindDefaultVarOppositeMethodL(KDefaultInt, KInteger);
sl@0
   118
	FindScreenVarOppositeMethodL(KScreen0,KScreen0Int, KInteger);
sl@0
   119
	FindCustomSectionVarOppositeMethodL(KCustomSection,KStdFaderInt, KInteger);
sl@0
   120
	
sl@0
   121
	//ACCESS STRING ATTRIBUTE WITH FindVar MEANT FOR INTEGER ATTRIBUTE
sl@0
   122
	FindDefaultVarOppositeMethodL(KDefaultStr, KString);
sl@0
   123
	FindScreenVarOppositeMethodL(KScreen0,KScreen0Str, KString);
sl@0
   124
	FindCustomSectionVarOppositeMethodL(KCustomSection,KStdFaderStr, KString);
sl@0
   125
		
sl@0
   126
	//ACCESS ATTRIBUTE IN A SCREEN THAT DOES NOT EXIST
sl@0
   127
	FindNEScreenVariableL(KNeScreen, KNeScreenInt, KNeScreenStr);
sl@0
   128
	
sl@0
   129
	//ACCESS ATTRIBUTE IN A SECTION THAT DOES NOT EXIST
sl@0
   130
	FindNESectionVariableL(KNeSection, KNeSectionInt, KNeSectionStr);
sl@0
   131
	}
sl@0
   132
sl@0
   133
/**
sl@0
   134
Finds the variable from screen section
sl@0
   135
@param	aScreen The screen number
sl@0
   136
@param	aIntSection The key name of an integer value
sl@0
   137
@param	aStringSection The key name of an string value
sl@0
   138
*/
sl@0
   139
void CTestMWsIniFile::FindScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection)
sl@0
   140
  	{
sl@0
   141
   	CLogFile* log = CLogFile::NewL();
sl@0
   142
	CleanupStack::PushL(log);
sl@0
   143
  	TInt intResult;
sl@0
   144
	TPtrC stringResult;
sl@0
   145
	TInt trueIntData;
sl@0
   146
	TPtrC trueStringData;
sl@0
   147
  	TBuf<255> screenSection;
sl@0
   148
  	screenSection.Format(_L("SCREEN%d"),aScreen);		
sl@0
   149
  	if(iWsIniFile->FindVar(aScreen,aIntSection))
sl@0
   150
		{
sl@0
   151
		if(iWsIniFile->FindVar(aScreen,aIntSection,intResult) && iIniData->FindVar(screenSection,aIntSection,trueIntData) && intResult == trueIntData)
sl@0
   152
			{
sl@0
   153
			iPrint.Format(_L("Screen Section has correct integer data: %d"), intResult);
sl@0
   154
			log->WriteToLogL(iPrint);				
sl@0
   155
			}
sl@0
   156
		else
sl@0
   157
			{
sl@0
   158
			log->WriteToLogL(_L("Screen integer data has incorrect value"));
sl@0
   159
			}		
sl@0
   160
		}
sl@0
   161
	else
sl@0
   162
		{
sl@0
   163
		iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aIntSection);
sl@0
   164
		log->WriteToLogL(iPrint);
sl@0
   165
		}
sl@0
   166
	
sl@0
   167
	if(iWsIniFile->FindVar(aScreen,aStringSection))
sl@0
   168
		{
sl@0
   169
		if(iWsIniFile->FindVar(aScreen,aStringSection,stringResult) && iIniData->FindVar(screenSection,aStringSection,trueStringData) && !stringResult.Compare(trueStringData))
sl@0
   170
			{
sl@0
   171
			iPrint.Format(_L("Screen Section has correct string data: %S"), &stringResult);
sl@0
   172
			log->WriteToLogL(iPrint);
sl@0
   173
			}
sl@0
   174
		else
sl@0
   175
			{
sl@0
   176
			log->WriteToLogL(_L("Screen string data has incorrect value"));
sl@0
   177
			}
sl@0
   178
		}
sl@0
   179
	else
sl@0
   180
		{
sl@0
   181
		iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aStringSection);
sl@0
   182
		log->WriteToLogL(iPrint);
sl@0
   183
		}
sl@0
   184
	CleanupStack::PopAndDestroy(log);
sl@0
   185
  	}
sl@0
   186
sl@0
   187
/**
sl@0
   188
Finds the variable from custom section
sl@0
   189
@param	aSection The name of the custom section
sl@0
   190
@param	aIntSection The key name of an integer value
sl@0
   191
@param	aStringSection The key name of an string value
sl@0
   192
*/ 
sl@0
   193
void CTestMWsIniFile::FindCustomSectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection)
sl@0
   194
  	{
sl@0
   195
  	CLogFile* log = CLogFile::NewL();
sl@0
   196
	CleanupStack::PushL(log);
sl@0
   197
  	TInt intResult;
sl@0
   198
	TPtrC stringResult;
sl@0
   199
	TInt trueIntData;
sl@0
   200
	TPtrC trueStringData;
sl@0
   201
  	if(iWsIniFile->FindVar(aSection,aIntSection))
sl@0
   202
		{
sl@0
   203
		if(iWsIniFile->FindVar(aSection,aIntSection,intResult) && iIniData->FindVar(aSection,aIntSection,trueIntData) && intResult == trueIntData)
sl@0
   204
			{
sl@0
   205
			iPrint.Format(_L("Custom Section has correct integer data: %d"), intResult);
sl@0
   206
			log->WriteToLogL(iPrint);
sl@0
   207
			}
sl@0
   208
		else
sl@0
   209
			{
sl@0
   210
			log->WriteToLogL(_L("Custom Section integer data has incorrect value"));
sl@0
   211
			}		
sl@0
   212
		}
sl@0
   213
	else
sl@0
   214
		{
sl@0
   215
		iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aIntSection);
sl@0
   216
		log->WriteToLogL(iPrint);
sl@0
   217
		}
sl@0
   218
	
sl@0
   219
	if(iWsIniFile->FindVar(aSection,aStringSection))
sl@0
   220
		{
sl@0
   221
		if(iWsIniFile->FindVar(aSection,aStringSection,stringResult) && iIniData->FindVar(aSection,aStringSection,trueStringData) && !stringResult.Compare(trueStringData))
sl@0
   222
			{
sl@0
   223
			iPrint.Format(_L("Custom Section has correct string data: %S"), &stringResult);
sl@0
   224
			log->WriteToLogL(iPrint);
sl@0
   225
			}
sl@0
   226
		else
sl@0
   227
			{
sl@0
   228
			log->WriteToLogL(_L("Custom Section string data has incorrect value"));
sl@0
   229
			}
sl@0
   230
		}
sl@0
   231
	else
sl@0
   232
		{
sl@0
   233
		iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aStringSection);
sl@0
   234
		log->WriteToLogL(iPrint);
sl@0
   235
		}
sl@0
   236
	CleanupStack::PopAndDestroy(log);
sl@0
   237
  	}
sl@0
   238
sl@0
   239
/**
sl@0
   240
Finds the variable from default section
sl@0
   241
@param	aIntSection The key name of an integer value
sl@0
   242
@param	aStringSection The key name of an string value
sl@0
   243
*/
sl@0
   244
void CTestMWsIniFile::FindDefaultVariableL(const TDesC& aIntSection, const TDesC& aStringSection)
sl@0
   245
  	{
sl@0
   246
  	CLogFile* log = CLogFile::NewL();
sl@0
   247
	CleanupStack::PushL(log);
sl@0
   248
  	TInt intResult;
sl@0
   249
	TPtrC stringResult;
sl@0
   250
	TInt trueIntData;
sl@0
   251
	TPtrC trueStringData;
sl@0
   252
  	if(iWsIniFile->FindVar(aIntSection))
sl@0
   253
		{
sl@0
   254
		if(iWsIniFile->FindVar(aIntSection,intResult) && iIniData->FindVar(aIntSection, trueIntData) && intResult == trueIntData)
sl@0
   255
			{
sl@0
   256
			iPrint.Format(_L("Default Section has correct integer data: %d"), intResult);
sl@0
   257
			log->WriteToLogL(iPrint);				
sl@0
   258
			}
sl@0
   259
		else
sl@0
   260
			{
sl@0
   261
			log->WriteToLogL(_L("Default Section integer data has incorrect value"));
sl@0
   262
			}
sl@0
   263
		}
sl@0
   264
	else
sl@0
   265
		{
sl@0
   266
		iPrint.Format(_L("Default Section does not have %S variable"), &aIntSection);
sl@0
   267
		log->WriteToLogL(iPrint);
sl@0
   268
		}
sl@0
   269
		
sl@0
   270
	if(iWsIniFile->FindVar(aStringSection))
sl@0
   271
		{
sl@0
   272
		if(iWsIniFile->FindVar(aStringSection,stringResult) && iIniData->FindVar(aStringSection, trueStringData) && !stringResult.Compare(trueStringData))
sl@0
   273
			{
sl@0
   274
			iPrint.Format(_L("Default Section has correct string data: %S"), &stringResult);
sl@0
   275
			log->WriteToLogL(iPrint);
sl@0
   276
			}
sl@0
   277
		else
sl@0
   278
			{
sl@0
   279
			log->WriteToLogL(_L("Default Section string data has incorrect value"));
sl@0
   280
			}
sl@0
   281
		}
sl@0
   282
	else
sl@0
   283
		{
sl@0
   284
		iPrint.Format(_L("Default Section does not have %S variable"), &aStringSection);
sl@0
   285
		log->WriteToLogL(iPrint);
sl@0
   286
		}
sl@0
   287
	CleanupStack::PopAndDestroy(log);
sl@0
   288
  	}
sl@0
   289
sl@0
   290
/**
sl@0
   291
Finds a missing variable from default section
sl@0
   292
@param	aMissingVariable The key name of the missing variable.
sl@0
   293
*/
sl@0
   294
void CTestMWsIniFile::FindDefaultMissingVariableL(const TDesC& aMissingVariable)
sl@0
   295
	{
sl@0
   296
	CLogFile* log = CLogFile::NewL();
sl@0
   297
	CleanupStack::PushL(log);
sl@0
   298
	TInt intResult;
sl@0
   299
	TPtrC stringResult;
sl@0
   300
	if(iWsIniFile->FindVar(aMissingVariable))
sl@0
   301
		{		
sl@0
   302
		iPrint.Format(_L("Default Section has %S variable"), &aMissingVariable);
sl@0
   303
		log->WriteToLogL(iPrint);
sl@0
   304
		}
sl@0
   305
	if(iWsIniFile->FindVar(aMissingVariable,intResult))
sl@0
   306
		{
sl@0
   307
		iPrint.Format(_L("Default Section MissingVar Data: %d"), intResult);
sl@0
   308
		log->WriteToLogL(iPrint);			
sl@0
   309
		}
sl@0
   310
	else if(iWsIniFile->FindVar(aMissingVariable,stringResult))
sl@0
   311
		{
sl@0
   312
		iPrint.Format(_L("Default Section MissingVar Data: %S"), &stringResult);
sl@0
   313
		log->WriteToLogL(iPrint);
sl@0
   314
		}
sl@0
   315
	else
sl@0
   316
		{
sl@0
   317
		log->WriteToLogL(_L("Default Section does not have missing attribute"));
sl@0
   318
		}
sl@0
   319
	CleanupStack::PopAndDestroy(log);
sl@0
   320
	}
sl@0
   321
sl@0
   322
/**
sl@0
   323
Finds a missing variable from screen section
sl@0
   324
@param	aScreen	The screen number
sl@0
   325
@param	aMissingVariable The key name of the missing variable.
sl@0
   326
*/
sl@0
   327
void CTestMWsIniFile::FindScreenMissingVariableL(TInt aScreen, const TDesC& aMissingVariable)
sl@0
   328
	{
sl@0
   329
	CLogFile* log = CLogFile::NewL();
sl@0
   330
	CleanupStack::PushL(log);
sl@0
   331
	TInt intResult;
sl@0
   332
	TPtrC stringResult;
sl@0
   333
	if(iWsIniFile->FindVar(aScreen,aMissingVariable))
sl@0
   334
		{		
sl@0
   335
		iPrint.Format(_L("Screen%d Section has %S variable"), aScreen, &aMissingVariable);
sl@0
   336
		log->WriteToLogL(iPrint);
sl@0
   337
		}
sl@0
   338
	if(iWsIniFile->FindVar(aScreen,aMissingVariable,intResult))
sl@0
   339
		{
sl@0
   340
		iPrint.Format(_L("Screen%d Section MissingVar Data: %d"), aScreen, intResult);
sl@0
   341
		log->WriteToLogL(iPrint);			
sl@0
   342
		}
sl@0
   343
	else if(iWsIniFile->FindVar(aScreen,aMissingVariable,stringResult))
sl@0
   344
		{
sl@0
   345
		iPrint.Format(_L("Screen%d Section MissingVar Data: %S"), aScreen, &stringResult);
sl@0
   346
		log->WriteToLogL(iPrint);	
sl@0
   347
		}
sl@0
   348
	else
sl@0
   349
		{
sl@0
   350
		log->WriteToLogL(_L("Screen Section does not have missing attribute"));
sl@0
   351
		}
sl@0
   352
	CleanupStack::PopAndDestroy(log);
sl@0
   353
	}
sl@0
   354
/**
sl@0
   355
Finds a missing variable from custom section
sl@0
   356
@param	aSection The name of the custom section.
sl@0
   357
@param	aMissingVariable The key name of the missing variable.
sl@0
   358
*/
sl@0
   359
void CTestMWsIniFile::FindCustomSectionMissingVariableL(const TDesC& aSection, const TDesC& aMissingVariable)
sl@0
   360
	{
sl@0
   361
	CLogFile* log = CLogFile::NewL();
sl@0
   362
	CleanupStack::PushL(log);
sl@0
   363
	TInt intResult;
sl@0
   364
	TPtrC stringResult;
sl@0
   365
	if(iWsIniFile->FindVar(aSection,aMissingVariable))
sl@0
   366
		{		
sl@0
   367
		iPrint.Format(_L("Custom Section %S has %S variable"), &aSection, &aMissingVariable);
sl@0
   368
		log->WriteToLogL(iPrint);
sl@0
   369
		}
sl@0
   370
	if(iWsIniFile->FindVar(aSection,aMissingVariable,intResult))
sl@0
   371
		{
sl@0
   372
		iPrint.Format(_L("Custom Section %S MissingVar Data: %d"), &aSection, intResult);
sl@0
   373
		log->WriteToLogL(iPrint);			
sl@0
   374
		}
sl@0
   375
	else if(iWsIniFile->FindVar(aSection,aMissingVariable,stringResult))
sl@0
   376
		{
sl@0
   377
		iPrint.Format(_L("Custom Section %S MissingVar Data: %S"), &aSection, &stringResult);
sl@0
   378
		log->WriteToLogL(iPrint);	
sl@0
   379
		}
sl@0
   380
	else
sl@0
   381
		{
sl@0
   382
		log->WriteToLogL(_L("Custom Section does not have missing attribute"));
sl@0
   383
		}
sl@0
   384
	CleanupStack::PopAndDestroy(log);
sl@0
   385
	}
sl@0
   386
sl@0
   387
/**
sl@0
   388
Access integer attribute in default section with FindVar meant for string attribute
sl@0
   389
or access string attribute in default section with FindVar meant for integer attribute.
sl@0
   390
@param	aAttribute The name of the attribute to access
sl@0
   391
@param	aType The type of the attribute, integer or string.
sl@0
   392
*/
sl@0
   393
void CTestMWsIniFile::FindDefaultVarOppositeMethodL(const TDesC& aAttribute, const TDesC& aType)
sl@0
   394
	{
sl@0
   395
	CLogFile* log = CLogFile::NewL();
sl@0
   396
	CleanupStack::PushL(log);
sl@0
   397
	TInt intResult;
sl@0
   398
	TPtrC stringResult;
sl@0
   399
	if(iWsIniFile->FindVar(aAttribute))
sl@0
   400
		{
sl@0
   401
		if(!aType.Compare(KInteger))
sl@0
   402
			{			
sl@0
   403
			if(iWsIniFile->FindVar(aAttribute,stringResult))
sl@0
   404
				{
sl@0
   405
				iPrint.Format(_L("Default Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
sl@0
   406
				log->WriteToLogL(iPrint);
sl@0
   407
				}
sl@0
   408
			else
sl@0
   409
				{
sl@0
   410
				log->WriteToLogL(_L("Default Section - Could not access integer attribute with method for string attribute"));
sl@0
   411
				}
sl@0
   412
			}
sl@0
   413
		if(!aType.Compare(KString))
sl@0
   414
			{
sl@0
   415
			if(iWsIniFile->FindVar(aAttribute,intResult))
sl@0
   416
				{
sl@0
   417
				iPrint.Format(_L("Default Section - String data retrieved with method for integer attribute: %d"), intResult);
sl@0
   418
				log->WriteToLogL(iPrint);
sl@0
   419
				}
sl@0
   420
			else
sl@0
   421
				{
sl@0
   422
				log->WriteToLogL(_L("Default Section - Could not access string attribute with method for integer attribute"));
sl@0
   423
				}
sl@0
   424
			}
sl@0
   425
		}
sl@0
   426
	else
sl@0
   427
		{
sl@0
   428
		iPrint.Format(_L("Default Section does not have %S variable"), &aAttribute);
sl@0
   429
		log->WriteToLogL(iPrint);
sl@0
   430
		}
sl@0
   431
	CleanupStack::PopAndDestroy(log);
sl@0
   432
	}
sl@0
   433
sl@0
   434
/**
sl@0
   435
Access integer attribute in screen section with FindVar meant for string attribute
sl@0
   436
or access string attribute in screen section with FindVar meant for integer attribute.
sl@0
   437
@param	aScreen The screen number
sl@0
   438
@param	aAttribute The name of the attribute to access
sl@0
   439
@param	aType The type of the attribute, integer or string.
sl@0
   440
*/
sl@0
   441
void CTestMWsIniFile::FindScreenVarOppositeMethodL(TInt aScreen, const TDesC& aAttribute, const TDesC& aType)
sl@0
   442
	{
sl@0
   443
	CLogFile* log = CLogFile::NewL();
sl@0
   444
	CleanupStack::PushL(log);
sl@0
   445
	TInt intResult;
sl@0
   446
	TPtrC stringResult;
sl@0
   447
	if(iWsIniFile->FindVar(aScreen,aAttribute))
sl@0
   448
		{
sl@0
   449
		if(!aType.Compare(KInteger))
sl@0
   450
			{			
sl@0
   451
			if(iWsIniFile->FindVar(aScreen, aAttribute,stringResult))
sl@0
   452
				{
sl@0
   453
				iPrint.Format(_L("Screen Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
sl@0
   454
				log->WriteToLogL(iPrint);
sl@0
   455
				}
sl@0
   456
			else
sl@0
   457
				{
sl@0
   458
				log->WriteToLogL(_L("Screen Section - Could not access integer attribute with method for string attribute"));
sl@0
   459
				}
sl@0
   460
			}
sl@0
   461
		if(!aType.Compare(KString))
sl@0
   462
			{
sl@0
   463
			if(iWsIniFile->FindVar(aScreen, aAttribute,intResult))
sl@0
   464
				{
sl@0
   465
				iPrint.Format(_L("Screen Section - String data retrieved with method for integer attribute: %d"), intResult);
sl@0
   466
				log->WriteToLogL(iPrint);
sl@0
   467
				}
sl@0
   468
			else
sl@0
   469
				{
sl@0
   470
				log->WriteToLogL(_L("Screen Section - Could not access string attribute with method for integer attribute"));
sl@0
   471
				}
sl@0
   472
			}
sl@0
   473
		}
sl@0
   474
	else
sl@0
   475
		{
sl@0
   476
		iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aAttribute);
sl@0
   477
		log->WriteToLogL(iPrint);
sl@0
   478
		}
sl@0
   479
	CleanupStack::PopAndDestroy(log);
sl@0
   480
	}
sl@0
   481
sl@0
   482
/**
sl@0
   483
Access integer attribute in custom section with FindVar meant for string attribute
sl@0
   484
or access string attribute in custom section with FindVar meant for integer attribute.
sl@0
   485
@param	aSection The name of the custom section
sl@0
   486
@param	aAttribute The name of the attribute to access
sl@0
   487
@param	aType The type of the attribute, integer or string.
sl@0
   488
*/
sl@0
   489
void CTestMWsIniFile::FindCustomSectionVarOppositeMethodL(const TDesC& aSection, const TDesC& aAttribute, const TDesC& aType)
sl@0
   490
	{
sl@0
   491
	CLogFile* log = CLogFile::NewL();
sl@0
   492
	CleanupStack::PushL(log);
sl@0
   493
	TInt intResult;
sl@0
   494
	TPtrC stringResult;
sl@0
   495
	if(iWsIniFile->FindVar(aSection,aAttribute))
sl@0
   496
		{
sl@0
   497
		if(!aType.Compare(KInteger))
sl@0
   498
			{			
sl@0
   499
			if(iWsIniFile->FindVar(aSection, aAttribute,stringResult))
sl@0
   500
				{
sl@0
   501
				iPrint.Format(_L("Custom Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
sl@0
   502
				log->WriteToLogL(iPrint);
sl@0
   503
				}
sl@0
   504
			else
sl@0
   505
				{
sl@0
   506
				log->WriteToLogL(_L("Custom Section - Could not access integer attribute with method for string attribute"));
sl@0
   507
				}
sl@0
   508
			}
sl@0
   509
		if(!aType.Compare(KString))
sl@0
   510
			{
sl@0
   511
			if(iWsIniFile->FindVar(aSection, aAttribute,intResult))
sl@0
   512
				{
sl@0
   513
				iPrint.Format(_L("Custom Section - String data retrieved with method for integer attrigute: %d"), intResult);
sl@0
   514
				log->WriteToLogL(iPrint);
sl@0
   515
				}
sl@0
   516
			else
sl@0
   517
				{
sl@0
   518
				log->WriteToLogL(_L("Custom Section - Could not access string attribute with method for integer attribute"));
sl@0
   519
				}
sl@0
   520
			}
sl@0
   521
		}
sl@0
   522
	else
sl@0
   523
		{
sl@0
   524
		iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aAttribute);
sl@0
   525
		log->WriteToLogL(iPrint);
sl@0
   526
		}
sl@0
   527
	CleanupStack::PopAndDestroy(log);
sl@0
   528
	}
sl@0
   529
sl@0
   530
/**
sl@0
   531
Finds variable from non existed screen section
sl@0
   532
@param	aScreen The screen number
sl@0
   533
@param	aIntSection The key name of an integer value
sl@0
   534
@param	aStringSection The key name of an string value
sl@0
   535
*/
sl@0
   536
void CTestMWsIniFile::FindNEScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection)
sl@0
   537
	{
sl@0
   538
	CLogFile* log = CLogFile::NewL();
sl@0
   539
	CleanupStack::PushL(log);
sl@0
   540
	TInt intResult;
sl@0
   541
	TPtrC stringResult;
sl@0
   542
	if(iWsIniFile->FindVar(aScreen,aIntSection))
sl@0
   543
		{		
sl@0
   544
		iPrint.Format(_L("Screen%d Section has %S variable"), &aScreen, &aIntSection);
sl@0
   545
		log->WriteToLogL(iPrint);
sl@0
   546
		}
sl@0
   547
	if(iWsIniFile->FindVar(aScreen,aIntSection,intResult))
sl@0
   548
		{
sl@0
   549
		iPrint.Format(_L("Screen%d Section Integer Data: %d"), &aScreen, intResult);
sl@0
   550
		log->WriteToLogL(iPrint);
sl@0
   551
		}		
sl@0
   552
	if(iWsIniFile->FindVar(aScreen,aStringSection,stringResult))
sl@0
   553
		{
sl@0
   554
		iPrint.Format(_L("Screen%d Section String Data: %S"), &aScreen, &stringResult);
sl@0
   555
		log->WriteToLogL(iPrint);
sl@0
   556
		}
sl@0
   557
	else
sl@0
   558
		{
sl@0
   559
		log->WriteToLogL(_L("Could not access variables because screen does not exist"));
sl@0
   560
		}
sl@0
   561
	CleanupStack::PopAndDestroy(log);
sl@0
   562
	}
sl@0
   563
sl@0
   564
/**
sl@0
   565
Finds variable from non existed custom section
sl@0
   566
@param	aSection The name of the custom section
sl@0
   567
@param	aIntSection The key name of an integer value
sl@0
   568
@param	aStringSection The key name of an string value
sl@0
   569
*/
sl@0
   570
void CTestMWsIniFile::FindNESectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection)
sl@0
   571
	{
sl@0
   572
	CLogFile* log = CLogFile::NewL();
sl@0
   573
	CleanupStack::PushL(log);
sl@0
   574
	TInt intResult;
sl@0
   575
	TPtrC stringResult;
sl@0
   576
	if(iWsIniFile->FindVar(aSection,aIntSection))
sl@0
   577
		{		
sl@0
   578
		iPrint.Format(_L("NonExistent Section has %S variable"), &aIntSection);
sl@0
   579
		log->WriteToLogL(iPrint);
sl@0
   580
		}
sl@0
   581
	if(iWsIniFile->FindVar(aSection,aIntSection,intResult))
sl@0
   582
		{
sl@0
   583
		iPrint.Format(_L("NonExistent Section Integer Data: %d"), intResult);
sl@0
   584
		log->WriteToLogL(iPrint);
sl@0
   585
		}		
sl@0
   586
	if(iWsIniFile->FindVar(aSection,aStringSection,stringResult))
sl@0
   587
		{
sl@0
   588
		iPrint.Format(_L("NonExistent Section String Data: %S"), &stringResult);
sl@0
   589
		log->WriteToLogL(iPrint);
sl@0
   590
		}
sl@0
   591
	else
sl@0
   592
		{
sl@0
   593
		log->WriteToLogL(_L("Could not access variables because section does not exist"));
sl@0
   594
		}
sl@0
   595
	CleanupStack::PopAndDestroy(log);
sl@0
   596
	}
sl@0
   597
	
sl@0
   598
/**
sl@0
   599
Gets the plugin name
sl@0
   600
@return The Plugin name.
sl@0
   601
*/
sl@0
   602
const TDesC& CTestMWsIniFile::PluginName() const
sl@0
   603
	{
sl@0
   604
	return KTestPluginName;
sl@0
   605
	}