common/tools/ats/smoketest/lbs/common/src/ctlbsstepstartlbs.cpp
changeset 748 e13acd883fbe
child 872 17498133d9ad
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/tools/ats/smoketest/lbs/common/src/ctlbsstepstartlbs.cpp	Tue Nov 10 13:50:58 2009 +0000
@@ -0,0 +1,146 @@
+// 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 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:
+// @file ctlbslocdatasrc.cpp
+// This is the class implementation for the step to start the lbs system
+// EPOC includes.
+// LBS includes. 
+// 
+//
+
+// LBS test includes.
+#include "ctlbsstepstartlbs.h"
+#include "tlbsutils.h"
+#include "lbstestclient.h"
+
+/**
+ * Destructor
+ */
+CT_LbsStep_StartLbs::~CT_LbsStep_StartLbs()
+	{
+	}
+
+
+/**
+ * Constructor
+ */
+CT_LbsStep_StartLbs::CT_LbsStep_StartLbs(CT_LbsServer& aParent) : CT_LbsStep(aParent)
+	{
+	SetTestStepName(KLbsStep_StartLbs);
+	}
+
+
+/**
+Static Constructor
+*/
+CT_LbsStep_StartLbs* CT_LbsStep_StartLbs::New(CT_LbsServer& aParent)
+	{
+	return new CT_LbsStep_StartLbs(aParent);
+	// Note the lack of ELeave.
+	// This means that having insufficient memory will return NULL;
+	}
+
+
+/**
+ * @return - TVerdict code
+ * Override of base class pure virtual
+ * Our implementation only gets called if the base class doTestStepPreambleL() did
+ * not leave. That being the case, the current test result value will be EPass.
+ */
+TVerdict CT_LbsStep_StartLbs::doTestStepL()
+	{
+	// Test step used to start the location manager.
+	INFO_PRINTF1(_L(">>CT_LbsStep_StartLbs::doTestStepL()"));
+
+	//*******************************************************************/
+	// for diagnostics print out important Admin settings that will
+	// determine how lbs bahaves
+	
+	CLbsAdmin* adminApi = CLbsAdmin::NewL();
+	CleanupStack::PushL(adminApi);
+	
+	CLbsAdmin::TGpsMode mode;
+	TInt err = adminApi->Get(KLbsSettingHomeGpsMode, mode);	
+	if (err == KErrNone)
+		{
+		INFO_PRINTF2(_L("KLbsSettingHomeGpsMode = %d"),mode);
+		}
+	else
+		{
+		INFO_PRINTF1(_L("KLbsSettingHomeGpsMode not in Admin"));
+		}
+			
+	CLbsAdmin::TSpecialFeature	specialFeature;
+	
+	err = adminApi->Get(KLbsSpecialFeatureIgnoreAccuracy, specialFeature);
+	if (err == KErrNone)
+		{
+		INFO_PRINTF2(_L("KLbsSpecialFeatureIgnoreAccuracy = %d"),specialFeature);
+		}
+	else
+		{
+		INFO_PRINTF1(_L("KLbsSpecialFeatureIgnoreAccuracy not in Admin"));
+		}
+	
+	err = adminApi->Get(KLbsSpecialFeatureAllowTBFinalNetPos, specialFeature);
+	if (err == KErrNone)
+		{
+		INFO_PRINTF2(_L("KLbsSpecialFeatureAllowTBFinalNetPos = %d"),specialFeature);
+		}
+		else
+		{
+		INFO_PRINTF1(_L("KLbsSpecialFeatureAllowTBFinalNetPos not in Admin"));
+		}
+		
+	err = adminApi->Get(KLbsSpecialFeatureWithholdDeliveryOfReferencePositions, specialFeature);
+	if (err == KErrNone)
+		{
+		INFO_PRINTF2(_L("KLbsSpecialFeatureWithholdDeliveryOfReferencePositions = %d"),specialFeature);
+		}
+		else
+		{
+		INFO_PRINTF1(_L("KLbsSpecialFeatureWithholdDeliveryOfReferencePositions not in Admin"));
+		}
+		
+	err = adminApi->Get(KLbsSpecialFeatureIntermediateFutileUpdate, specialFeature);
+	if (err == KErrNone)
+		{
+		INFO_PRINTF2(_L("KLbsSpecialFeatureIntermediateFutileUpdate = %d"),specialFeature);
+		}
+		else
+		{
+		INFO_PRINTF1(_L("KLbsSpecialFeatureIntermediateFutileUpdate not in Admin"));
+		}
+
+
+	CleanupStack::PopAndDestroy(adminApi);
+
+	//*******************************************************************/
+	
+	if (TestStepResult() == EPass)
+		{	
+		// Create the test properties.
+		T_LbsUtils utils;
+		utils.CreateTestPropertiesL();
+		
+		// Now start the LBS system
+		CLbsTestServer* testServer = CLbsTestServer::NewL();
+		CleanupStack::PushL(testServer);
+		User::LeaveIfError(testServer->StartLbsSystem());
+		CleanupStack::PopAndDestroy(testServer);
+		}
+		
+	INFO_PRINTF1(_L("<<CT_LbsStep_StartLbs::doTestStepL()"));
+
+	return TestStepResult();
+	}