wvsettings20/tsrc/basic/private/inc/wvsapsettingstest.h
author Fionntina Carville <fionntinac@symbian.org>
Mon, 15 Nov 2010 11:27:49 +0000
branchRCL_3
changeset 22 df9aab66f73e
parent 0 094583676ce7
permissions -rw-r--r--
Bug 3539. Update localisation mappings.

/*
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  wvsapsettingstest test module.
*
*/



#ifndef WVSAPSETTINGSTEST_H
#define WVSAPSETTINGSTEST_H

// INCLUDES
#include "StifTestModule.h"
#include <StifLogger.h>

//header files needed for the test cases
#include <CIMPSSAPSettings.h>
#include <CIMPSSAPSettingsStore.h>

#include "WVSAPSettingsObserverTestCases.h"

// CONSTANTS
//const ?type ?constant_var = ?constant;

// MACROS
//#define ?macro ?macro_def

// Logging path
_LIT( KwvsapsettingstestLogPath, "\\logs\\testframework\\wvsapsettingstest\\" );
// Log file
_LIT( KwvsapsettingstestLogFile, "wvsapsettingstest.txt" );
_LIT( KwvsapsettingstestLogFileWithTitle, "wvsapsettingstest_[%S].txt" );

#define GETPTR &
#define ENTRY(str,func) {_S(str), GETPTR func,0,0,0}
#define FUNCENTRY(func) {_S(#func), GETPTR func,0,0,0}
#define OOM_ENTRY(str,func,a,b,c) {_S(str), GETPTR func,a,b,c}
#define OOM_FUNCENTRY(func,a,b,c) {_S(#func), GETPTR func,a,b,c}

// FUNCTION PROTOTYPES
//?type ?function_name(?arg_list);

// FORWARD DECLARATIONS
//class ?FORWARD_CLASSNAME;
class Cwvsapsettingstest;

// DATA TYPES
//enum ?declaration
//typedef ?declaration
//extern ?data_type;
// A typedef for function that does the actual testing,
// function is a type
// TInt Cwvsapsettingstest::<NameOfFunction> ( TTestResult& aResult )
typedef TInt ( Cwvsapsettingstest::* TestFunction )( TTestResult& );
//typedef TInt (WVSAPSettingsObserverTestCases:: * TestFunction)(TTestResult&);

// CLASS DECLARATION

/**
*  An internal structure containing a test case name and
*  the pointer to function doing the test
*
*  @lib ?library
*  @since ?Series60_version
*/
class TCaseInfoInternal
    {
    public:
        const TText*    iCaseName;
        TestFunction    iMethod;
        TBool           iIsOOMTest;
        TInt            iFirstMemoryAllocation;
        TInt            iLastMemoryAllocation;
    };

// CLASS DECLARATION

/**
*  A structure containing a test case name and
*  the pointer to function doing the test
*
*  @lib ?library
*  @since ?Series60_version
*/
class TCaseInfo
    {
    public:
        TPtrC iCaseName;
        TestFunction iMethod;
        TBool           iIsOOMTest;
        TInt            iFirstMemoryAllocation;
        TInt            iLastMemoryAllocation;

        TCaseInfo( const TText* a ) : iCaseName( ( TText* ) a )
            {
            };

    };


// CLASS DECLARATION

/**
*  This a wvsapsettingstest class.
*  ?other_description_lines
*
*  @lib ?library
*  @since ?Series60_version
*/
NONSHARABLE_CLASS( Cwvsapsettingstest ) : public CTestModuleBase
    {
public:  // Constructors and destructor


    /**
    * Two-phased constructor.
    */
    static Cwvsapsettingstest* NewL();

    /**
    * Destructor.
    */
    virtual ~Cwvsapsettingstest();
    //~Cwvsapsettingstest();

public: // New functions

    /**
    * ?member_description.
    * @since ?Series60_version
    * @param ?arg1 ?description
    * @return ?description
    */
    //?type ?member_function( ?type ?arg1 );

public: // Functions from base classes

    /**
    * From CTestModuleBase InitL is used to initialize the
    *       wvsapsettingstest. It is called once for every instance of
    *       TestModulewvsapsettingstest after its creation.
    * @since ?Series60_version
    * @param aIniFile Initialization file for the test module (optional)
    * @param aFirstTime Flag is true when InitL is executed for first
    *               created instance of wvsapsettingstest.
    * @return Symbian OS error code
    */
    TInt InitL( TFileName& aIniFile, TBool aFirstTime );

    /**
    * From CTestModuleBase GetTestCasesL is used to inquiry test cases
    *   from wvsapsettingstest.
    * @since ?Series60_version
    * @param aTestCaseFile Test case file (optional)
    * @param aTestCases  Array of TestCases returned to test framework
    * @return Symbian OS error code
    */
    TInt GetTestCasesL( const TFileName& aTestCaseFile,
                        RPointerArray<TTestCaseInfo>& aTestCases );

    /**
    * From CTestModuleBase RunTestCaseL is used to run an individual
    *   test case.
    * @since ?Series60_version
    * @param aCaseNumber Test case number
    * @param aTestCaseFile Test case file (optional)
    * @param aResult Test case result returned to test framework (PASS/FAIL)
    * @return Symbian OS error code (test case execution error, which is
    *           not reported in aResult parameter as test case failure).
    */
    TInt RunTestCaseL( const TInt aCaseNumber,
                       const TFileName& aTestCaseFile,
                       TTestResult& aResult );

    /**
    * From CTestModuleBase; OOMTestQueryL is used to specify is particular
    * test case going to be executed using OOM conditions
    * @param aTestCaseFile Test case file (optional)
    * @param aCaseNumber Test case number (optional)
    * @param aFailureType OOM failure type (optional)
    * @param aFirstMemFailure The first heap memory allocation failure value (optional)
    * @param aLastMemFailure The last heap memory allocation failure value (optional)
    * @return TBool
    */
    virtual TBool OOMTestQueryL( const TFileName& /* aTestCaseFile */,
                                 const TInt /* aCaseNumber */,
                                 TOOMFailureType& aFailureType,
                                 TInt& /* aFirstMemFailure */,
                                 TInt& /* aLastMemFailure */ );

    /**
    * From CTestModuleBase; OOMTestInitializeL may be used to initialize OOM
    * test environment
    * @param aTestCaseFile Test case file (optional)
    * @param aCaseNumber Test case number (optional)
    * @return None
    */
    virtual void OOMTestInitializeL( const TFileName& /* aTestCaseFile */,
                                     const TInt /* aCaseNumber */ );

    /**
    * From CTestModuleBase; OOMHandleWarningL
    * @param aTestCaseFile Test case file (optional)
    * @param aCaseNumber Test case number (optional)
    * @param aFailNextValue FailNextValue for OOM test execution (optional)
    * @return None
    *
    * User may add implementation for OOM test warning handling. Usually no
    * implementation is required.
    */
    virtual void OOMHandleWarningL( const TFileName& /* aTestCaseFile */,
                                    const TInt /* aCaseNumber */,
                                    TInt& /* aFailNextValue */ );

    /**
    * From CTestModuleBase; OOMTestFinalizeL may be used to finalize OOM
    * test environment
    * @param aTestCaseFile Test case file (optional)
    * @param aCaseNumber Test case number (optional)
    * @return None
    *
    */
    virtual void OOMTestFinalizeL( const TFileName& /* aTestCaseFile */,
                                   const TInt /* aCaseNumber */ );

protected:  // New functions

    /**
    * ?member_description.
    * @since ?Series60_version
    * @param ?arg1 ?description
    * @return ?description
    */
    //?type ?member_function( ?type ?arg1 );

protected:  // Functions from base classes

    /**
    * From ?base_class ?member_description
    */
    //?type ?member_function();

private:

    /**
    * C++ default constructor.
    */
    Cwvsapsettingstest();

    /**
    * By default Symbian 2nd phase constructor is private.
    */
    void ConstructL();

    // Prohibit copy constructor if not deriving from CBase.
    // ?classname( const ?classname& );
    // Prohibit assigment operator if not deriving from CBase.
    // ?classname& operator=( const ?classname& );

    /**
    * Function returning test case name and pointer to test case function.
    * @since ?Series60_version
    * @param aCaseNumber test case number
    * @return TCaseInfo
    */
    const TCaseInfo Case ( const TInt aCaseNumber ) const;

    /**
    * Actual Hardcoded test case functions are listed below.
    */
    //ADD NEW METHOD DEC HERE"

    /**
    * Printing test case.
    * @since ?Series60_version
    * @param aResult Test case result (PASS/FAIL)
    * @return Symbian OS error code (test case execution error
    *   that is not returned as test case result in aResult)
    */
    TInt PrintTest( TTestResult& aResult );

    /**
    * Printing loop test case.
    * @since ?Series60_version
    * @param aResult Test case result (PASS/FAIL)
    * @return Symbian OS error code (test case execution error
    *   that is not returned as test case result in aResult)
    */
    TInt LoopTest( TTestResult& aResult );
public: //test functions

    //TInt SetupOpenStoreL(TTestResult& aResult);

    TInt SetupEmptySAPL( TTestResult& aResult );

    TInt SetupPartiallyFilledSAPL( TTestResult& aResult );

    TInt SetupFullSAPL( TTestResult& aResult );

    // TEST METHODS
    TInt Test_DataSetAndGetL( TTestResult& aResult );

    TInt TestBrandProtection_StoreL( TTestResult& aResult );

    TInt TestBrandProtection_UpdateL( TTestResult& aResult );

    TInt TestBrandProtection_DeleteL( TTestResult& aResult );
    TInt TestLoginCountHandlingL( TTestResult& aResult );

    TInt TestLoginCountStorageL( TTestResult& aResult );

    TInt TestSAPContainerExternalizeInternalizeL( TTestResult& aResult );

    TInt TestSAPContainerPackUnpackL( TTestResult& aResult );

    TInt TestSAPContainerKeyValuePairsL( TTestResult& aResult );

    TInt TestSAPContainerCopyL( TTestResult& aResult );

    TInt TestPopulateSettingsListL( TTestResult& aResult );

    TInt TestIterateTroughSettingsListAscendL( TTestResult& aResult );

    TInt TestIterateTroughSettingsListDescendL( TTestResult& aResult );

    TInt TestObsForAddingSAP( TTestResult& aResult );
    TInt TestObsForRemoveSAP( TTestResult& aResult );

    // Teardown
    TInt Teardown();

public: //Installing the active scheduler
    void SetupSchedulerL();
    void CloseScheduler();

public: //Some utility functions

    //void SetupOpenFilledStore1L();
    //void SetupOpenFilledStore10L();

private:    // Data
    // Pointer to test (function) to be executed
    TestFunction iMethod;

    // Pointer to logger
    CStifLogger * iLog;

    // Normal logger
    CStifLogger* iStdLog;

    // Test case logger
    CStifLogger* iTCLog;

    // Flag saying if test case title should be added to log file name
    TBool iAddTestCaseTitleToLogName;

    // ?one_line_short_description_of_data
    //?data_declaration;

    // Reserved pointer for future extension
    //TAny* iReserved;

private:
    //needed to execute the test cases
    CIMPSSAPSettingsStore* iStore;

    CIMPSSAPSettings*   iSAP;
    CIMPSSAPSettings*	iTempSAP;
    CIMPSSAPSettings*	iTmpSAP;

    //CIMPSSAPSettingsList*  iList;

    WVSAPSettingsObserverTestCases *obstestitnf;

    TInt iStoredCount;
    TUint32 iTheNameUid;

    };

#endif      // WVSAPSETTINGSTEST_H

// End of File