sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "t_testmwsinifile.h" sl@0: #include "t_logfile.h" sl@0: sl@0: _LIT(KTestPluginName, "testmwsinifile"); sl@0: sl@0: _LIT(KWsIniFile, "z:\\system\\data\\wsini.ini"); sl@0: _LIT(KString, "string"); sl@0: _LIT(KInteger, "integer"); sl@0: sl@0: /*************************************************** sl@0: CTestMWsIniFile sl@0: ****************************************************/ sl@0: /** sl@0: Creates a new CTestMWsIniFile object sl@0: */ sl@0: CTestMWsIniFile* CTestMWsIniFile::CreateL() sl@0: { sl@0: return new(ELeave) CTestMWsIniFile; sl@0: } sl@0: sl@0: /** sl@0: Initialisation phase of two phase construction. sl@0: @param aEnv The environment for a graphic drawer sl@0: @param aData The data for construction sl@0: */ sl@0: void CTestMWsIniFile::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& /*aData*/) sl@0: { sl@0: BaseConstructL(aEnv); sl@0: sl@0: iWsIniFile = aEnv.ObjectInterface(); sl@0: iIniData = CIniData::NewL(KWsIniFile, ' '); //delimiter between key and value in wsini.ini sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: log->WriteToLogL(_L("TestMWsIniFile is created.")); sl@0: CleanupStack::PopAndDestroy(log); sl@0: //runs tests which test the MWsIniFile interface sl@0: RunMWsIniFileTestsL(); sl@0: } sl@0: sl@0: /** sl@0: Constructor for CTestMWsIniFile sl@0: */ sl@0: CTestMWsIniFile::CTestMWsIniFile() sl@0: { sl@0: } sl@0: sl@0: /** sl@0: Destructor for CTestMWsIniFile sl@0: */ sl@0: CTestMWsIniFile::~CTestMWsIniFile() sl@0: { sl@0: iWsIniFile = NULL; sl@0: delete iIniData; sl@0: } sl@0: sl@0: /** sl@0: Tests which test the MWsIniFile interface sl@0: */ sl@0: void CTestMWsIniFile::RunMWsIniFileTestsL() sl@0: { sl@0: _LIT(KDefaultInt, "defaultInt"); //default section data sl@0: _LIT(KDefaultStr, "defaultStr"); sl@0: _LIT(KScreen0Int, "screen0Int"); sl@0: _LIT(KScreen0Str, "screen0Str"); sl@0: _LIT(KCustomSection, "TESTMWSINIFILE"); //custom section data sl@0: _LIT(KStdFaderInt, "stdfaderInt"); sl@0: _LIT(KStdFaderStr, "stdfaderStr"); sl@0: _LIT(KNeScreenInt, "NEScreenInt"); //nonexistent screen data (Screen5) sl@0: _LIT(KNeScreenStr, "NEScreenStr"); sl@0: _LIT(KNeSection, "NESection"); //nonexistent section data sl@0: _LIT(KNeSectionInt, "NESectionInt"); sl@0: _LIT(KNeSectionStr, "NESectionStr"); sl@0: _LIT(KMissingVar, "DoesNotExist"); sl@0: sl@0: const TInt KScreen0 = 0; sl@0: const TInt KNeScreen = 5; sl@0: sl@0: // sl@0: // Positive Tests // sl@0: // sl@0: sl@0: FindDefaultVariableL(KDefaultInt, KDefaultStr); //Default Section sl@0: FindScreenVariableL(KScreen0, KScreen0Int, KScreen0Str); //Screen0 Section sl@0: FindCustomSectionVariableL(KCustomSection, KStdFaderInt, KStdFaderStr); //Custom Section sl@0: sl@0: // sl@0: // Negative Tests // sl@0: // sl@0: sl@0: //ACCESS MISSING VARIABLE sl@0: FindDefaultMissingVariableL(KMissingVar); sl@0: FindScreenMissingVariableL(KScreen0,KMissingVar); sl@0: FindCustomSectionMissingVariableL(KCustomSection,KMissingVar); sl@0: sl@0: //ACCESS INTEGER ATTRIBUTE WITH FindVar MEANT FOR STRING ATTRIBUTE sl@0: FindDefaultVarOppositeMethodL(KDefaultInt, KInteger); sl@0: FindScreenVarOppositeMethodL(KScreen0,KScreen0Int, KInteger); sl@0: FindCustomSectionVarOppositeMethodL(KCustomSection,KStdFaderInt, KInteger); sl@0: sl@0: //ACCESS STRING ATTRIBUTE WITH FindVar MEANT FOR INTEGER ATTRIBUTE sl@0: FindDefaultVarOppositeMethodL(KDefaultStr, KString); sl@0: FindScreenVarOppositeMethodL(KScreen0,KScreen0Str, KString); sl@0: FindCustomSectionVarOppositeMethodL(KCustomSection,KStdFaderStr, KString); sl@0: sl@0: //ACCESS ATTRIBUTE IN A SCREEN THAT DOES NOT EXIST sl@0: FindNEScreenVariableL(KNeScreen, KNeScreenInt, KNeScreenStr); sl@0: sl@0: //ACCESS ATTRIBUTE IN A SECTION THAT DOES NOT EXIST sl@0: FindNESectionVariableL(KNeSection, KNeSectionInt, KNeSectionStr); sl@0: } sl@0: sl@0: /** sl@0: Finds the variable from screen section sl@0: @param aScreen The screen number sl@0: @param aIntSection The key name of an integer value sl@0: @param aStringSection The key name of an string value sl@0: */ sl@0: void CTestMWsIniFile::FindScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: TInt trueIntData; sl@0: TPtrC trueStringData; sl@0: TBuf<255> screenSection; sl@0: screenSection.Format(_L("SCREEN%d"),aScreen); sl@0: if(iWsIniFile->FindVar(aScreen,aIntSection)) sl@0: { sl@0: if(iWsIniFile->FindVar(aScreen,aIntSection,intResult) && iIniData->FindVar(screenSection,aIntSection,trueIntData) && intResult == trueIntData) sl@0: { sl@0: iPrint.Format(_L("Screen Section has correct integer data: %d"), intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Screen integer data has incorrect value")); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aIntSection); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: sl@0: if(iWsIniFile->FindVar(aScreen,aStringSection)) sl@0: { sl@0: if(iWsIniFile->FindVar(aScreen,aStringSection,stringResult) && iIniData->FindVar(screenSection,aStringSection,trueStringData) && !stringResult.Compare(trueStringData)) sl@0: { sl@0: iPrint.Format(_L("Screen Section has correct string data: %S"), &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Screen string data has incorrect value")); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aStringSection); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Finds the variable from custom section sl@0: @param aSection The name of the custom section sl@0: @param aIntSection The key name of an integer value sl@0: @param aStringSection The key name of an string value sl@0: */ sl@0: void CTestMWsIniFile::FindCustomSectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: TInt trueIntData; sl@0: TPtrC trueStringData; sl@0: if(iWsIniFile->FindVar(aSection,aIntSection)) sl@0: { sl@0: if(iWsIniFile->FindVar(aSection,aIntSection,intResult) && iIniData->FindVar(aSection,aIntSection,trueIntData) && intResult == trueIntData) sl@0: { sl@0: iPrint.Format(_L("Custom Section has correct integer data: %d"), intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Custom Section integer data has incorrect value")); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aIntSection); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: sl@0: if(iWsIniFile->FindVar(aSection,aStringSection)) sl@0: { sl@0: if(iWsIniFile->FindVar(aSection,aStringSection,stringResult) && iIniData->FindVar(aSection,aStringSection,trueStringData) && !stringResult.Compare(trueStringData)) sl@0: { sl@0: iPrint.Format(_L("Custom Section has correct string data: %S"), &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Custom Section string data has incorrect value")); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aStringSection); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Finds the variable from default section sl@0: @param aIntSection The key name of an integer value sl@0: @param aStringSection The key name of an string value sl@0: */ sl@0: void CTestMWsIniFile::FindDefaultVariableL(const TDesC& aIntSection, const TDesC& aStringSection) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: TInt trueIntData; sl@0: TPtrC trueStringData; sl@0: if(iWsIniFile->FindVar(aIntSection)) sl@0: { sl@0: if(iWsIniFile->FindVar(aIntSection,intResult) && iIniData->FindVar(aIntSection, trueIntData) && intResult == trueIntData) sl@0: { sl@0: iPrint.Format(_L("Default Section has correct integer data: %d"), intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Default Section integer data has incorrect value")); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Default Section does not have %S variable"), &aIntSection); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: sl@0: if(iWsIniFile->FindVar(aStringSection)) sl@0: { sl@0: if(iWsIniFile->FindVar(aStringSection,stringResult) && iIniData->FindVar(aStringSection, trueStringData) && !stringResult.Compare(trueStringData)) sl@0: { sl@0: iPrint.Format(_L("Default Section has correct string data: %S"), &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Default Section string data has incorrect value")); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Default Section does not have %S variable"), &aStringSection); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Finds a missing variable from default section sl@0: @param aMissingVariable The key name of the missing variable. sl@0: */ sl@0: void CTestMWsIniFile::FindDefaultMissingVariableL(const TDesC& aMissingVariable) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: if(iWsIniFile->FindVar(aMissingVariable)) sl@0: { sl@0: iPrint.Format(_L("Default Section has %S variable"), &aMissingVariable); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: if(iWsIniFile->FindVar(aMissingVariable,intResult)) sl@0: { sl@0: iPrint.Format(_L("Default Section MissingVar Data: %d"), intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else if(iWsIniFile->FindVar(aMissingVariable,stringResult)) sl@0: { sl@0: iPrint.Format(_L("Default Section MissingVar Data: %S"), &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Default Section does not have missing attribute")); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Finds a missing variable from screen section sl@0: @param aScreen The screen number sl@0: @param aMissingVariable The key name of the missing variable. sl@0: */ sl@0: void CTestMWsIniFile::FindScreenMissingVariableL(TInt aScreen, const TDesC& aMissingVariable) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: if(iWsIniFile->FindVar(aScreen,aMissingVariable)) sl@0: { sl@0: iPrint.Format(_L("Screen%d Section has %S variable"), aScreen, &aMissingVariable); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: if(iWsIniFile->FindVar(aScreen,aMissingVariable,intResult)) sl@0: { sl@0: iPrint.Format(_L("Screen%d Section MissingVar Data: %d"), aScreen, intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else if(iWsIniFile->FindVar(aScreen,aMissingVariable,stringResult)) sl@0: { sl@0: iPrint.Format(_L("Screen%d Section MissingVar Data: %S"), aScreen, &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Screen Section does not have missing attribute")); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: /** sl@0: Finds a missing variable from custom section sl@0: @param aSection The name of the custom section. sl@0: @param aMissingVariable The key name of the missing variable. sl@0: */ sl@0: void CTestMWsIniFile::FindCustomSectionMissingVariableL(const TDesC& aSection, const TDesC& aMissingVariable) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: if(iWsIniFile->FindVar(aSection,aMissingVariable)) sl@0: { sl@0: iPrint.Format(_L("Custom Section %S has %S variable"), &aSection, &aMissingVariable); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: if(iWsIniFile->FindVar(aSection,aMissingVariable,intResult)) sl@0: { sl@0: iPrint.Format(_L("Custom Section %S MissingVar Data: %d"), &aSection, intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else if(iWsIniFile->FindVar(aSection,aMissingVariable,stringResult)) sl@0: { sl@0: iPrint.Format(_L("Custom Section %S MissingVar Data: %S"), &aSection, &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Custom Section does not have missing attribute")); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Access integer attribute in default section with FindVar meant for string attribute sl@0: or access string attribute in default section with FindVar meant for integer attribute. sl@0: @param aAttribute The name of the attribute to access sl@0: @param aType The type of the attribute, integer or string. sl@0: */ sl@0: void CTestMWsIniFile::FindDefaultVarOppositeMethodL(const TDesC& aAttribute, const TDesC& aType) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: if(iWsIniFile->FindVar(aAttribute)) sl@0: { sl@0: if(!aType.Compare(KInteger)) sl@0: { sl@0: if(iWsIniFile->FindVar(aAttribute,stringResult)) sl@0: { sl@0: iPrint.Format(_L("Default Section - Integer data retrieved with method for string attribute: %S"), &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Default Section - Could not access integer attribute with method for string attribute")); sl@0: } sl@0: } sl@0: if(!aType.Compare(KString)) sl@0: { sl@0: if(iWsIniFile->FindVar(aAttribute,intResult)) sl@0: { sl@0: iPrint.Format(_L("Default Section - String data retrieved with method for integer attribute: %d"), intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Default Section - Could not access string attribute with method for integer attribute")); sl@0: } sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Default Section does not have %S variable"), &aAttribute); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Access integer attribute in screen section with FindVar meant for string attribute sl@0: or access string attribute in screen section with FindVar meant for integer attribute. sl@0: @param aScreen The screen number sl@0: @param aAttribute The name of the attribute to access sl@0: @param aType The type of the attribute, integer or string. sl@0: */ sl@0: void CTestMWsIniFile::FindScreenVarOppositeMethodL(TInt aScreen, const TDesC& aAttribute, const TDesC& aType) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: if(iWsIniFile->FindVar(aScreen,aAttribute)) sl@0: { sl@0: if(!aType.Compare(KInteger)) sl@0: { sl@0: if(iWsIniFile->FindVar(aScreen, aAttribute,stringResult)) sl@0: { sl@0: iPrint.Format(_L("Screen Section - Integer data retrieved with method for string attribute: %S"), &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Screen Section - Could not access integer attribute with method for string attribute")); sl@0: } sl@0: } sl@0: if(!aType.Compare(KString)) sl@0: { sl@0: if(iWsIniFile->FindVar(aScreen, aAttribute,intResult)) sl@0: { sl@0: iPrint.Format(_L("Screen Section - String data retrieved with method for integer attribute: %d"), intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Screen Section - Could not access string attribute with method for integer attribute")); sl@0: } sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Screen%d Section does not have %S variable"), aScreen, &aAttribute); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Access integer attribute in custom section with FindVar meant for string attribute sl@0: or access string attribute in custom section with FindVar meant for integer attribute. sl@0: @param aSection The name of the custom section sl@0: @param aAttribute The name of the attribute to access sl@0: @param aType The type of the attribute, integer or string. sl@0: */ sl@0: void CTestMWsIniFile::FindCustomSectionVarOppositeMethodL(const TDesC& aSection, const TDesC& aAttribute, const TDesC& aType) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: if(iWsIniFile->FindVar(aSection,aAttribute)) sl@0: { sl@0: if(!aType.Compare(KInteger)) sl@0: { sl@0: if(iWsIniFile->FindVar(aSection, aAttribute,stringResult)) sl@0: { sl@0: iPrint.Format(_L("Custom Section - Integer data retrieved with method for string attribute: %S"), &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Custom Section - Could not access integer attribute with method for string attribute")); sl@0: } sl@0: } sl@0: if(!aType.Compare(KString)) sl@0: { sl@0: if(iWsIniFile->FindVar(aSection, aAttribute,intResult)) sl@0: { sl@0: iPrint.Format(_L("Custom Section - String data retrieved with method for integer attrigute: %d"), intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Custom Section - Could not access string attribute with method for integer attribute")); sl@0: } sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iPrint.Format(_L("Custom Section %S does not have %S variable"), &aSection, &aAttribute); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Finds variable from non existed screen section sl@0: @param aScreen The screen number sl@0: @param aIntSection The key name of an integer value sl@0: @param aStringSection The key name of an string value sl@0: */ sl@0: void CTestMWsIniFile::FindNEScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: if(iWsIniFile->FindVar(aScreen,aIntSection)) sl@0: { sl@0: iPrint.Format(_L("Screen%d Section has %S variable"), &aScreen, &aIntSection); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: if(iWsIniFile->FindVar(aScreen,aIntSection,intResult)) sl@0: { sl@0: iPrint.Format(_L("Screen%d Section Integer Data: %d"), &aScreen, intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: if(iWsIniFile->FindVar(aScreen,aStringSection,stringResult)) sl@0: { sl@0: iPrint.Format(_L("Screen%d Section String Data: %S"), &aScreen, &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Could not access variables because screen does not exist")); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Finds variable from non existed custom section sl@0: @param aSection The name of the custom section sl@0: @param aIntSection The key name of an integer value sl@0: @param aStringSection The key name of an string value sl@0: */ sl@0: void CTestMWsIniFile::FindNESectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection) sl@0: { sl@0: CLogFile* log = CLogFile::NewL(); sl@0: CleanupStack::PushL(log); sl@0: TInt intResult; sl@0: TPtrC stringResult; sl@0: if(iWsIniFile->FindVar(aSection,aIntSection)) sl@0: { sl@0: iPrint.Format(_L("NonExistent Section has %S variable"), &aIntSection); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: if(iWsIniFile->FindVar(aSection,aIntSection,intResult)) sl@0: { sl@0: iPrint.Format(_L("NonExistent Section Integer Data: %d"), intResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: if(iWsIniFile->FindVar(aSection,aStringSection,stringResult)) sl@0: { sl@0: iPrint.Format(_L("NonExistent Section String Data: %S"), &stringResult); sl@0: log->WriteToLogL(iPrint); sl@0: } sl@0: else sl@0: { sl@0: log->WriteToLogL(_L("Could not access variables because section does not exist")); sl@0: } sl@0: CleanupStack::PopAndDestroy(log); sl@0: } sl@0: sl@0: /** sl@0: Gets the plugin name sl@0: @return The Plugin name. sl@0: */ sl@0: const TDesC& CTestMWsIniFile::PluginName() const sl@0: { sl@0: return KTestPluginName; sl@0: }