mmappfw_plat/playlist_engine_api/tsrc/playlistenginetest/src/playlistenginetest.cpp
changeset 0 a2952bb97e68
equal deleted inserted replaced
-1:000000000000 0:a2952bb97e68
       
     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: playlistenginetest implementation for STIF Test Framework TestScripter.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <Stiftestinterface.h>
       
    22 #include "playlistenginetest.h"
       
    23 #include <SettingServerClient.h>
       
    24 
       
    25 
       
    26 
       
    27 // ============================ MEMBER FUNCTIONS ===============================
       
    28 
       
    29 // -----------------------------------------------------------------------------
       
    30 // Cplaylistenginetest::Cplaylistenginetest
       
    31 // C++ default constructor can NOT contain any code, that
       
    32 // might leave.
       
    33 // -----------------------------------------------------------------------------
       
    34 //
       
    35 Cplaylistenginetest::Cplaylistenginetest( 
       
    36     CTestModuleIf& aTestModuleIf ):
       
    37         CScriptBase( aTestModuleIf )
       
    38     {
       
    39     }
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // Cplaylistenginetest::ConstructL
       
    43 // Symbian 2nd phase constructor can leave.
       
    44 // -----------------------------------------------------------------------------
       
    45 //
       
    46 void Cplaylistenginetest::ConstructL()
       
    47     {
       
    48     //Read logger settings to check whether test case name is to be
       
    49     //appended to log file name.
       
    50     RSettingServer settingServer;
       
    51     TInt ret = settingServer.Connect();
       
    52     if(ret != KErrNone)
       
    53         {
       
    54         User::Leave(ret);
       
    55         }
       
    56     // Struct to StifLogger settigs.
       
    57     TLoggerSettings loggerSettings; 
       
    58     // Parse StifLogger defaults from STIF initialization file.
       
    59     ret = settingServer.GetLoggerSettings(loggerSettings);
       
    60     if(ret != KErrNone)
       
    61         {
       
    62         User::Leave(ret);
       
    63         } 
       
    64     // Close Setting server session
       
    65     settingServer.Close();
       
    66 
       
    67     TFileName logFileName;
       
    68     
       
    69     if(loggerSettings.iAddTestCaseTitle)
       
    70         {
       
    71         TName title;
       
    72         TestModuleIf().GetTestCaseTitleL(title);
       
    73         logFileName.Format(KplaylistenginetestLogFileWithTitle, &title);
       
    74         }
       
    75     else
       
    76         {
       
    77         logFileName.Copy(KplaylistenginetestLogFile);
       
    78         }
       
    79 
       
    80     iLog = CStifLogger::NewL( KplaylistenginetestLogPath, 
       
    81                           logFileName,
       
    82                           CStifLogger::ETxt,
       
    83                           CStifLogger::EFile,
       
    84                           EFalse );
       
    85     
       
    86     SendTestClassVersion();
       
    87     }
       
    88 
       
    89 // -----------------------------------------------------------------------------
       
    90 // Cplaylistenginetest::NewL
       
    91 // Two-phased constructor.
       
    92 // -----------------------------------------------------------------------------
       
    93 //
       
    94 Cplaylistenginetest* Cplaylistenginetest::NewL( 
       
    95     CTestModuleIf& aTestModuleIf )
       
    96     {
       
    97     Cplaylistenginetest* self = new (ELeave) Cplaylistenginetest( aTestModuleIf );
       
    98 
       
    99     CleanupStack::PushL( self );
       
   100     self->ConstructL();
       
   101     CleanupStack::Pop();
       
   102 
       
   103     return self;
       
   104 
       
   105     }
       
   106 
       
   107 // Destructor
       
   108 Cplaylistenginetest::~Cplaylistenginetest()
       
   109     { 
       
   110 
       
   111     // Delete resources allocated from test methods
       
   112     Delete();
       
   113 
       
   114     // Delete logger
       
   115     delete iLog; 
       
   116 
       
   117     }
       
   118 
       
   119 //-----------------------------------------------------------------------------
       
   120 // Cplaylistenginetest::SendTestClassVersion
       
   121 // Method used to send version of test class
       
   122 //-----------------------------------------------------------------------------
       
   123 //
       
   124 void Cplaylistenginetest::SendTestClassVersion()
       
   125 	{
       
   126 	TVersion moduleVersion;
       
   127 	moduleVersion.iMajor = TEST_CLASS_VERSION_MAJOR;
       
   128 	moduleVersion.iMinor = TEST_CLASS_VERSION_MINOR;
       
   129 	moduleVersion.iBuild = TEST_CLASS_VERSION_BUILD;
       
   130 	
       
   131 	TFileName moduleName;
       
   132 	moduleName = _L("playlistenginetest.dll");
       
   133 
       
   134 	TBool newVersionOfMethod = ETrue;
       
   135 	TestModuleIf().SendTestModuleVersion(moduleVersion, moduleName, newVersionOfMethod);
       
   136 	}
       
   137 
       
   138 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
   139 
       
   140 void Cplaylistenginetest::HandlePlaylistL(CMPXMedia* /*aPlaylist*/,
       
   141     	                                     const TInt aError,
       
   142     	                                     const TBool /*aCompleted*/) 
       
   143 	{
       
   144 	 iLog->Log(_L("Cplaylistenginetest::HandlePlaylistL returned: %d"),aError);  
       
   145 	}
       
   146     	
       
   147  void Cplaylistenginetest::HandlePlaylistL(const TDesC& /*aPlaylistUri*/,
       
   148     	                                     const TInt aError) 
       
   149 	 {
       
   150 	 iLog->Log(_L("Cplaylistenginetest::HandlePlaylistL returned: %d"),aError);  
       
   151 	 }
       
   152     	
       
   153  void Cplaylistenginetest::HandlePluginHandlerEvent(TPluginHandlerEvents /*aEvent*/, const TUid& /*aPluginUid*/,
       
   154         TBool /*aLoaded*/, TInt /*aData*/)
       
   155 	 {
       
   156 	 iLog->Log(_L("Cplaylistenginetest::HandlePluginHandlerEvent begin:"));  
       
   157 	 }
       
   158 // -----------------------------------------------------------------------------
       
   159 // LibEntryL is a polymorphic Dll entry point.
       
   160 // Returns: CScriptBase: New CScriptBase derived object
       
   161 // -----------------------------------------------------------------------------
       
   162 //
       
   163 EXPORT_C CScriptBase* LibEntryL( 
       
   164     CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
       
   165     {
       
   166 
       
   167     return ( CScriptBase* ) Cplaylistenginetest::NewL( aTestModuleIf );
       
   168 
       
   169     }
       
   170 
       
   171 
       
   172 //  End of File