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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "t_testmwsinifile.h"
23 #include "t_logfile.h"
25 _LIT(KTestPluginName, "testmwsinifile");
27 _LIT(KWsIniFile, "z:\\system\\data\\wsini.ini");
28 _LIT(KString, "string");
29 _LIT(KInteger, "integer");
31 /***************************************************
33 ****************************************************/
35 Creates a new CTestMWsIniFile object
37 CTestMWsIniFile* CTestMWsIniFile::CreateL()
39 return new(ELeave) CTestMWsIniFile;
43 Initialisation phase of two phase construction.
44 @param aEnv The environment for a graphic drawer
45 @param aData The data for construction
47 void CTestMWsIniFile::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& /*aData*/)
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();
62 Constructor for CTestMWsIniFile
64 CTestMWsIniFile::CTestMWsIniFile()
69 Destructor for CTestMWsIniFile
71 CTestMWsIniFile::~CTestMWsIniFile()
78 Tests which test the MWsIniFile interface
80 void CTestMWsIniFile::RunMWsIniFileTestsL()
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");
96 const TInt KScreen0 = 0;
97 const TInt KNeScreen = 5;
103 FindDefaultVariableL(KDefaultInt, KDefaultStr); //Default Section
104 FindScreenVariableL(KScreen0, KScreen0Int, KScreen0Str); //Screen0 Section
105 FindCustomSectionVariableL(KCustomSection, KStdFaderInt, KStdFaderStr); //Custom Section
111 //ACCESS MISSING VARIABLE
112 FindDefaultMissingVariableL(KMissingVar);
113 FindScreenMissingVariableL(KScreen0,KMissingVar);
114 FindCustomSectionMissingVariableL(KCustomSection,KMissingVar);
116 //ACCESS INTEGER ATTRIBUTE WITH FindVar MEANT FOR STRING ATTRIBUTE
117 FindDefaultVarOppositeMethodL(KDefaultInt, KInteger);
118 FindScreenVarOppositeMethodL(KScreen0,KScreen0Int, KInteger);
119 FindCustomSectionVarOppositeMethodL(KCustomSection,KStdFaderInt, KInteger);
121 //ACCESS STRING ATTRIBUTE WITH FindVar MEANT FOR INTEGER ATTRIBUTE
122 FindDefaultVarOppositeMethodL(KDefaultStr, KString);
123 FindScreenVarOppositeMethodL(KScreen0,KScreen0Str, KString);
124 FindCustomSectionVarOppositeMethodL(KCustomSection,KStdFaderStr, KString);
126 //ACCESS ATTRIBUTE IN A SCREEN THAT DOES NOT EXIST
127 FindNEScreenVariableL(KNeScreen, KNeScreenInt, KNeScreenStr);
129 //ACCESS ATTRIBUTE IN A SECTION THAT DOES NOT EXIST
130 FindNESectionVariableL(KNeSection, KNeSectionInt, KNeSectionStr);
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
139 void CTestMWsIniFile::FindScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection)
141 CLogFile* log = CLogFile::NewL();
142 CleanupStack::PushL(log);
146 TPtrC trueStringData;
147 TBuf<255> screenSection;
148 screenSection.Format(_L("SCREEN%d"),aScreen);
149 if(iWsIniFile->FindVar(aScreen,aIntSection))
151 if(iWsIniFile->FindVar(aScreen,aIntSection,intResult) && iIniData->FindVar(screenSection,aIntSection,trueIntData) && intResult == trueIntData)
153 iPrint.Format(_L("Screen Section has correct integer data: %d"), intResult);
154 log->WriteToLogL(iPrint);
158 log->WriteToLogL(_L("Screen integer data has incorrect value"));
163 iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aIntSection);
164 log->WriteToLogL(iPrint);
167 if(iWsIniFile->FindVar(aScreen,aStringSection))
169 if(iWsIniFile->FindVar(aScreen,aStringSection,stringResult) && iIniData->FindVar(screenSection,aStringSection,trueStringData) && !stringResult.Compare(trueStringData))
171 iPrint.Format(_L("Screen Section has correct string data: %S"), &stringResult);
172 log->WriteToLogL(iPrint);
176 log->WriteToLogL(_L("Screen string data has incorrect value"));
181 iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aStringSection);
182 log->WriteToLogL(iPrint);
184 CleanupStack::PopAndDestroy(log);
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
193 void CTestMWsIniFile::FindCustomSectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection)
195 CLogFile* log = CLogFile::NewL();
196 CleanupStack::PushL(log);
200 TPtrC trueStringData;
201 if(iWsIniFile->FindVar(aSection,aIntSection))
203 if(iWsIniFile->FindVar(aSection,aIntSection,intResult) && iIniData->FindVar(aSection,aIntSection,trueIntData) && intResult == trueIntData)
205 iPrint.Format(_L("Custom Section has correct integer data: %d"), intResult);
206 log->WriteToLogL(iPrint);
210 log->WriteToLogL(_L("Custom Section integer data has incorrect value"));
215 iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aIntSection);
216 log->WriteToLogL(iPrint);
219 if(iWsIniFile->FindVar(aSection,aStringSection))
221 if(iWsIniFile->FindVar(aSection,aStringSection,stringResult) && iIniData->FindVar(aSection,aStringSection,trueStringData) && !stringResult.Compare(trueStringData))
223 iPrint.Format(_L("Custom Section has correct string data: %S"), &stringResult);
224 log->WriteToLogL(iPrint);
228 log->WriteToLogL(_L("Custom Section string data has incorrect value"));
233 iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aStringSection);
234 log->WriteToLogL(iPrint);
236 CleanupStack::PopAndDestroy(log);
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
244 void CTestMWsIniFile::FindDefaultVariableL(const TDesC& aIntSection, const TDesC& aStringSection)
246 CLogFile* log = CLogFile::NewL();
247 CleanupStack::PushL(log);
251 TPtrC trueStringData;
252 if(iWsIniFile->FindVar(aIntSection))
254 if(iWsIniFile->FindVar(aIntSection,intResult) && iIniData->FindVar(aIntSection, trueIntData) && intResult == trueIntData)
256 iPrint.Format(_L("Default Section has correct integer data: %d"), intResult);
257 log->WriteToLogL(iPrint);
261 log->WriteToLogL(_L("Default Section integer data has incorrect value"));
266 iPrint.Format(_L("Default Section does not have %S variable"), &aIntSection);
267 log->WriteToLogL(iPrint);
270 if(iWsIniFile->FindVar(aStringSection))
272 if(iWsIniFile->FindVar(aStringSection,stringResult) && iIniData->FindVar(aStringSection, trueStringData) && !stringResult.Compare(trueStringData))
274 iPrint.Format(_L("Default Section has correct string data: %S"), &stringResult);
275 log->WriteToLogL(iPrint);
279 log->WriteToLogL(_L("Default Section string data has incorrect value"));
284 iPrint.Format(_L("Default Section does not have %S variable"), &aStringSection);
285 log->WriteToLogL(iPrint);
287 CleanupStack::PopAndDestroy(log);
291 Finds a missing variable from default section
292 @param aMissingVariable The key name of the missing variable.
294 void CTestMWsIniFile::FindDefaultMissingVariableL(const TDesC& aMissingVariable)
296 CLogFile* log = CLogFile::NewL();
297 CleanupStack::PushL(log);
300 if(iWsIniFile->FindVar(aMissingVariable))
302 iPrint.Format(_L("Default Section has %S variable"), &aMissingVariable);
303 log->WriteToLogL(iPrint);
305 if(iWsIniFile->FindVar(aMissingVariable,intResult))
307 iPrint.Format(_L("Default Section MissingVar Data: %d"), intResult);
308 log->WriteToLogL(iPrint);
310 else if(iWsIniFile->FindVar(aMissingVariable,stringResult))
312 iPrint.Format(_L("Default Section MissingVar Data: %S"), &stringResult);
313 log->WriteToLogL(iPrint);
317 log->WriteToLogL(_L("Default Section does not have missing attribute"));
319 CleanupStack::PopAndDestroy(log);
323 Finds a missing variable from screen section
324 @param aScreen The screen number
325 @param aMissingVariable The key name of the missing variable.
327 void CTestMWsIniFile::FindScreenMissingVariableL(TInt aScreen, const TDesC& aMissingVariable)
329 CLogFile* log = CLogFile::NewL();
330 CleanupStack::PushL(log);
333 if(iWsIniFile->FindVar(aScreen,aMissingVariable))
335 iPrint.Format(_L("Screen%d Section has %S variable"), aScreen, &aMissingVariable);
336 log->WriteToLogL(iPrint);
338 if(iWsIniFile->FindVar(aScreen,aMissingVariable,intResult))
340 iPrint.Format(_L("Screen%d Section MissingVar Data: %d"), aScreen, intResult);
341 log->WriteToLogL(iPrint);
343 else if(iWsIniFile->FindVar(aScreen,aMissingVariable,stringResult))
345 iPrint.Format(_L("Screen%d Section MissingVar Data: %S"), aScreen, &stringResult);
346 log->WriteToLogL(iPrint);
350 log->WriteToLogL(_L("Screen Section does not have missing attribute"));
352 CleanupStack::PopAndDestroy(log);
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.
359 void CTestMWsIniFile::FindCustomSectionMissingVariableL(const TDesC& aSection, const TDesC& aMissingVariable)
361 CLogFile* log = CLogFile::NewL();
362 CleanupStack::PushL(log);
365 if(iWsIniFile->FindVar(aSection,aMissingVariable))
367 iPrint.Format(_L("Custom Section %S has %S variable"), &aSection, &aMissingVariable);
368 log->WriteToLogL(iPrint);
370 if(iWsIniFile->FindVar(aSection,aMissingVariable,intResult))
372 iPrint.Format(_L("Custom Section %S MissingVar Data: %d"), &aSection, intResult);
373 log->WriteToLogL(iPrint);
375 else if(iWsIniFile->FindVar(aSection,aMissingVariable,stringResult))
377 iPrint.Format(_L("Custom Section %S MissingVar Data: %S"), &aSection, &stringResult);
378 log->WriteToLogL(iPrint);
382 log->WriteToLogL(_L("Custom Section does not have missing attribute"));
384 CleanupStack::PopAndDestroy(log);
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.
393 void CTestMWsIniFile::FindDefaultVarOppositeMethodL(const TDesC& aAttribute, const TDesC& aType)
395 CLogFile* log = CLogFile::NewL();
396 CleanupStack::PushL(log);
399 if(iWsIniFile->FindVar(aAttribute))
401 if(!aType.Compare(KInteger))
403 if(iWsIniFile->FindVar(aAttribute,stringResult))
405 iPrint.Format(_L("Default Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
406 log->WriteToLogL(iPrint);
410 log->WriteToLogL(_L("Default Section - Could not access integer attribute with method for string attribute"));
413 if(!aType.Compare(KString))
415 if(iWsIniFile->FindVar(aAttribute,intResult))
417 iPrint.Format(_L("Default Section - String data retrieved with method for integer attribute: %d"), intResult);
418 log->WriteToLogL(iPrint);
422 log->WriteToLogL(_L("Default Section - Could not access string attribute with method for integer attribute"));
428 iPrint.Format(_L("Default Section does not have %S variable"), &aAttribute);
429 log->WriteToLogL(iPrint);
431 CleanupStack::PopAndDestroy(log);
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.
441 void CTestMWsIniFile::FindScreenVarOppositeMethodL(TInt aScreen, const TDesC& aAttribute, const TDesC& aType)
443 CLogFile* log = CLogFile::NewL();
444 CleanupStack::PushL(log);
447 if(iWsIniFile->FindVar(aScreen,aAttribute))
449 if(!aType.Compare(KInteger))
451 if(iWsIniFile->FindVar(aScreen, aAttribute,stringResult))
453 iPrint.Format(_L("Screen Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
454 log->WriteToLogL(iPrint);
458 log->WriteToLogL(_L("Screen Section - Could not access integer attribute with method for string attribute"));
461 if(!aType.Compare(KString))
463 if(iWsIniFile->FindVar(aScreen, aAttribute,intResult))
465 iPrint.Format(_L("Screen Section - String data retrieved with method for integer attribute: %d"), intResult);
466 log->WriteToLogL(iPrint);
470 log->WriteToLogL(_L("Screen Section - Could not access string attribute with method for integer attribute"));
476 iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aAttribute);
477 log->WriteToLogL(iPrint);
479 CleanupStack::PopAndDestroy(log);
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.
489 void CTestMWsIniFile::FindCustomSectionVarOppositeMethodL(const TDesC& aSection, const TDesC& aAttribute, const TDesC& aType)
491 CLogFile* log = CLogFile::NewL();
492 CleanupStack::PushL(log);
495 if(iWsIniFile->FindVar(aSection,aAttribute))
497 if(!aType.Compare(KInteger))
499 if(iWsIniFile->FindVar(aSection, aAttribute,stringResult))
501 iPrint.Format(_L("Custom Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
502 log->WriteToLogL(iPrint);
506 log->WriteToLogL(_L("Custom Section - Could not access integer attribute with method for string attribute"));
509 if(!aType.Compare(KString))
511 if(iWsIniFile->FindVar(aSection, aAttribute,intResult))
513 iPrint.Format(_L("Custom Section - String data retrieved with method for integer attrigute: %d"), intResult);
514 log->WriteToLogL(iPrint);
518 log->WriteToLogL(_L("Custom Section - Could not access string attribute with method for integer attribute"));
524 iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aAttribute);
525 log->WriteToLogL(iPrint);
527 CleanupStack::PopAndDestroy(log);
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
536 void CTestMWsIniFile::FindNEScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection)
538 CLogFile* log = CLogFile::NewL();
539 CleanupStack::PushL(log);
542 if(iWsIniFile->FindVar(aScreen,aIntSection))
544 iPrint.Format(_L("Screen%d Section has %S variable"), &aScreen, &aIntSection);
545 log->WriteToLogL(iPrint);
547 if(iWsIniFile->FindVar(aScreen,aIntSection,intResult))
549 iPrint.Format(_L("Screen%d Section Integer Data: %d"), &aScreen, intResult);
550 log->WriteToLogL(iPrint);
552 if(iWsIniFile->FindVar(aScreen,aStringSection,stringResult))
554 iPrint.Format(_L("Screen%d Section String Data: %S"), &aScreen, &stringResult);
555 log->WriteToLogL(iPrint);
559 log->WriteToLogL(_L("Could not access variables because screen does not exist"));
561 CleanupStack::PopAndDestroy(log);
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
570 void CTestMWsIniFile::FindNESectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection)
572 CLogFile* log = CLogFile::NewL();
573 CleanupStack::PushL(log);
576 if(iWsIniFile->FindVar(aSection,aIntSection))
578 iPrint.Format(_L("NonExistent Section has %S variable"), &aIntSection);
579 log->WriteToLogL(iPrint);
581 if(iWsIniFile->FindVar(aSection,aIntSection,intResult))
583 iPrint.Format(_L("NonExistent Section Integer Data: %d"), intResult);
584 log->WriteToLogL(iPrint);
586 if(iWsIniFile->FindVar(aSection,aStringSection,stringResult))
588 iPrint.Format(_L("NonExistent Section String Data: %S"), &stringResult);
589 log->WriteToLogL(iPrint);
593 log->WriteToLogL(_L("Could not access variables because section does not exist"));
595 CleanupStack::PopAndDestroy(log);
600 @return The Plugin name.
602 const TDesC& CTestMWsIniFile::PluginName() const
604 return KTestPluginName;