diff -r 76f9aaeefbab -r e13acd883fbe common/tools/ats/smoketest/lbs/lbsclient/src/ctlbsclientpostp4704.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/ats/smoketest/lbs/lbsclient/src/ctlbsclientpostp4704.cpp Tue Nov 10 13:50:58 2009 +0000 @@ -0,0 +1,114 @@ +// 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 the License "Symbian Foundation License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + + + +// INCLUDES +#include "ctlbsclientpostp4704.h" +#include +#include +#include + + +// ================= MEMBER FUNCTIONS ======================= + +// --------------------------------------------------------- +// Constructor. +// --------------------------------------------------------- +CT_LbsClientPosTp4704::CT_LbsClientPosTp4704(CT_LbsServer& aParent): CT_LbsPortedStepBase(aParent) + { + _LIT(KTestName, "TP4704 - Default Proxy fallback-other status2"); + SetTestStepName(KTestName); + } + +// --------------------------------------------------------- +// Destructor. +// --------------------------------------------------------- +CT_LbsClientPosTp4704::~CT_LbsClientPosTp4704() + { + } + +void CT_LbsClientPosTp4704::CloseTest() + { + ClosePositioner(); + Disconnect(); + } + +void CT_LbsClientPosTp4704::StartL() + { + ConnectL(); + + SetupProxyPSYsL(); + + TInt err = OpenPositioner(); + _LIT(KOpenErr, "Error when opening positioner, %d"); + AssertTrueL(err == KErrNone, KOpenErr, err); + + _LIT(KServiceName, "TP4704"); + iPositioner.SetRequestor(CRequestor::ERequestorService, CRequestor::EFormatApplication, KServiceName); + + // Requesting a pre position request + TInt request = 100; + TPositionInfo posInfo; + RequestL(posInfo, request, KEspectedErrorCodePSY1); + + ///////////////////////////////////////////// + // Request 1 + ///////////////////////////////////////////// + request = 4704; + RequestL(posInfo, request, KEspectedErrorCodePSY1); + + VerifyPositionFromL(posInfo, iUidTestProxyPsy1); + VerifyRequestTimeLessThanL(4001000); + + VerifyPositionL(posInfo, 5, 15, 25); + } + +void CT_LbsClientPosTp4704::SetupProxyPSYsL() + { + CPosModules* db = CPosModules::OpenL(); + CleanupStack::PushL(db); + + CPosModuleUpdate* moduleUpdate = CPosModuleUpdate::NewLC(); + + moduleUpdate->SetUpdateAvailability(EFalse); + + CPosModuleIdList* prioList = db->ModuleIdListLC(); + + // Disable all PSY:s except PSYs used by this test case + + for (TInt i = 0 ; i < prioList->Count(); i++) + { + if ((*prioList)[i] != iUidTestProxyPsy1 && + (*prioList)[i] != iUidTestProxyPsy2) + { + db->UpdateModuleL((*prioList)[i], *moduleUpdate); + } + } + moduleUpdate->SetUpdateAvailability(ETrue); + db->UpdateModuleL(iUidTestProxyPsy1, *moduleUpdate); + db->UpdateModuleL(iUidTestProxyPsy2, *moduleUpdate); + + db->SetModulePriorityL(iUidTestProxyPsy1, 0); + db->SetModulePriorityL(iUidTestProxyPsy2, 1); + + CleanupStack::PopAndDestroy(prioList); + CleanupStack::PopAndDestroy(moduleUpdate); + CleanupStack::PopAndDestroy(db); + } + +// End of File + +