telephonyprotocols/psdagt/TS_PsdAgt/PsdAgtTestNotificationDisabled.cpp
branchopencode
changeset 24 6638e7f4bd8f
parent 0 3553901f7fa8
--- a/telephonyprotocols/psdagt/TS_PsdAgt/PsdAgtTestNotificationDisabled.cpp	Mon May 03 13:37:20 2010 +0300
+++ b/telephonyprotocols/psdagt/TS_PsdAgt/PsdAgtTestNotificationDisabled.cpp	Thu May 06 15:10:38 2010 +0100
@@ -1,98 +1,98 @@
-// Copyright (c) 2001-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:
-// This contains PsdAgt TestCase Test 4.1
-// 
-//
-
-// EPOC includes
-#include <e32base.h>
-#include <in_sock.h>
-
-// Test system includes
-#include "networking/log.h"
-#include "networking/teststep.h"
-#include "TestStepPsdAgt.h"
-#include "TestSuitePsdAgt.h"
-
-// RPacketContext
-#include <etelpckt.h> 
-
-// EConnectionOpen
-#include <connectprog.h>
-
-// COMMDB Database Undo
-#include "DbUndo.h"
-
-// Class definitions
-#include "PsdAgtTestNotificationDisabled.h"
-
-
-// Test case 4.1,  Context Config change, Service Option reduced, disconnect
-enum TVerdict CPsdAgtTest4_1::doPsdAgtTestStepL( void )
-	{
-	TInt err;
-	TInt stage;
-	CNifAgentRefN1 *agent;
-	TRealAgtNotify agtNotify; 
-
-	agtNotify.SetTestCase(401);
-
-	Log(_L("Loading DUMMYNIF.DLL"));
-	// Construct a new Dummy Nifman Instance
-	agent = CNifAgentRefN1::NewL(this,EFalse);
-	CleanupStack::PushL(agent);
-
-	// Attempt connection
-	Log(_L("Connecting..."));
-	agent->Connect();
-	
-	// Check result codes
-	agent->GetCompletionCode(err);
-	TESTEL(err==KErrNone,err);
-
-	// Check ConnectComplete was reported at the correct stage in the state machine
-	agent->GetProgressStage(stage);
-	TESTEL(stage==KConnectionOpen,stage);
-
-	Log(_L("Connect Successful"));
-
-	DelayL(3000000);
-
-	// Tell the ETEL layer to send a QOS change to PSDAGX
-	Log(_L("Notify PSDAGX of QoS change"));
-	agtNotify.NotifyAgt(EReduce);
-
-	// Make sure no dialog is presented
-	DelayL(3000000);
-
-	// Disconnect
-	Log(_L("Disconnecting..."));
-	agent->Disconnect();
-
-	// Check result code
-	agent->GetCompletionCode(err);
-	TESTEL(err==KErrNone,err);
-
-	Log(_L("Disconnect Successful"));
-	
-	// Finished with Dummy Nifman so delete it
-	CleanupStack::PopAndDestroy(agent);
-	Log(_L("DUMMYNIF.DLL Unloaded"));
-	
-	// Finished with database so undo any changes 
-	Log(_L("Reverting COMMDB changes"));
-
-	return iTestStepResult;
-	}
-
+// Copyright (c) 2001-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:
+// This contains PsdAgt TestCase Test 4.1
+// 
+//
+
+// EPOC includes
+#include <e32base.h>
+#include <in_sock.h>
+
+// Test system includes
+#include "networking/log.h"
+#include "networking/teststep.h"
+#include "TestStepPsdAgt.h"
+#include "TestSuitePsdAgt.h"
+
+// RPacketContext
+#include <etelpckt.h> 
+
+// EConnectionOpen
+#include <connectprog.h>
+
+// COMMDB Database Undo
+#include "DbUndo.h"
+
+// Class definitions
+#include "PsdAgtTestNotificationDisabled.h"
+
+
+// Test case 4.1,  Context Config change, Service Option reduced, disconnect
+enum TVerdict CPsdAgtTest4_1::doPsdAgtTestStepL( void )
+	{
+	TInt err;
+	TInt stage;
+	CNifAgentRefN1 *agent;
+	TRealAgtNotify agtNotify; 
+
+	agtNotify.SetTestCase(401);
+
+	Log(_L("Loading DUMMYNIF.DLL"));
+	// Construct a new Dummy Nifman Instance
+	agent = CNifAgentRefN1::NewL(this,EFalse);
+	CleanupStack::PushL(agent);
+
+	// Attempt connection
+	Log(_L("Connecting..."));
+	agent->Connect();
+	
+	// Check result codes
+	agent->GetCompletionCode(err);
+	TESTEL(err==KErrNone,err);
+
+	// Check ConnectComplete was reported at the correct stage in the state machine
+	agent->GetProgressStage(stage);
+	TESTEL(stage==KConnectionOpen,stage);
+
+	Log(_L("Connect Successful"));
+
+	DelayL(3000000);
+
+	// Tell the ETEL layer to send a QOS change to PSDAGX
+	Log(_L("Notify PSDAGX of QoS change"));
+	agtNotify.NotifyAgt(EReduce);
+
+	// Make sure no dialog is presented
+	DelayL(3000000);
+
+	// Disconnect
+	Log(_L("Disconnecting..."));
+	agent->Disconnect();
+
+	// Check result code
+	agent->GetCompletionCode(err);
+	TESTEL(err==KErrNone,err);
+
+	Log(_L("Disconnect Successful"));
+	
+	// Finished with Dummy Nifman so delete it
+	CleanupStack::PopAndDestroy(agent);
+	Log(_L("DUMMYNIF.DLL Unloaded"));
+	
+	// Finished with database so undo any changes 
+	Log(_L("Reverting COMMDB changes"));
+
+	return iTestStepResult;
+	}
+