serviceproviders/sapi_messaging/tsrc/testing/tmessagingtest/change_status_message/src/change_status_messageblocks.cpp
author Pat Downey <patrick.downey@nokia.com>
Fri, 03 Jul 2009 15:51:24 +0100
changeset 19 989d2f495d90
child 33 50974a8b132e
permissions -rw-r--r--
Revision: 200923 Kit: 200925

/*
* 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 the License "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:   ?Description
*
*/




// INCLUDE FILES
#include <e32svr.h>
#include <e32cons.h>
#include <e32base.h>
#include <StifParser.h>
#include <Stiftestinterface.h>
#include "change_status_message.h"
//#include <senduiconsts.h>
#include <CMsvAttachment.h>
#include "messagingservice.h"
#include "messageheader.h"

// EXTERNAL DATA STRUCTURES
//extern  ?external_data;

// EXTERNAL FUNCTION PROTOTYPES  
//extern ?external_function( ?arg_type,?arg_type );

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

// MACROS
//#define ?macro ?macro_def

// LOCAL CONSTANTS AND MACROS
//const ?type ?constant_var = ?constant;
//#define ?macro_name ?macro_def

// MODULE DATA STRUCTURES
//enum ?declaration
//typedef ?declaration

// LOCAL FUNCTION PROTOTYPES
//?type ?function_name( ?arg_type, ?arg_type );

// FORWARD DECLARATIONS
//class ?FORWARD_CLASSNAME;

// ============================= LOCAL FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// ?function_name ?description.
// ?description
// Returns: ?value_1: ?description
//          ?value_n: ?description_line1
//                    ?description_line2
// -----------------------------------------------------------------------------
//
/*
?type ?function_name(
    ?arg_type arg,  // ?description
    ?arg_type arg)  // ?description
    {

    ?code  // ?comment

    // ?comment
    ?code
    }
*/

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// Cchange_status_message::Delete
// Delete here all resources allocated and opened from test methods. 
// Called from destructor. 
// -----------------------------------------------------------------------------
//
void Cchange_status_message::Delete() 
    {

    }

// -----------------------------------------------------------------------------
// Cchange_status_message::RunMethodL
// Run specified method. Contains also table of test mothods and their names.
// -----------------------------------------------------------------------------
//
TInt Cchange_status_message::RunMethodL( 
    CStifItemParser& aItem ) 
    {

    static TStifFunctionInfo const KFunctions[] =
        {  
        // Copy this line for every implemented function.
        // First string is the function name used in TestScripter script file.
        // Second is the actual implementation member function. 
        ENTRY( "test_1", Cchange_status_message::Test1L ),

        };

    const TInt count = sizeof( KFunctions ) / 
                        sizeof( TStifFunctionInfo );

    return RunInternalL( KFunctions, count, aItem );

    }

// -----------------------------------------------------------------------------
// Cchange_status_message::ExampleL
// Example test method function.
// (other items were commented in a header).
// -----------------------------------------------------------------------------
//

TInt Cchange_status_message::messageid_func(CStifItemParser& aItem,TInt& id)
  {
     TInt err = aItem.GetNextInt(id);
     if(err)
     {
      ////iLog->Log(_L("Failed to Get message id"));
      return KErrGeneral;
     };
     return KErrNone;
  }   

TInt Cchange_status_message::status_func(CStifItemParser& aItem,TInt& status)     
  {
     TInt err = aItem.GetNextInt(status);  
     if(err)
     {
      //iLog->Log(_L("Failed to Get status "));
      return KErrGeneral;
     };
     return KErrNone;
  }   

TInt Cchange_status_message::flag_func(CStifItemParser& aItem,TInt& flag)     
  {
     TInt err = aItem.GetNextInt(flag);  
     if(err)
     {
      ////iLog->Log(_L("Failed to Get status flag or err code "));
      return KErrGeneral;
     };
     return KErrNone;
  }   


TInt Cchange_status_message::Test1L( CStifItemParser& aItem )
    {

	__UHEAP_MARK;
	
	TInt id,status,flag;
	TMsvId iD;
	
	TInt err1 = messageid_func(aItem,id);  
    if(err1)
	{
	 return KErrGeneral;
	}	
    
    if(id == 1)
    {
     CMessagingService* mservice = (CMessagingService*)CMessagingService::NewL(); 	
 	 CleanupStack::PushL(mservice);
 	 CFilterParamInfo* mfilter = CFilterParamInfo::NewL();
 	 CMsvEntrySelection* marray = NULL ;
     TRAPD(err,mservice->GetIdListL(mfilter,0,NULL ,marray));
     TInt index = 0;
     CMessageHeader* headerarr = NULL;
     mservice->GetNextHeaderL(mfilter, marray, index, NULL, headerarr);  
	 TMsvId message_id;
	 headerarr->GetMessageId(message_id);
	 iD = message_id;
     delete headerarr; 
     delete marray;
     delete mfilter;                    
     CleanupStack::PopAndDestroy(mservice);    
    }
    else
    {
     iD = id;                        // message id specified
    } 
	
	err1 = status_func(aItem,status);      
    if(err1)
	{
	 return KErrGeneral;
	}	
	
	TMessageStatusFlag State = (TMessageStatusFlag)status;
	
	err1 = flag_func(aItem,flag);          
    if(err1)
	{
	 return KErrGeneral;
	}	
	
	
	CMessagingService* service = (CMessagingService*)CMessagingService::NewL();
	CleanupStack::PushL(service);
    
    TRAPD(err, service->ChangeStatusL(iD,State,flag,NULL)); 
         
    if(err == 0)
     {     
 
          CFilterParamInfo*  filter = CFilterParamInfo::NewL();
          filter->SetMessageIdFilter(iD);	
     
	      CMsvEntrySelection* array = NULL ;	      
	      TRAPD(error,service->GetIdListL(filter,0,NULL ,array));
	      
	      TInt index = 0;
	      CMessageHeader* headers = NULL;
		  service->GetNextHeaderL(filter, array, index, NULL, headers);
		  
	      TBool fl;
	      headers->GetUnreadFlag(fl);

	      TInt fla = fl;
	      
	      delete headers;
	      delete array;
	      delete filter;
	      CleanupStack::PopAndDestroy(service);
	      
	      if((status == 0) && (flag == 1))
          {
		      if(fla == 32)
		      {     
		        __UHEAP_MARKEND;
		        return KErrNone;
		      }
		      else
		      {
		        __UHEAP_MARKEND;  
		        return KErrGeneral;
		      } 
          }
	      else if((status == 0) && (flag == 0))
          { 
			  if(fla == 0)
		      {     
		        __UHEAP_MARKEND;
		        return KErrNone;
		      }
		      else
		      {
		        __UHEAP_MARKEND;  
		        return KErrGeneral;
		      } 
          }  
          else
          {			     
			__UHEAP_MARKEND;
			return KErrGeneral;  
          } 
     }  
     else
     {
       err1 = flag_func(aItem,flag);       // get err code from cfg
       if(err1)
	    {
	     return KErrGeneral;
	    }   
       
       CleanupStack::PopAndDestroy(service);
       
       if(err == flag)
       {
	     __UHEAP_MARKEND;
         return KErrNone;
       }
       else
       {
         __UHEAP_MARKEND;
         return KErrGeneral; 
       }  
     }    
  
  }

// -----------------------------------------------------------------------------
// Cchange_status_message::?member_function
// ?implementation_description
// (other items were commented in a header).
// -----------------------------------------------------------------------------
//
/*
TInt Cchange_status_message::?member_function(
   CItemParser& aItem )
   {

   ?code

   }
*/

// ========================== OTHER EXPORTED FUNCTIONS =========================
// None

//  End of File