sysstatemgmt/systemstateplugins/test/tunitadptplugin/src/tsim_adaptationplugin_step.cpp
changeset 0 4e1aa6a622a0
child 21 ccb4f6b3db21
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysstatemgmt/systemstateplugins/test/tunitadptplugin/src/tsim_adaptationplugin_step.cpp	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,134 @@
+// Copyright (c) 2007-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
+ @test
+ @internalComponent - Internal Symbian test code  
+*/
+
+
+
+#include <s32mem.h>
+#include "tsim_adaptationplugin_step.h"
+
+//
+// Run the tests
+//
+
+
+CTestSimAdaptationPlugin::CTestSimAdaptationPlugin()
+	:CAdaptationTestBase(KTCTestSimAdaptationPlugin)
+	{
+	
+	}
+
+CTestSimAdaptationPlugin::~CTestSimAdaptationPlugin()
+	{
+
+	}
+
+
+void CTestSimAdaptationPlugin::TestGetSimOwned()
+	{
+	INFO_PRINTF1(_L(" >CTestSimAdaptationPlugin::TestGetSimOwned"));
+
+	TRequestStatus status;
+	TPckgBuf <TInt> ownedPckg;
+
+	iSsmSimAdaptation.GetSimOwned(ownedPckg, status);
+	User::WaitForRequest(status);
+	if(iSsmSimAdaptation.Handle())
+		{
+		TEST(KErrNone == status.Int());	
+		INFO_PRINTF3(_L("CTestSimAdaptationPlugin::TestGetSimOwned completed with %d error : expected %d>"),status.Int(),KErrNone);	
+		}
+	else
+		{
+		TEST(KErrDisconnected == status.Int());	
+		INFO_PRINTF3(_L("CTestSimAdaptationPlugin::TestGetSimOwned completed with %d error : expected %d>"),status.Int(),KErrDisconnected);	
+		}
+	}
+
+void CTestSimAdaptationPlugin::TestGetCancel()
+	{
+	INFO_PRINTF1(_L(" >CTestSimAdaptationPlugin::TestGetCancel"));
+	iSsmSimAdaptation.GetCancel();
+	INFO_PRINTF1(_L(" CTestSimAdaptationPlugin::TestGetCancel>"));		
+	}
+
+void CTestSimAdaptationPlugin::TestNotifySimEvent()
+	{
+	INFO_PRINTF1(_L(" >CTestSimAdaptationPlugin::TestNotifySimEvent"));
+
+	TRequestStatus status;
+	TPckgBuf <TInt> typePckg;
+	typePckg = ESsmSimUsable;
+	iSsmSimAdaptation.NotifySimEvent(typePckg, status);
+	User::WaitForRequest(status);
+
+	if(iSsmSimAdaptation.Handle())
+		{
+		TEST(KErrNone == status.Int());	
+		INFO_PRINTF3(_L("CTestSimAdaptationPlugin::TestNotifySimEvent completed with %d error : expected %d>"),status.Int(),KErrNone);	
+		}
+	else
+		{
+		TEST(KErrDisconnected == status.Int());	
+		INFO_PRINTF3(_L("CTestSimAdaptationPlugin::TestNotifySimEvent completed with %d error : expected %d>"),status.Int(),KErrDisconnected);	
+		}
+	}
+
+void CTestSimAdaptationPlugin::TestNotifyCancel()
+	{
+	INFO_PRINTF1(_L(" >CTestSimAdaptationPlugin::TestNotifyCancel"));
+	iSsmSimAdaptation.NotifyCancel();
+	INFO_PRINTF1(_L(" CTestSimAdaptationPlugin::TestNotifyCancel >"));	
+	}
+
+
+//from CAdaptationTestBase
+TVerdict CTestSimAdaptationPlugin::doTestStepL()
+	{
+	TInt err = KErrNone;
+
+	__UHEAP_MARK;
+	
+	TRAP(err, TestGetSimOwned());
+	TEST(err == KErrNone);
+
+	TRAP(err, TestNotifySimEvent());
+	TEST(err == KErrNone);
+	
+	TestNotifyCancel();
+	TestGetCancel();
+	
+	User::LeaveIfError(iSsmSimAdaptation.Connect());
+	
+
+	TRAP(err, TestGetSimOwned());
+	TEST(err == KErrNone);
+	
+	TRAP(err, TestNotifySimEvent());
+	TEST(err == KErrNone);
+	
+	TestNotifyCancel();
+	TestGetCancel();
+	//TestRelease();			// have to test this part too ...
+
+	__UHEAP_MARKEND;
+
+	return TestStepResult();
+	}