1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_genericplugin/src/t_testmwsinifile.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,605 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#include "t_testmwsinifile.h"
1.26 +#include "t_logfile.h"
1.27 +
1.28 +_LIT(KTestPluginName, "testmwsinifile");
1.29 +
1.30 +_LIT(KWsIniFile, "z:\\system\\data\\wsini.ini");
1.31 +_LIT(KString, "string");
1.32 +_LIT(KInteger, "integer");
1.33 +
1.34 +/***************************************************
1.35 +CTestMWsIniFile
1.36 +****************************************************/
1.37 +/**
1.38 +Creates a new CTestMWsIniFile object
1.39 +*/
1.40 +CTestMWsIniFile* CTestMWsIniFile::CreateL()
1.41 + {
1.42 + return new(ELeave) CTestMWsIniFile;
1.43 + }
1.44 +
1.45 +/**
1.46 +Initialisation phase of two phase construction.
1.47 +@param aEnv The environment for a graphic drawer
1.48 +@param aData The data for construction
1.49 +*/
1.50 +void CTestMWsIniFile::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& /*aData*/)
1.51 + {
1.52 + BaseConstructL(aEnv);
1.53 +
1.54 + iWsIniFile = aEnv.ObjectInterface<MWsIniFile>();
1.55 + iIniData = CIniData::NewL(KWsIniFile, ' '); //delimiter between key and value in wsini.ini
1.56 + CLogFile* log = CLogFile::NewL();
1.57 + CleanupStack::PushL(log);
1.58 + log->WriteToLogL(_L("TestMWsIniFile is created."));
1.59 + CleanupStack::PopAndDestroy(log);
1.60 + //runs tests which test the MWsIniFile interface
1.61 + RunMWsIniFileTestsL();
1.62 + }
1.63 +
1.64 +/**
1.65 +Constructor for CTestMWsIniFile
1.66 +*/
1.67 +CTestMWsIniFile::CTestMWsIniFile()
1.68 + {
1.69 + }
1.70 +
1.71 +/**
1.72 +Destructor for CTestMWsIniFile
1.73 +*/
1.74 +CTestMWsIniFile::~CTestMWsIniFile()
1.75 + {
1.76 + iWsIniFile = NULL;
1.77 + delete iIniData;
1.78 + }
1.79 +
1.80 +/**
1.81 +Tests which test the MWsIniFile interface
1.82 +*/
1.83 +void CTestMWsIniFile::RunMWsIniFileTestsL()
1.84 + {
1.85 + _LIT(KDefaultInt, "defaultInt"); //default section data
1.86 + _LIT(KDefaultStr, "defaultStr");
1.87 + _LIT(KScreen0Int, "screen0Int");
1.88 + _LIT(KScreen0Str, "screen0Str");
1.89 + _LIT(KCustomSection, "TESTMWSINIFILE"); //custom section data
1.90 + _LIT(KStdFaderInt, "stdfaderInt");
1.91 + _LIT(KStdFaderStr, "stdfaderStr");
1.92 + _LIT(KNeScreenInt, "NEScreenInt"); //nonexistent screen data (Screen5)
1.93 + _LIT(KNeScreenStr, "NEScreenStr");
1.94 + _LIT(KNeSection, "NESection"); //nonexistent section data
1.95 + _LIT(KNeSectionInt, "NESectionInt");
1.96 + _LIT(KNeSectionStr, "NESectionStr");
1.97 + _LIT(KMissingVar, "DoesNotExist");
1.98 +
1.99 + const TInt KScreen0 = 0;
1.100 + const TInt KNeScreen = 5;
1.101 +
1.102 + //
1.103 + // Positive Tests //
1.104 + //
1.105 +
1.106 + FindDefaultVariableL(KDefaultInt, KDefaultStr); //Default Section
1.107 + FindScreenVariableL(KScreen0, KScreen0Int, KScreen0Str); //Screen0 Section
1.108 + FindCustomSectionVariableL(KCustomSection, KStdFaderInt, KStdFaderStr); //Custom Section
1.109 +
1.110 + //
1.111 + // Negative Tests //
1.112 + //
1.113 +
1.114 + //ACCESS MISSING VARIABLE
1.115 + FindDefaultMissingVariableL(KMissingVar);
1.116 + FindScreenMissingVariableL(KScreen0,KMissingVar);
1.117 + FindCustomSectionMissingVariableL(KCustomSection,KMissingVar);
1.118 +
1.119 + //ACCESS INTEGER ATTRIBUTE WITH FindVar MEANT FOR STRING ATTRIBUTE
1.120 + FindDefaultVarOppositeMethodL(KDefaultInt, KInteger);
1.121 + FindScreenVarOppositeMethodL(KScreen0,KScreen0Int, KInteger);
1.122 + FindCustomSectionVarOppositeMethodL(KCustomSection,KStdFaderInt, KInteger);
1.123 +
1.124 + //ACCESS STRING ATTRIBUTE WITH FindVar MEANT FOR INTEGER ATTRIBUTE
1.125 + FindDefaultVarOppositeMethodL(KDefaultStr, KString);
1.126 + FindScreenVarOppositeMethodL(KScreen0,KScreen0Str, KString);
1.127 + FindCustomSectionVarOppositeMethodL(KCustomSection,KStdFaderStr, KString);
1.128 +
1.129 + //ACCESS ATTRIBUTE IN A SCREEN THAT DOES NOT EXIST
1.130 + FindNEScreenVariableL(KNeScreen, KNeScreenInt, KNeScreenStr);
1.131 +
1.132 + //ACCESS ATTRIBUTE IN A SECTION THAT DOES NOT EXIST
1.133 + FindNESectionVariableL(KNeSection, KNeSectionInt, KNeSectionStr);
1.134 + }
1.135 +
1.136 +/**
1.137 +Finds the variable from screen section
1.138 +@param aScreen The screen number
1.139 +@param aIntSection The key name of an integer value
1.140 +@param aStringSection The key name of an string value
1.141 +*/
1.142 +void CTestMWsIniFile::FindScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection)
1.143 + {
1.144 + CLogFile* log = CLogFile::NewL();
1.145 + CleanupStack::PushL(log);
1.146 + TInt intResult;
1.147 + TPtrC stringResult;
1.148 + TInt trueIntData;
1.149 + TPtrC trueStringData;
1.150 + TBuf<255> screenSection;
1.151 + screenSection.Format(_L("SCREEN%d"),aScreen);
1.152 + if(iWsIniFile->FindVar(aScreen,aIntSection))
1.153 + {
1.154 + if(iWsIniFile->FindVar(aScreen,aIntSection,intResult) && iIniData->FindVar(screenSection,aIntSection,trueIntData) && intResult == trueIntData)
1.155 + {
1.156 + iPrint.Format(_L("Screen Section has correct integer data: %d"), intResult);
1.157 + log->WriteToLogL(iPrint);
1.158 + }
1.159 + else
1.160 + {
1.161 + log->WriteToLogL(_L("Screen integer data has incorrect value"));
1.162 + }
1.163 + }
1.164 + else
1.165 + {
1.166 + iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aIntSection);
1.167 + log->WriteToLogL(iPrint);
1.168 + }
1.169 +
1.170 + if(iWsIniFile->FindVar(aScreen,aStringSection))
1.171 + {
1.172 + if(iWsIniFile->FindVar(aScreen,aStringSection,stringResult) && iIniData->FindVar(screenSection,aStringSection,trueStringData) && !stringResult.Compare(trueStringData))
1.173 + {
1.174 + iPrint.Format(_L("Screen Section has correct string data: %S"), &stringResult);
1.175 + log->WriteToLogL(iPrint);
1.176 + }
1.177 + else
1.178 + {
1.179 + log->WriteToLogL(_L("Screen string data has incorrect value"));
1.180 + }
1.181 + }
1.182 + else
1.183 + {
1.184 + iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aStringSection);
1.185 + log->WriteToLogL(iPrint);
1.186 + }
1.187 + CleanupStack::PopAndDestroy(log);
1.188 + }
1.189 +
1.190 +/**
1.191 +Finds the variable from custom section
1.192 +@param aSection The name of the custom section
1.193 +@param aIntSection The key name of an integer value
1.194 +@param aStringSection The key name of an string value
1.195 +*/
1.196 +void CTestMWsIniFile::FindCustomSectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection)
1.197 + {
1.198 + CLogFile* log = CLogFile::NewL();
1.199 + CleanupStack::PushL(log);
1.200 + TInt intResult;
1.201 + TPtrC stringResult;
1.202 + TInt trueIntData;
1.203 + TPtrC trueStringData;
1.204 + if(iWsIniFile->FindVar(aSection,aIntSection))
1.205 + {
1.206 + if(iWsIniFile->FindVar(aSection,aIntSection,intResult) && iIniData->FindVar(aSection,aIntSection,trueIntData) && intResult == trueIntData)
1.207 + {
1.208 + iPrint.Format(_L("Custom Section has correct integer data: %d"), intResult);
1.209 + log->WriteToLogL(iPrint);
1.210 + }
1.211 + else
1.212 + {
1.213 + log->WriteToLogL(_L("Custom Section integer data has incorrect value"));
1.214 + }
1.215 + }
1.216 + else
1.217 + {
1.218 + iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aIntSection);
1.219 + log->WriteToLogL(iPrint);
1.220 + }
1.221 +
1.222 + if(iWsIniFile->FindVar(aSection,aStringSection))
1.223 + {
1.224 + if(iWsIniFile->FindVar(aSection,aStringSection,stringResult) && iIniData->FindVar(aSection,aStringSection,trueStringData) && !stringResult.Compare(trueStringData))
1.225 + {
1.226 + iPrint.Format(_L("Custom Section has correct string data: %S"), &stringResult);
1.227 + log->WriteToLogL(iPrint);
1.228 + }
1.229 + else
1.230 + {
1.231 + log->WriteToLogL(_L("Custom Section string data has incorrect value"));
1.232 + }
1.233 + }
1.234 + else
1.235 + {
1.236 + iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aStringSection);
1.237 + log->WriteToLogL(iPrint);
1.238 + }
1.239 + CleanupStack::PopAndDestroy(log);
1.240 + }
1.241 +
1.242 +/**
1.243 +Finds the variable from default section
1.244 +@param aIntSection The key name of an integer value
1.245 +@param aStringSection The key name of an string value
1.246 +*/
1.247 +void CTestMWsIniFile::FindDefaultVariableL(const TDesC& aIntSection, const TDesC& aStringSection)
1.248 + {
1.249 + CLogFile* log = CLogFile::NewL();
1.250 + CleanupStack::PushL(log);
1.251 + TInt intResult;
1.252 + TPtrC stringResult;
1.253 + TInt trueIntData;
1.254 + TPtrC trueStringData;
1.255 + if(iWsIniFile->FindVar(aIntSection))
1.256 + {
1.257 + if(iWsIniFile->FindVar(aIntSection,intResult) && iIniData->FindVar(aIntSection, trueIntData) && intResult == trueIntData)
1.258 + {
1.259 + iPrint.Format(_L("Default Section has correct integer data: %d"), intResult);
1.260 + log->WriteToLogL(iPrint);
1.261 + }
1.262 + else
1.263 + {
1.264 + log->WriteToLogL(_L("Default Section integer data has incorrect value"));
1.265 + }
1.266 + }
1.267 + else
1.268 + {
1.269 + iPrint.Format(_L("Default Section does not have %S variable"), &aIntSection);
1.270 + log->WriteToLogL(iPrint);
1.271 + }
1.272 +
1.273 + if(iWsIniFile->FindVar(aStringSection))
1.274 + {
1.275 + if(iWsIniFile->FindVar(aStringSection,stringResult) && iIniData->FindVar(aStringSection, trueStringData) && !stringResult.Compare(trueStringData))
1.276 + {
1.277 + iPrint.Format(_L("Default Section has correct string data: %S"), &stringResult);
1.278 + log->WriteToLogL(iPrint);
1.279 + }
1.280 + else
1.281 + {
1.282 + log->WriteToLogL(_L("Default Section string data has incorrect value"));
1.283 + }
1.284 + }
1.285 + else
1.286 + {
1.287 + iPrint.Format(_L("Default Section does not have %S variable"), &aStringSection);
1.288 + log->WriteToLogL(iPrint);
1.289 + }
1.290 + CleanupStack::PopAndDestroy(log);
1.291 + }
1.292 +
1.293 +/**
1.294 +Finds a missing variable from default section
1.295 +@param aMissingVariable The key name of the missing variable.
1.296 +*/
1.297 +void CTestMWsIniFile::FindDefaultMissingVariableL(const TDesC& aMissingVariable)
1.298 + {
1.299 + CLogFile* log = CLogFile::NewL();
1.300 + CleanupStack::PushL(log);
1.301 + TInt intResult;
1.302 + TPtrC stringResult;
1.303 + if(iWsIniFile->FindVar(aMissingVariable))
1.304 + {
1.305 + iPrint.Format(_L("Default Section has %S variable"), &aMissingVariable);
1.306 + log->WriteToLogL(iPrint);
1.307 + }
1.308 + if(iWsIniFile->FindVar(aMissingVariable,intResult))
1.309 + {
1.310 + iPrint.Format(_L("Default Section MissingVar Data: %d"), intResult);
1.311 + log->WriteToLogL(iPrint);
1.312 + }
1.313 + else if(iWsIniFile->FindVar(aMissingVariable,stringResult))
1.314 + {
1.315 + iPrint.Format(_L("Default Section MissingVar Data: %S"), &stringResult);
1.316 + log->WriteToLogL(iPrint);
1.317 + }
1.318 + else
1.319 + {
1.320 + log->WriteToLogL(_L("Default Section does not have missing attribute"));
1.321 + }
1.322 + CleanupStack::PopAndDestroy(log);
1.323 + }
1.324 +
1.325 +/**
1.326 +Finds a missing variable from screen section
1.327 +@param aScreen The screen number
1.328 +@param aMissingVariable The key name of the missing variable.
1.329 +*/
1.330 +void CTestMWsIniFile::FindScreenMissingVariableL(TInt aScreen, const TDesC& aMissingVariable)
1.331 + {
1.332 + CLogFile* log = CLogFile::NewL();
1.333 + CleanupStack::PushL(log);
1.334 + TInt intResult;
1.335 + TPtrC stringResult;
1.336 + if(iWsIniFile->FindVar(aScreen,aMissingVariable))
1.337 + {
1.338 + iPrint.Format(_L("Screen%d Section has %S variable"), aScreen, &aMissingVariable);
1.339 + log->WriteToLogL(iPrint);
1.340 + }
1.341 + if(iWsIniFile->FindVar(aScreen,aMissingVariable,intResult))
1.342 + {
1.343 + iPrint.Format(_L("Screen%d Section MissingVar Data: %d"), aScreen, intResult);
1.344 + log->WriteToLogL(iPrint);
1.345 + }
1.346 + else if(iWsIniFile->FindVar(aScreen,aMissingVariable,stringResult))
1.347 + {
1.348 + iPrint.Format(_L("Screen%d Section MissingVar Data: %S"), aScreen, &stringResult);
1.349 + log->WriteToLogL(iPrint);
1.350 + }
1.351 + else
1.352 + {
1.353 + log->WriteToLogL(_L("Screen Section does not have missing attribute"));
1.354 + }
1.355 + CleanupStack::PopAndDestroy(log);
1.356 + }
1.357 +/**
1.358 +Finds a missing variable from custom section
1.359 +@param aSection The name of the custom section.
1.360 +@param aMissingVariable The key name of the missing variable.
1.361 +*/
1.362 +void CTestMWsIniFile::FindCustomSectionMissingVariableL(const TDesC& aSection, const TDesC& aMissingVariable)
1.363 + {
1.364 + CLogFile* log = CLogFile::NewL();
1.365 + CleanupStack::PushL(log);
1.366 + TInt intResult;
1.367 + TPtrC stringResult;
1.368 + if(iWsIniFile->FindVar(aSection,aMissingVariable))
1.369 + {
1.370 + iPrint.Format(_L("Custom Section %S has %S variable"), &aSection, &aMissingVariable);
1.371 + log->WriteToLogL(iPrint);
1.372 + }
1.373 + if(iWsIniFile->FindVar(aSection,aMissingVariable,intResult))
1.374 + {
1.375 + iPrint.Format(_L("Custom Section %S MissingVar Data: %d"), &aSection, intResult);
1.376 + log->WriteToLogL(iPrint);
1.377 + }
1.378 + else if(iWsIniFile->FindVar(aSection,aMissingVariable,stringResult))
1.379 + {
1.380 + iPrint.Format(_L("Custom Section %S MissingVar Data: %S"), &aSection, &stringResult);
1.381 + log->WriteToLogL(iPrint);
1.382 + }
1.383 + else
1.384 + {
1.385 + log->WriteToLogL(_L("Custom Section does not have missing attribute"));
1.386 + }
1.387 + CleanupStack::PopAndDestroy(log);
1.388 + }
1.389 +
1.390 +/**
1.391 +Access integer attribute in default section with FindVar meant for string attribute
1.392 +or access string attribute in default section with FindVar meant for integer attribute.
1.393 +@param aAttribute The name of the attribute to access
1.394 +@param aType The type of the attribute, integer or string.
1.395 +*/
1.396 +void CTestMWsIniFile::FindDefaultVarOppositeMethodL(const TDesC& aAttribute, const TDesC& aType)
1.397 + {
1.398 + CLogFile* log = CLogFile::NewL();
1.399 + CleanupStack::PushL(log);
1.400 + TInt intResult;
1.401 + TPtrC stringResult;
1.402 + if(iWsIniFile->FindVar(aAttribute))
1.403 + {
1.404 + if(!aType.Compare(KInteger))
1.405 + {
1.406 + if(iWsIniFile->FindVar(aAttribute,stringResult))
1.407 + {
1.408 + iPrint.Format(_L("Default Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
1.409 + log->WriteToLogL(iPrint);
1.410 + }
1.411 + else
1.412 + {
1.413 + log->WriteToLogL(_L("Default Section - Could not access integer attribute with method for string attribute"));
1.414 + }
1.415 + }
1.416 + if(!aType.Compare(KString))
1.417 + {
1.418 + if(iWsIniFile->FindVar(aAttribute,intResult))
1.419 + {
1.420 + iPrint.Format(_L("Default Section - String data retrieved with method for integer attribute: %d"), intResult);
1.421 + log->WriteToLogL(iPrint);
1.422 + }
1.423 + else
1.424 + {
1.425 + log->WriteToLogL(_L("Default Section - Could not access string attribute with method for integer attribute"));
1.426 + }
1.427 + }
1.428 + }
1.429 + else
1.430 + {
1.431 + iPrint.Format(_L("Default Section does not have %S variable"), &aAttribute);
1.432 + log->WriteToLogL(iPrint);
1.433 + }
1.434 + CleanupStack::PopAndDestroy(log);
1.435 + }
1.436 +
1.437 +/**
1.438 +Access integer attribute in screen section with FindVar meant for string attribute
1.439 +or access string attribute in screen section with FindVar meant for integer attribute.
1.440 +@param aScreen The screen number
1.441 +@param aAttribute The name of the attribute to access
1.442 +@param aType The type of the attribute, integer or string.
1.443 +*/
1.444 +void CTestMWsIniFile::FindScreenVarOppositeMethodL(TInt aScreen, const TDesC& aAttribute, const TDesC& aType)
1.445 + {
1.446 + CLogFile* log = CLogFile::NewL();
1.447 + CleanupStack::PushL(log);
1.448 + TInt intResult;
1.449 + TPtrC stringResult;
1.450 + if(iWsIniFile->FindVar(aScreen,aAttribute))
1.451 + {
1.452 + if(!aType.Compare(KInteger))
1.453 + {
1.454 + if(iWsIniFile->FindVar(aScreen, aAttribute,stringResult))
1.455 + {
1.456 + iPrint.Format(_L("Screen Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
1.457 + log->WriteToLogL(iPrint);
1.458 + }
1.459 + else
1.460 + {
1.461 + log->WriteToLogL(_L("Screen Section - Could not access integer attribute with method for string attribute"));
1.462 + }
1.463 + }
1.464 + if(!aType.Compare(KString))
1.465 + {
1.466 + if(iWsIniFile->FindVar(aScreen, aAttribute,intResult))
1.467 + {
1.468 + iPrint.Format(_L("Screen Section - String data retrieved with method for integer attribute: %d"), intResult);
1.469 + log->WriteToLogL(iPrint);
1.470 + }
1.471 + else
1.472 + {
1.473 + log->WriteToLogL(_L("Screen Section - Could not access string attribute with method for integer attribute"));
1.474 + }
1.475 + }
1.476 + }
1.477 + else
1.478 + {
1.479 + iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aAttribute);
1.480 + log->WriteToLogL(iPrint);
1.481 + }
1.482 + CleanupStack::PopAndDestroy(log);
1.483 + }
1.484 +
1.485 +/**
1.486 +Access integer attribute in custom section with FindVar meant for string attribute
1.487 +or access string attribute in custom section with FindVar meant for integer attribute.
1.488 +@param aSection The name of the custom section
1.489 +@param aAttribute The name of the attribute to access
1.490 +@param aType The type of the attribute, integer or string.
1.491 +*/
1.492 +void CTestMWsIniFile::FindCustomSectionVarOppositeMethodL(const TDesC& aSection, const TDesC& aAttribute, const TDesC& aType)
1.493 + {
1.494 + CLogFile* log = CLogFile::NewL();
1.495 + CleanupStack::PushL(log);
1.496 + TInt intResult;
1.497 + TPtrC stringResult;
1.498 + if(iWsIniFile->FindVar(aSection,aAttribute))
1.499 + {
1.500 + if(!aType.Compare(KInteger))
1.501 + {
1.502 + if(iWsIniFile->FindVar(aSection, aAttribute,stringResult))
1.503 + {
1.504 + iPrint.Format(_L("Custom Section - Integer data retrieved with method for string attribute: %S"), &stringResult);
1.505 + log->WriteToLogL(iPrint);
1.506 + }
1.507 + else
1.508 + {
1.509 + log->WriteToLogL(_L("Custom Section - Could not access integer attribute with method for string attribute"));
1.510 + }
1.511 + }
1.512 + if(!aType.Compare(KString))
1.513 + {
1.514 + if(iWsIniFile->FindVar(aSection, aAttribute,intResult))
1.515 + {
1.516 + iPrint.Format(_L("Custom Section - String data retrieved with method for integer attrigute: %d"), intResult);
1.517 + log->WriteToLogL(iPrint);
1.518 + }
1.519 + else
1.520 + {
1.521 + log->WriteToLogL(_L("Custom Section - Could not access string attribute with method for integer attribute"));
1.522 + }
1.523 + }
1.524 + }
1.525 + else
1.526 + {
1.527 + iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aAttribute);
1.528 + log->WriteToLogL(iPrint);
1.529 + }
1.530 + CleanupStack::PopAndDestroy(log);
1.531 + }
1.532 +
1.533 +/**
1.534 +Finds variable from non existed screen section
1.535 +@param aScreen The screen number
1.536 +@param aIntSection The key name of an integer value
1.537 +@param aStringSection The key name of an string value
1.538 +*/
1.539 +void CTestMWsIniFile::FindNEScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection)
1.540 + {
1.541 + CLogFile* log = CLogFile::NewL();
1.542 + CleanupStack::PushL(log);
1.543 + TInt intResult;
1.544 + TPtrC stringResult;
1.545 + if(iWsIniFile->FindVar(aScreen,aIntSection))
1.546 + {
1.547 + iPrint.Format(_L("Screen%d Section has %S variable"), &aScreen, &aIntSection);
1.548 + log->WriteToLogL(iPrint);
1.549 + }
1.550 + if(iWsIniFile->FindVar(aScreen,aIntSection,intResult))
1.551 + {
1.552 + iPrint.Format(_L("Screen%d Section Integer Data: %d"), &aScreen, intResult);
1.553 + log->WriteToLogL(iPrint);
1.554 + }
1.555 + if(iWsIniFile->FindVar(aScreen,aStringSection,stringResult))
1.556 + {
1.557 + iPrint.Format(_L("Screen%d Section String Data: %S"), &aScreen, &stringResult);
1.558 + log->WriteToLogL(iPrint);
1.559 + }
1.560 + else
1.561 + {
1.562 + log->WriteToLogL(_L("Could not access variables because screen does not exist"));
1.563 + }
1.564 + CleanupStack::PopAndDestroy(log);
1.565 + }
1.566 +
1.567 +/**
1.568 +Finds variable from non existed custom section
1.569 +@param aSection The name of the custom section
1.570 +@param aIntSection The key name of an integer value
1.571 +@param aStringSection The key name of an string value
1.572 +*/
1.573 +void CTestMWsIniFile::FindNESectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection)
1.574 + {
1.575 + CLogFile* log = CLogFile::NewL();
1.576 + CleanupStack::PushL(log);
1.577 + TInt intResult;
1.578 + TPtrC stringResult;
1.579 + if(iWsIniFile->FindVar(aSection,aIntSection))
1.580 + {
1.581 + iPrint.Format(_L("NonExistent Section has %S variable"), &aIntSection);
1.582 + log->WriteToLogL(iPrint);
1.583 + }
1.584 + if(iWsIniFile->FindVar(aSection,aIntSection,intResult))
1.585 + {
1.586 + iPrint.Format(_L("NonExistent Section Integer Data: %d"), intResult);
1.587 + log->WriteToLogL(iPrint);
1.588 + }
1.589 + if(iWsIniFile->FindVar(aSection,aStringSection,stringResult))
1.590 + {
1.591 + iPrint.Format(_L("NonExistent Section String Data: %S"), &stringResult);
1.592 + log->WriteToLogL(iPrint);
1.593 + }
1.594 + else
1.595 + {
1.596 + log->WriteToLogL(_L("Could not access variables because section does not exist"));
1.597 + }
1.598 + CleanupStack::PopAndDestroy(log);
1.599 + }
1.600 +
1.601 +/**
1.602 +Gets the plugin name
1.603 +@return The Plugin name.
1.604 +*/
1.605 +const TDesC& CTestMWsIniFile::PluginName() const
1.606 + {
1.607 + return KTestPluginName;
1.608 + }