networkprotocolmodules/suplprotocolmodule/SuplProtocol/test/src/mtlr21Step.cpp
changeset 0 9cfd9a3ee49c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/networkprotocolmodules/suplprotocolmodule/SuplProtocol/test/src/mtlr21Step.cpp	Tue Feb 02 01:50:39 2010 +0200
@@ -0,0 +1,204 @@
+// Copyright (c) 2005-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:
+// Example CTestStep derived implementation
+// 
+//
+
+/**
+ @file mtlr21Step.cpp
+ @internalTechnology
+*/
+#include "mtlr21Step.h"
+#include "te_suplprotocolsuitedefs.h"
+
+/**
+ Destructor
+ */
+Cmtlr21Step::~Cmtlr21Step()
+
+	{
+	}
+
+/**
+ Constructor
+ */
+Cmtlr21Step::Cmtlr21Step()
+	{
+	SetTestStepName(Kmtlr21Step);
+	}
+
+/**
+ @return - TVerdict code
+ Override of base class virtual
+ */
+TVerdict Cmtlr21Step::doTestStepPreambleL()
+	{
+	// Call base class method for pre test actions	
+	CTe_suplprotocolSuiteStepBase::doTestStepPreambleL();
+	 
+	TLbsNetProtocolModuleParams param(*iGatewayObserver);
+	iModule = CSuplGatewayInterface::NewL(reinterpret_cast<TAny*>(&param));
+	
+	// components for generating incoming SMS SUPL INIT
+	iSuplPush = CLbsSuplPush::NewL(ELbsSuplPushChannelSMS, *this);
+	iSuplInitGenerator = CSuplInitGenerator::NewL();
+
+	return TestStepResult();
+	}
+
+
+/** Perform Cmtlr21Step test step.
+This test verifies that the SUPL Protocol Module correctly handles 
+an MT-LR Network requested Locate Terminal Based sequence (assistance data
+delivered via an RRLP payload).
+
+@return TVerdict test result code
+*/
+TVerdict Cmtlr21Step::doTestStepL()
+	{
+	INFO_PRINTF1(_L("\t********************************************************************"));
+	INFO_PRINTF1(_L("\tMTLR rejected by user + connection created some time later)"));
+	INFO_PRINTF1(_L("\t********************************************************************"));
+	INFO_PRINTF1(_L("- START -"));	
+	
+	// Initiate MT-LR
+	// Generate received SUPL INIT message (test message content #0)
+	TPtr8 messagePtr(iReceiveBuffer.Des());
+	TInt err = iSuplInitGenerator->GenerateSuplInitL(0, messagePtr);
+	if (err != KErrNone)
+		{
+		SetTestStepResult(EFail);
+		return TestStepResult();
+		}
+
+	// Inject SUPL INIT using the SUPL Push API
+	INFO_PRINTF1(_L("\tLBS (SuplPush) -> OnSuplInit()"));
+	TLbsSuplPushRequestId reqId = 12345;
+	TPtrC8 message(messagePtr);
+	iSuplPush->SuplInit(reqId, message, 0);
+	
+	// Check Gateway receives a Privacy request and Location Request
+	INFO_PRINTF1(_L("\tLBS <- ProcessLocationRequest()"));
+	if (EFail == CheckGatewayCallbackL(CSuplGatewayObserver::EProcessLocationRequest) ||
+		!iGatewayObserver->IsPrivReqReceived() ||
+		MLbsNetworkProtocolObserver::EServiceMobileTerminated != iGatewayObserver->LocType() )
+		{
+		SetTestStepResult(EFail);
+		return TestStepResult();
+		}
+
+	// LBS delivers privacy response
+	INFO_PRINTF1(_L("\tLBS -> PrivacyResponse (EPrivacyResponseRejected)"));	
+	CLbsNetworkProtocolBase::TLbsPrivacyResponse privacyResponse = CLbsNetworkProtocolBase::EPrivacyResponseRejected;
+	iModule->RespondPrivacyRequest(iGatewayObserver->SessionIdValue(), privacyResponse, 0);
+	
+	// LBS delivers a Location Response with KErrAccessDenied after privacy is rejected.
+	INFO_PRINTF1(_L("\tLBS -> RespondLocationRequest (KErrAccessDenied)"));
+	TPositionInfo mobilePosInfo;
+	iModule->RespondLocationRequest(iGatewayObserver->SessionIdValue(), KErrAccessDenied, mobilePosInfo);
+
+	
+	// Check Connection Manager receives a request for connecting
+	if (EFail == CheckNetworkCallbackL(CSuplNetworkTestObserver::EConnectReq))
+		{
+		SetTestStepResult(EFail);
+		return TestStepResult();
+		}
+	INFO_PRINTF1(_L("\t\t\t\t\t\t\t\t ConnectionRequest -> NET"));
+
+	// 
+	// *************** Check that if the connection is not created for a while
+	// *************** the MTLR state machine just waits
+	
+	// Check if more observer activity takes place
+	INFO_PRINTF1(_L("....taking a couple of seconds to connect"));
+	if (iGatewayObserver->IsMoreObserverActivity() ||
+	    iNetworkObserver->IsMoreObserverActivity())
+	{
+	SetTestStepResult(EFail);
+	return TestStepResult();
+	}
+
+	// Simulate the connection is up (inject that event)
+	INFO_PRINTF1(_L("\t\t\t\t\t\t\t\t Connected <- NET"));
+    iNetworkObserver->InjectConnectedIndication(iNetworkObserver->SessionId());
+    
+	// Check the Connection Manager receives a request to send a SUPL END 
+	if (EFail == CheckNetworkCallbackL(CSuplNetworkTestObserver::ESendSuplEndSendReq))
+		{
+		SetTestStepResult(EFail);
+		return TestStepResult();
+		}
+	INFO_PRINTF1(_L("\t\t\t\t\t\t\t\t SUPL END -> NET"));
+
+	// Check that Gateway receives a session complete
+	if (EFail == CheckGatewayCallbackL(
+				CSuplGatewayObserver::EProcessSessionComplete))
+		{
+		SetTestStepResult(EFail);
+		return TestStepResult();
+		}
+	INFO_PRINTF1(_L("\tLBS <- ProcessSessionComplete"));
+
+	
+	// Check if more observer activity takes place
+	if (iGatewayObserver->IsMoreObserverActivity() ||
+	iNetworkObserver->IsMoreObserverActivity())
+	{
+	SetTestStepResult(EFail);
+	return TestStepResult();
+	}
+	INFO_PRINTF1(_L("- END -"));
+
+	
+	SetTestStepResult(EPass);
+	return TestStepResult();
+	
+}
+
+
+/**
+ * @return - TVerdict code
+ * Override of base class virtual
+ */
+TVerdict Cmtlr21Step::doTestStepPostambleL()
+	{
+	delete iModule;
+
+	delete iSuplPush;
+	delete iSuplInitGenerator;
+
+	// Call base class method for post test actions	
+	CTe_suplprotocolSuiteStepBase::doTestStepPostambleL();
+	return TestStepResult();
+	}
+
+
+/**
+Overrides the pure virtual MTe_LbsSuplSmsTriggerSenderObserver::OnMessageSent.
+Receives the result of the message sending.
+	
+@param aError [In] The error code or KErrNone if successful.
+
+@see MTe_LbsSuplSmsTriggerSenderObserver::OnMessageSent
+@see CTe_LbsSuplSmsTriggerSender::SendMessage
+*/
+void Cmtlr21Step::OnSuplInitComplete(TLbsSuplPushChannel /*aChannel*/, TLbsSuplPushRequestId /*aReqId*/, TInt aError, TInt /*aReserved*/)
+	{
+	iSmsSendError = aError;
+	if (iSmsSendError != KErrNone)
+		{
+		User::Invariant();
+		}
+	}