First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Started by BLB, November 1996
15 // test code for CEnvironmentChangeNotifier
22 LOCAL_D RTest test(_L("T_CNTF"));
25 TBool WasCalled=EFalse;
26 CEnvironmentChangeNotifier* TheNotifier=NULL;
28 GLDEF_C TInt MyCallback(TAny*)
30 TInt stat=TheNotifier->Change()&~(EChangesPowerStatus|EChangesThreadDeath);
32 { // ignore just changes in power status etc
35 CActiveScheduler::Stop();
41 @SYMTestCaseID SYSLIB-BAFL-CT-0406
42 @SYMTestCaseDesc TLocale class functionality test
43 @SYMTestPriority Medium
44 @SYMTestActions Tests for environment setting changes.
45 @SYMTestExpectedResults Tests must not fail
48 LOCAL_C void testLocale()
50 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0406 Changing locale "));
53 locale.SetCountryCode(locale.CountryCode()+1);
55 CActiveScheduler::Start();
57 test(TheStatus&EChangesLocale);
58 test((TheStatus&EChangesMidnightCrossover)==0);
64 @SYMTestCaseID SYSLIB-BAFL-CT-0407
65 @SYMTestCaseDesc Tests for Locale changes
66 @SYMTestPriority Medium
67 @SYMTestActions Tests for change in systems time.
68 @SYMTestExpectedResults Tests must not fail
71 LOCAL_C void testMidnight()
73 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0407 Midnight crossover "));
76 TDateTime dateTime=timeNow.DateTime();
78 dateTime.SetSecond(58);
79 dateTime.SetMinute(59);
81 User::SetHomeTime(timeNow);
83 CActiveScheduler::Start();
85 test(TheStatus&EChangesSystemTime);
86 test((TheStatus&EChangesLocale)==0);
87 if ((TheStatus&EChangesMidnightCrossover)==0)
91 CActiveScheduler::Start();
93 test(TheStatus&EChangesMidnightCrossover);
94 test((TheStatus&EChangesLocale)==0);
100 // Following testLocale re-set the country code value back to the default
101 // so that any more tests added in future will be starting from the OS default state
102 LOCAL_C void resetLocale()
104 test.Next(_L("Resetting locale before next test"));
107 locale.SetCountryCode(locale.CountryCode()-1);
109 CActiveScheduler::Start();
111 test(TheStatus&EChangesLocale);
116 GLDEF_C TInt E32Main()
119 CTrapCleanup* cleanup=CTrapCleanup::New();
120 CActiveScheduler* shed=new(ELeave) CActiveScheduler;
121 CActiveScheduler::Install(shed);
123 test.Start(_L("Testing change notifier "));
124 TCallBack callback(MyCallback);
125 TheNotifier=CEnvironmentChangeNotifier::NewL(0,callback);
126 TheNotifier->Start();
128 // Check notifier is working
129 CActiveScheduler::Start();
135 // Test - change country code
138 // Test - check midnight rollover
141 // Reset country code to default state
144 TheNotifier->Cancel();
145 delete(CActiveScheduler::Current());