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