diff -r e8c1ea2c6496 -r 8758140453c0 lbs/common/src/ctlbsstepresetdefaultadmin.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lbs/common/src/ctlbsstepresetdefaultadmin.cpp Thu Jan 21 12:53:44 2010 +0000 @@ -0,0 +1,84 @@ +// 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 ctlbsstepresetdefaultadmin.cpp +// This is the class implementation for the Reset Default Admin Test Step +// +// + + + +/** + @file + @internalTechnology + @test +*/ + +#include +#include "ctlbsstepresetdefaultadmin.h" +#include + +CT_LbsStep_ResetDefaultAdmin::CT_LbsStep_ResetDefaultAdmin(CT_LbsServer& aParent) : CT_LbsStep(aParent) + { + SetTestStepName(KLbsStep_ResetDefaultAdmin); + } + +/** +Static Constructor +*/ +CT_LbsStep_ResetDefaultAdmin* CT_LbsStep_ResetDefaultAdmin::New(CT_LbsServer& aParent) + { + return new CT_LbsStep_ResetDefaultAdmin(aParent); + // Note the lack of ELeave. + // This means that having insufficient memory will return NULL; + } + + +/** +@pre +@return Test verdict +@post All admin settings reset to default +*/ +TVerdict CT_LbsStep_ResetDefaultAdmin::doTestStepL() + { + INFO_PRINTF1(_L(">>CT_LbsStep_ResetDefaultAdmin::doTestStepL()")); + + CLbsAdmin* adminApi = CLbsAdmin::NewL(); + CleanupStack::PushL(adminApi); + + TInt err = adminApi->ResetToDefault(); + + if(!KErrNone == err) + { + SetTestStepResult(EFail); + } + + // Reset the LbsRoot cenrep also. + const TUid KLbsRootRepositoryUid = { 0x10282266 }; + CRepository* rootRep = CRepository::NewLC(KLbsRootRepositoryUid); + err = rootRep->Reset(); + + if(!KErrNone == err) + { + SetTestStepResult(EFail); + } + + INFO_PRINTF1(_L("<<CT_LbsStep_ResetDefaultAdmin::doTestStepL()")); + + CleanupStack::PopAndDestroy(2, adminApi); + + // Alow the change to be propagated + User::After(4000000); + + return TestStepResult(); + }