usbclasses/usbobexclasscontroller/tsrc/UsbObexClassControllerTest/src/UsbObexClassControllerTest.cpp
branchRCL_3
changeset 24 e02eb84a14d2
parent 22 5b2a402e96ac
equal deleted inserted replaced
23:25fce757be94 24:e02eb84a14d2
       
     1 /*
       
     2 * Copyright (c) 2010 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 "UsbObexClassControllerTest.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 // CUsbObexClassControllerTest::CUsbObexClassControllerTest
       
    79 // C++ default constructor can NOT contain any code, that
       
    80 // might leave.
       
    81 // -----------------------------------------------------------------------------
       
    82 //
       
    83 CUsbObexClassControllerTest::CUsbObexClassControllerTest( 
       
    84     CTestModuleIf& aTestModuleIf ):
       
    85         CScriptBase( aTestModuleIf )
       
    86     {
       
    87     }
       
    88 
       
    89 // -----------------------------------------------------------------------------
       
    90 // CUsbObexClassControllerTest::ConstructL
       
    91 // Symbian 2nd phase constructor can leave.
       
    92 // -----------------------------------------------------------------------------
       
    93 //
       
    94 void CUsbObexClassControllerTest::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(KUsbObexClassControllerTestLogFileWithTitle, &title);
       
   122         }
       
   123     else
       
   124         {
       
   125         logFileName.Copy(KUsbObexClassControllerTestLogFile);
       
   126         }
       
   127 
       
   128     iLog = CStifLogger::NewL( KUsbObexClassControllerTestLogPath, 
       
   129                           logFileName,
       
   130                           CStifLogger::ETxt,
       
   131                           CStifLogger::EFile,
       
   132                           EFalse );
       
   133     
       
   134     SendTestClassVersion();
       
   135     }
       
   136 
       
   137 // -----------------------------------------------------------------------------
       
   138 // CUsbObexClassControllerTest::NewL
       
   139 // Two-phased constructor.
       
   140 // -----------------------------------------------------------------------------
       
   141 //
       
   142 CUsbObexClassControllerTest* CUsbObexClassControllerTest::NewL( 
       
   143     CTestModuleIf& aTestModuleIf )
       
   144     {
       
   145     CUsbObexClassControllerTest* self = new (ELeave) CUsbObexClassControllerTest( aTestModuleIf );
       
   146 
       
   147     CleanupStack::PushL( self );
       
   148     self->ConstructL();
       
   149     CleanupStack::Pop();
       
   150 
       
   151     return self;
       
   152 
       
   153     }
       
   154 
       
   155 // Destructor
       
   156 CUsbObexClassControllerTest::~CUsbObexClassControllerTest()
       
   157     { 
       
   158 
       
   159     // Delete resources allocated from test methods
       
   160     Delete();
       
   161 
       
   162     // Delete logger
       
   163     delete iLog; 
       
   164 
       
   165     }
       
   166 
       
   167 //-----------------------------------------------------------------------------
       
   168 // CUsbObexClassControllerTest::SendTestClassVersion
       
   169 // Method used to send version of test class
       
   170 //-----------------------------------------------------------------------------
       
   171 //
       
   172 void CUsbObexClassControllerTest::SendTestClassVersion()
       
   173 	{
       
   174 	TVersion moduleVersion;
       
   175 	moduleVersion.iMajor = TEST_CLASS_VERSION_MAJOR;
       
   176 	moduleVersion.iMinor = TEST_CLASS_VERSION_MINOR;
       
   177 	moduleVersion.iBuild = TEST_CLASS_VERSION_BUILD;
       
   178 	
       
   179 	TFileName moduleName;
       
   180 	moduleName = _L("UsbObexClassControllerTest.dll");
       
   181 
       
   182 	TBool newVersionOfMethod = ETrue;
       
   183 	TestModuleIf().SendTestModuleVersion(moduleVersion, moduleName, newVersionOfMethod);
       
   184 	}
       
   185 
       
   186 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
   187 
       
   188 // -----------------------------------------------------------------------------
       
   189 // LibEntryL is a polymorphic Dll entry point.
       
   190 // Returns: CScriptBase: New CScriptBase derived object
       
   191 // -----------------------------------------------------------------------------
       
   192 //
       
   193 EXPORT_C CScriptBase* LibEntryL( 
       
   194     CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
       
   195     {
       
   196 
       
   197     return ( CScriptBase* ) CUsbObexClassControllerTest::NewL( aTestModuleIf );
       
   198 
       
   199     }
       
   200 
       
   201 
       
   202 //  End of File