smsprotocols/smsstack/smsprot/Test/TE_Smsprt/TE_ReceiveSMS.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 01:41:59 +0200
changeset 0 3553901f7fa8
child 14 7ef16719d8cb
permissions -rw-r--r--
Revision: 201005 Kit: 201005

// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "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:
//

/**
 @file
*/

#include "Te_SmsTestSteps.h"

CReceiveSMS::CReceiveSMS(RSocketServ &aSocketServer)
/** 
	Each test step initialises it's own name
*/
	{
	iSocketServer = &aSocketServer;
	}

/**
  Receive SMS Message
*/
TVerdict CReceiveSMS::doTestStepL()
	{	
#ifndef _DEBUG
    INFO_PRINTF1(_L("This test can only be run when the SMS Stack is in debug mode."));
#else   

	//Read from the INI file.  
	TInt timeout=10;
	GetIntFromConfig(ConfigSection(), _L("timeout"), timeout);
	
	
	TBool isThisADiskSpaceMonitorTest;
	GetBoolFromConfig(_L("DiskSpaceMonitor"), _L("diskSpaceMonitor"), isThisADiskSpaceMonitorTest);
	TBool isClientExpectingMessage;
	GetBoolFromConfig(ConfigSection(), _L("isClientExpectingMessage"), isClientExpectingMessage);
	
	//Disk SpaceMonitor tests are only run in DEBUG builds
	if(isThisADiskSpaceMonitorTest)
		{
#ifndef _DEBUG
		return TestStepResult();
#endif
		}
	
	if( isClientExpectingMessage && timeout < 40 )
		{
		// Change timeout to be 40 seconds
		timeout = 40;
		}

	INFO_PRINTF1(_L("Receiving SMS message..."));

	//Open the socket for receiving messages
	INFO_PRINTF1(_L("Opening socket and loading SMS Protocol"));
	RSocket socket;
	OpenSmsSocketL(*iSocketServer, socket, ESmsAddrRecvAny);

	//Message must be received in "timeout" else the test will fail	
	INFO_PRINTF2(_L("Wait for message (timeout: %d)..."), timeout);
	TBool messageReceived = TimedWaitForRecvL(socket, timeout*1000000);
	
	if(messageReceived)
		{
		INFO_PRINTF1(_L("Message received!"));		
		}
	
	//Set the result to "fail" if no message is received in the specified time
	if(messageReceived && isClientExpectingMessage )
		{
		CSmsMessage *smsMessage=RecvSmsL(socket);	//Get the message from the STACK.
		CleanupStack::PushL(smsMessage);
		
		//Get the text from the ini file
		TPtrC messageText;
		GetStringFromConfig(ConfigSection(), _L("messageExpected"), messageText);

		if(messageText!=_L(""))
			{
			TestSmsContentsL(smsMessage,messageText);
			}
		
		CleanupStack::PopAndDestroy(smsMessage);
		}
		
	else if((!messageReceived  &&  isClientExpectingMessage) ||
		    (messageReceived  &&  !isClientExpectingMessage))
		{
		if( !messageReceived  &&  isClientExpectingMessage )
			{
			INFO_PRINTF1(_L("Message expected - not received"));
			}
		TEST(EFalse);
		}
		
	socket.Close();
#endif
	return TestStepResult();
	}
	
//-----------------------------------------------------------------------------