appfw/apparchitecture/tef/T_groupNametest_ver2.cpp
author William Roberts <williamr@symbian.org>
Fri, 23 Apr 2010 14:37:17 +0100
branchRCL_3
changeset 22 c82a39b81a38
parent 0 2e3d3ce01487
child 29 6a787171e1de
permissions -rw-r--r--
Rework addition of Symbian splash screen to reduce the source impact (uses SVG from Bug 2414) Notes: by using the OPTION SOURCEDIR parameter in the mifconv extension instructions, I can arrange to use the same source file name in sfimage, without having to export over the original Nokia file. This means that the name inside splashscreen.mbg is the same, which removes the need for the conditional compilation in SplashScreen.cpp, and gets rid of sf_splashscreen.mmp.

// Copyright (c) 2005-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:
// The following test case is used to test that the information read from "old format" resource files 
// isn't thrown  away because of an error while trying to read the group name member that 
// isn't present in localisable resource file.
// 
//

/**
 @file
 @internalComponent - Internal Symbian test code 
*/

#include "testableapalssession.h"
#include <apaid.h>
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
#include <apaidpartner.h>
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
#include "T_groupNametest_ver2.h"
#include "apparctestserver.h"
#include <test/testexecutestepbase.h>

// CT_GroupNameStep_ver2


const TUid KUidTGroupName={0x10208184};

/**
  Constructor
*/
CT_GroupNameStep_ver2::CT_GroupNameStep_ver2()
	{
	}


/**
  Destructor
*/
CT_GroupNameStep_ver2::~CT_GroupNameStep_ver2()
	{
	}

/**
   @SYMTestCaseID T-GroupNameStep-Ver2-DoTestCaptionNameL
  
   @SYMPREQ

   @SYMTestPriority High
   
   @SYMTestStatus Implemented
	 
   @SYMTestCaseDesc 
   T-groupname to test localisable resource file
  
   @SYMTestActions
   It connects to the Application Architecture server to perform the following:
   To test that information read from "old format" resource files isn't thrown away because
   of an error while trying to read the group name member that isn't present in localisable resource file..
   It calls following function to get the information about the groupname.
   RApaLsSession::GetAppInfo(TApaAppInfo& aInfo,TUid aAppUid) const\n
  
   @SYMTestExpectedResults
   GetAppInfo should return the caption name and ShortCaption Name 
   defined in the localisable resource file.
  
 */
void CT_GroupNameStep_ver2::DoTestCaptionNameL(RApaLsSession& aLs)
	{
	TApaAppInfo info;
	TInt err = aLs.GetAppInfo(info,KUidTGroupName);
	TEST(err == KErrNone);
	_LIT(KCaption,"T_groupname_ver2");
	_LIT(KShortCaption,"TGrpNameV2");	
			
	TEST(info.iCaption == KCaption);
	TEST(info.iShortCaption == KShortCaption);
	}

/**
   @return - TVerdict code
   Override of base class virtual
 */
TVerdict CT_GroupNameStep_ver2::doTestStepL()
	{
	INFO_PRINTF1(_L("Test Started"));

	RTestableApaLsSession ls;
	TEST(KErrNone == ls.Connect());
	CleanupClosePushL(ls);

	HEAP_TEST_LS_SESSION(ls, 0, 0, DoTestCaptionNameL(ls), NO_CLEANUP);

	CleanupStack::PopAndDestroy(&ls);

	INFO_PRINTF1(_L("Test Finished"));

	return TestStepResult();

	}