usbengines/usblocodplugin/tsrc/USBLocodPluginTest/src/USBLocodPluginTest.cpp
changeset 35 9d8b04ca6939
parent 0 1e05558e2206
child 87 18fe5224f0dc
equal deleted inserted replaced
34:7858bc6ead78 35:9d8b04ca6939
       
     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 "USBLocodPluginTest.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 // CUSBLocodPluginTest::CUSBLocodPluginTest
       
    79 // C++ default constructor can NOT contain any code, that
       
    80 // might leave.
       
    81 // -----------------------------------------------------------------------------
       
    82 //
       
    83 CUSBLocodPluginTest::CUSBLocodPluginTest( 
       
    84     CTestModuleIf& aTestModuleIf ):
       
    85         CScriptBase( aTestModuleIf )
       
    86     {
       
    87     }
       
    88 
       
    89 // -----------------------------------------------------------------------------
       
    90 // CUSBLocodPluginTest::ConstructL
       
    91 // Symbian 2nd phase constructor can leave.
       
    92 // -----------------------------------------------------------------------------
       
    93 //
       
    94 void CUSBLocodPluginTest::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(KUSBLocodPluginTestLogFileWithTitle, &title);
       
   122         }
       
   123     else
       
   124         {
       
   125         logFileName.Copy(KUSBLocodPluginTestLogFile);
       
   126         }
       
   127 
       
   128     iLog = CStifLogger::NewL( KUSBLocodPluginTestLogPath, 
       
   129                           logFileName,
       
   130                           CStifLogger::ETxt,
       
   131                           CStifLogger::EFile,
       
   132                           EFalse );
       
   133     
       
   134     SendTestClassVersion();
       
   135     
       
   136     iDeleteProperty = EFalse;    
       
   137     iSelectedPersProperty = new ( ELeave )RProperty();        
       
   138     TInt res = iSelectedPersProperty -> Attach( KPSUidUsbWatcher, KUsbWatcherSelectedPersonality );
       
   139     switch ( res )
       
   140         {
       
   141         case KErrNotFound:
       
   142             {
       
   143             STIF_LOG( "[STIF_LOG] Define" );
       
   144             iDeleteProperty = ETrue;
       
   145             User::LeaveIfError( RProperty::Define( KPSUidUsbWatcher, KUsbWatcherSelectedPersonality, RProperty::EInt ) );
       
   146             break;
       
   147             }
       
   148         case KErrNone:
       
   149             break;
       
   150         default:
       
   151             {
       
   152             STIF_LOG( "[STIF_LOG] RProperty::Attach error" );
       
   153             User::Leave( res );
       
   154             }
       
   155         }
       
   156       
       
   157     iLocodBearerPluginObs = CLocodBearerPluginObs::NewL( iLog );  
       
   158     TLocodBearerPluginParams initParams( TUid::Uid( KFeatureIdUsb ), *iLocodBearerPluginObs );
       
   159     iLocodBearerPlugin = CLocodBearerPlugin::NewL( initParams );
       
   160     }
       
   161 
       
   162 // -----------------------------------------------------------------------------
       
   163 // CUSBLocodPluginTest::NewL
       
   164 // Two-phased constructor.
       
   165 // -----------------------------------------------------------------------------
       
   166 //
       
   167 CUSBLocodPluginTest* CUSBLocodPluginTest::NewL( 
       
   168     CTestModuleIf& aTestModuleIf )
       
   169     {
       
   170     CUSBLocodPluginTest* self = new (ELeave) CUSBLocodPluginTest( aTestModuleIf );
       
   171 
       
   172     CleanupStack::PushL( self );
       
   173     self->ConstructL();
       
   174     CleanupStack::Pop();
       
   175 
       
   176     return self;
       
   177 
       
   178     }
       
   179 
       
   180 // Destructor
       
   181 CUSBLocodPluginTest::~CUSBLocodPluginTest()
       
   182     { 
       
   183 
       
   184     // Delete resources allocated from test methods
       
   185     Delete();
       
   186 
       
   187     // Delete logger
       
   188     delete iLog; 
       
   189 
       
   190     }
       
   191 
       
   192 //-----------------------------------------------------------------------------
       
   193 // CUSBLocodPluginTest::SendTestClassVersion
       
   194 // Method used to send version of test class
       
   195 //-----------------------------------------------------------------------------
       
   196 //
       
   197 void CUSBLocodPluginTest::SendTestClassVersion()
       
   198 	{
       
   199 	TVersion moduleVersion;
       
   200 	moduleVersion.iMajor = TEST_CLASS_VERSION_MAJOR;
       
   201 	moduleVersion.iMinor = TEST_CLASS_VERSION_MINOR;
       
   202 	moduleVersion.iBuild = TEST_CLASS_VERSION_BUILD;
       
   203 	
       
   204 	TFileName moduleName;
       
   205 	moduleName = _L("USBLocodPluginTest.dll");
       
   206 
       
   207 	TBool newVersionOfMethod = ETrue;
       
   208 	TestModuleIf().SendTestModuleVersion(moduleVersion, moduleName, newVersionOfMethod);
       
   209 	}
       
   210 
       
   211 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
   212 
       
   213 // -----------------------------------------------------------------------------
       
   214 // LibEntryL is a polymorphic Dll entry point.
       
   215 // Returns: CScriptBase: New CScriptBase derived object
       
   216 // -----------------------------------------------------------------------------
       
   217 //
       
   218 EXPORT_C CScriptBase* LibEntryL( 
       
   219     CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
       
   220     {
       
   221 
       
   222     return ( CScriptBase* ) CUSBLocodPluginTest::NewL( aTestModuleIf );
       
   223 
       
   224     }
       
   225 
       
   226 
       
   227 //  End of File