sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
#include "T_CheckLocale.h"
|
sl@0
|
16 |
|
sl@0
|
17 |
void TestLocaleDLLName(RTest& test, const TDesC& alanguage, const TDesC& aRegion, const TDesC& aCollation)
|
sl@0
|
18 |
{
|
sl@0
|
19 |
test.Printf(_L("\nThe expected locale language, Region, Collation DLL names are: %S, %S, %S"), &alanguage, &aRegion, &aCollation);
|
sl@0
|
20 |
User::After(1000000);
|
sl@0
|
21 |
TExtendedLocale extendLocale;
|
sl@0
|
22 |
extendLocale.LoadSystemSettings();
|
sl@0
|
23 |
TBuf<KMaxFullName> loadedLocaleDLLName;
|
sl@0
|
24 |
User::After(1000000);
|
sl@0
|
25 |
|
sl@0
|
26 |
extendLocale.GetLocaleDllName(ELocaleLanguageSettings, loadedLocaleDLLName);
|
sl@0
|
27 |
test.Printf(_L("\nThe system locale lagnuage DLL names is: %S"), &loadedLocaleDLLName);
|
sl@0
|
28 |
test(KErrNotFound != loadedLocaleDLLName.Find(alanguage));
|
sl@0
|
29 |
|
sl@0
|
30 |
extendLocale.GetLocaleDllName(ELocaleLocaleSettings, loadedLocaleDLLName);
|
sl@0
|
31 |
test.Printf(_L("\nThe system locale Region DLL names is: %S"), &loadedLocaleDLLName);
|
sl@0
|
32 |
test(KErrNotFound != loadedLocaleDLLName.Find(aRegion));
|
sl@0
|
33 |
|
sl@0
|
34 |
extendLocale.GetLocaleDllName(ELocaleCollateSetting, loadedLocaleDLLName);
|
sl@0
|
35 |
test.Printf(_L("\nThe system locale collation DLL names is: %S"), &loadedLocaleDLLName);
|
sl@0
|
36 |
test(KErrNotFound != loadedLocaleDLLName.Find(aCollation));
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
void TestLocaleContent(RTest& test, TLanguage alanguageID, TPtrC aCurrencySymbol, TUint aTCollationMethodID)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
test.Printf(_L("\nThe expected locale languageID, CurrencySymbol, TCollationMethodID are: %d, %S, %d"), alanguageID, &aCurrencySymbol, aTCollationMethodID);
|
sl@0
|
42 |
User::After(1000000);
|
sl@0
|
43 |
TExtendedLocale extendLocale;
|
sl@0
|
44 |
extendLocale.LoadSystemSettings();
|
sl@0
|
45 |
User::After(1000000);
|
sl@0
|
46 |
|
sl@0
|
47 |
test.Printf(_L("\nThe system locale languageID is: %d"), User::Language());
|
sl@0
|
48 |
test(alanguageID == User::Language());
|
sl@0
|
49 |
TPtrC currencySymbol = extendLocale.GetCurrencySymbol();
|
sl@0
|
50 |
test.Printf(_L("\nThe system locale CurrencySymbol is: %S"), ¤cySymbol);
|
sl@0
|
51 |
test(aCurrencySymbol == extendLocale.GetCurrencySymbol());
|
sl@0
|
52 |
test.Printf(_L("\nThe system locale TCollationMethodID is: %d"), extendLocale.GetPreferredCollationMethod().iId);
|
sl@0
|
53 |
test(aTCollationMethodID == extendLocale.GetPreferredCollationMethod().iId);
|
sl@0
|
54 |
}
|