bluetoothengine/btnotif/tsrc/BtNotifApiTest/src/BtNotifApiTest.cpp
branchRCL_3
changeset 55 613943a21004
parent 54 0ba996a9b75d
child 56 9386f31cc85b
equal deleted inserted replaced
54:0ba996a9b75d 55:613943a21004
     1 /*
       
     2 * Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <Stiftestinterface.h>
       
    23 #include "BtNotifApiTest.h"
       
    24 #include <SettingServerClient.h>
       
    25 
       
    26 // EXTERNAL DATA STRUCTURES
       
    27 //extern  ?external_data;
       
    28 
       
    29 // EXTERNAL FUNCTION PROTOTYPES  
       
    30 //extern ?external_function( ?arg_type,?arg_type );
       
    31 
       
    32 // CONSTANTS
       
    33 //const ?type ?constant_var = ?constant;
       
    34 
       
    35 // MACROS
       
    36 //#define ?macro ?macro_def
       
    37 
       
    38 // LOCAL CONSTANTS AND MACROS
       
    39 //const ?type ?constant_var = ?constant;
       
    40 //#define ?macro_name ?macro_def
       
    41 
       
    42 // MODULE DATA STRUCTURES
       
    43 //enum ?declaration
       
    44 //typedef ?declaration
       
    45 
       
    46 // LOCAL FUNCTION PROTOTYPES
       
    47 //?type ?function_name( ?arg_type, ?arg_type );
       
    48 
       
    49 // FORWARD DECLARATIONS
       
    50 //class ?FORWARD_CLASSNAME;
       
    51 
       
    52 // ============================= LOCAL FUNCTIONS ===============================
       
    53 
       
    54 // -----------------------------------------------------------------------------
       
    55 // ?function_name ?description.
       
    56 // ?description
       
    57 // Returns: ?value_1: ?description
       
    58 //          ?value_n: ?description_line1
       
    59 //                    ?description_line2
       
    60 // -----------------------------------------------------------------------------
       
    61 //
       
    62 /*
       
    63 ?type ?function_name(
       
    64     ?arg_type arg,  // ?description
       
    65     ?arg_type arg)  // ?description
       
    66     {
       
    67 
       
    68     ?code  // ?comment
       
    69 
       
    70     // ?comment
       
    71     ?code
       
    72     }
       
    73 */
       
    74 
       
    75 // ============================ MEMBER FUNCTIONS ===============================
       
    76 
       
    77 // -----------------------------------------------------------------------------
       
    78 // CBtNotifApiTest::CBtNotifApiTest
       
    79 // C++ default constructor can NOT contain any code, that
       
    80 // might leave.
       
    81 // -----------------------------------------------------------------------------
       
    82 //
       
    83 CBtNotifApiTest::CBtNotifApiTest( 
       
    84     CTestModuleIf& aTestModuleIf ):
       
    85         CScriptBase( aTestModuleIf )
       
    86     {
       
    87     }
       
    88 
       
    89 // -----------------------------------------------------------------------------
       
    90 // CBtNotifApiTest::ConstructL
       
    91 // Symbian 2nd phase constructor can leave.
       
    92 // -----------------------------------------------------------------------------
       
    93 //
       
    94 void CBtNotifApiTest::ConstructL()
       
    95     {
       
    96     //Read logger settings to check whether test case name is to be
       
    97     //appended to log file name.
       
    98     RSettingServer settingServer;
       
    99     TInt ret = settingServer.Connect();
       
   100     if(ret != KErrNone)
       
   101         {
       
   102         User::Leave(ret);
       
   103         }
       
   104     // Struct to StifLogger settigs.
       
   105     TLoggerSettings loggerSettings; 
       
   106     // Parse StifLogger defaults from STIF initialization file.
       
   107     ret = settingServer.GetLoggerSettings(loggerSettings);
       
   108     if(ret != KErrNone)
       
   109         {
       
   110         User::Leave(ret);
       
   111         } 
       
   112     // Close Setting server session
       
   113     settingServer.Close();
       
   114 
       
   115     TFileName logFileName;
       
   116     
       
   117     if(loggerSettings.iAddTestCaseTitle)
       
   118         {
       
   119         TName title;
       
   120         TestModuleIf().GetTestCaseTitleL(title);
       
   121         logFileName.Format(KBtNotifApiTestLogFileWithTitle, &title);
       
   122         }
       
   123     else
       
   124         {
       
   125         logFileName.Copy(KBtNotifApiTestLogFile);
       
   126         }
       
   127 
       
   128     iLog = CStifLogger::NewL( KBtNotifApiTestLogPath, 
       
   129                           logFileName,
       
   130                           CStifLogger::ETxt,
       
   131                           CStifLogger::EFile,
       
   132                           EFalse );
       
   133     
       
   134     SendTestClassVersion();
       
   135     
       
   136     iNotifier = new ( ELeave ) RNotifier();
       
   137     iBtSettings = CBtSettingsObserver::NewL();
       
   138     iBtEngDevManObserver = CBtEngDevManObserver::NewL();
       
   139     iBtDeviceArray = new ( ELeave ) CBTDeviceArray( 1 );
       
   140     
       
   141     iTestDevice = CBTDevice::NewL();    
       
   142     }
       
   143 
       
   144 // -----------------------------------------------------------------------------
       
   145 // CBtNotifApiTest::NewL
       
   146 // Two-phased constructor.
       
   147 // -----------------------------------------------------------------------------
       
   148 //
       
   149 CBtNotifApiTest* CBtNotifApiTest::NewL( 
       
   150     CTestModuleIf& aTestModuleIf )
       
   151     {
       
   152     CBtNotifApiTest* self = new (ELeave) CBtNotifApiTest( aTestModuleIf );
       
   153 
       
   154     CleanupStack::PushL( self );
       
   155     self->ConstructL();
       
   156     CleanupStack::Pop();
       
   157 
       
   158     return self;
       
   159 
       
   160     }
       
   161 
       
   162 // Destructor
       
   163 CBtNotifApiTest::~CBtNotifApiTest()
       
   164     { 
       
   165 
       
   166     // Delete resources allocated from test methods
       
   167     Delete();
       
   168 
       
   169     // Delete logger
       
   170     delete iLog; 
       
   171 
       
   172     }
       
   173 
       
   174 //-----------------------------------------------------------------------------
       
   175 // CBtNotifApiTest::SendTestClassVersion
       
   176 // Method used to send version of test class
       
   177 //-----------------------------------------------------------------------------
       
   178 //
       
   179 void CBtNotifApiTest::SendTestClassVersion()
       
   180 	{
       
   181 	TVersion moduleVersion;
       
   182 	moduleVersion.iMajor = TEST_CLASS_VERSION_MAJOR;
       
   183 	moduleVersion.iMinor = TEST_CLASS_VERSION_MINOR;
       
   184 	moduleVersion.iBuild = TEST_CLASS_VERSION_BUILD;
       
   185 	
       
   186 	TFileName moduleName;
       
   187 	moduleName = _L("BtNotifApiTest.dll");
       
   188 
       
   189 	TBool newVersionOfMethod = ETrue;
       
   190 	TestModuleIf().SendTestModuleVersion(moduleVersion, moduleName, newVersionOfMethod);
       
   191 	}
       
   192 
       
   193 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
   194 
       
   195 // -----------------------------------------------------------------------------
       
   196 // LibEntryL is a polymorphic Dll entry point.
       
   197 // Returns: CScriptBase: New CScriptBase derived object
       
   198 // -----------------------------------------------------------------------------
       
   199 //
       
   200 EXPORT_C CScriptBase* LibEntryL( 
       
   201     CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
       
   202     {
       
   203 
       
   204     return ( CScriptBase* ) CBtNotifApiTest::NewL( aTestModuleIf );
       
   205 
       
   206     }
       
   207 
       
   208 
       
   209 //  End of File