1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_CNTF.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,152 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Started by BLB, November 1996
1.18 +// test code for CEnvironmentChangeNotifier
1.19 +//
1.20 +//
1.21 +
1.22 +#include <bacntf.h>
1.23 +#include <e32test.h>
1.24 +
1.25 +LOCAL_D RTest test(_L("T_CNTF"));
1.26 +
1.27 +TInt TheStatus=0;
1.28 +TBool WasCalled=EFalse;
1.29 +CEnvironmentChangeNotifier* TheNotifier=NULL;
1.30 +
1.31 +GLDEF_C TInt MyCallback(TAny*)
1.32 + {
1.33 + TInt stat=TheNotifier->Change()&~(EChangesPowerStatus|EChangesThreadDeath);
1.34 + if (stat)
1.35 + { // ignore just changes in power status etc
1.36 + WasCalled=ETrue;
1.37 + TheStatus=stat;
1.38 + CActiveScheduler::Stop();
1.39 + }
1.40 + return(KErrNone);
1.41 + }
1.42 +
1.43 +/**
1.44 +@SYMTestCaseID SYSLIB-BAFL-CT-0406
1.45 +@SYMTestCaseDesc TLocale class functionality test
1.46 +@SYMTestPriority Medium
1.47 +@SYMTestActions Tests for environment setting changes.
1.48 +@SYMTestExpectedResults Tests must not fail
1.49 +@SYMREQ REQ0000
1.50 +*/
1.51 +LOCAL_C void testLocale()
1.52 + {
1.53 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0406 Changing locale "));
1.54 + TLocale locale;
1.55 + test(!WasCalled);
1.56 + locale.SetCountryCode(locale.CountryCode()+1);
1.57 + locale.Set();
1.58 + CActiveScheduler::Start();
1.59 + test(WasCalled);
1.60 + test(TheStatus&EChangesLocale);
1.61 + test((TheStatus&EChangesMidnightCrossover)==0);
1.62 + WasCalled=EFalse;
1.63 + TheStatus=0;
1.64 + }
1.65 +
1.66 +/**
1.67 +@SYMTestCaseID SYSLIB-BAFL-CT-0407
1.68 +@SYMTestCaseDesc Tests for Locale changes
1.69 +@SYMTestPriority Medium
1.70 +@SYMTestActions Tests for change in systems time.
1.71 +@SYMTestExpectedResults Tests must not fail
1.72 +@SYMREQ REQ0000
1.73 +*/
1.74 +LOCAL_C void testMidnight()
1.75 + {
1.76 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0407 Midnight crossover "));
1.77 + TTime timeNow;
1.78 + timeNow.HomeTime();
1.79 + TDateTime dateTime=timeNow.DateTime();
1.80 + dateTime.SetHour(23);
1.81 + dateTime.SetSecond(58);
1.82 + dateTime.SetMinute(59);
1.83 + timeNow=dateTime;
1.84 + User::SetHomeTime(timeNow);
1.85 + test(!WasCalled);
1.86 + CActiveScheduler::Start();
1.87 + test(WasCalled);
1.88 + test(TheStatus&EChangesSystemTime);
1.89 + test((TheStatus&EChangesLocale)==0);
1.90 + if ((TheStatus&EChangesMidnightCrossover)==0)
1.91 + {
1.92 + WasCalled=EFalse;
1.93 + TheStatus=0;
1.94 + CActiveScheduler::Start();
1.95 + test(WasCalled);
1.96 + test(TheStatus&EChangesMidnightCrossover);
1.97 + test((TheStatus&EChangesLocale)==0);
1.98 + }
1.99 + WasCalled=EFalse;
1.100 + TheStatus=0;
1.101 + }
1.102 +
1.103 +// Following testLocale re-set the country code value back to the default
1.104 +// so that any more tests added in future will be starting from the OS default state
1.105 +LOCAL_C void resetLocale()
1.106 + {
1.107 + test.Next(_L("Resetting locale before next test"));
1.108 + TLocale locale;
1.109 + test(!WasCalled);
1.110 + locale.SetCountryCode(locale.CountryCode()-1);
1.111 + locale.Set();
1.112 + CActiveScheduler::Start();
1.113 + test(WasCalled);
1.114 + test(TheStatus&EChangesLocale);
1.115 + WasCalled=EFalse;
1.116 + TheStatus=0;
1.117 + }
1.118 +
1.119 +GLDEF_C TInt E32Main()
1.120 + {
1.121 + __UHEAP_MARK;
1.122 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.123 + CActiveScheduler* shed=new(ELeave) CActiveScheduler;
1.124 + CActiveScheduler::Install(shed);
1.125 + test.Title();
1.126 + test.Start(_L("Testing change notifier "));
1.127 + TCallBack callback(MyCallback);
1.128 + TheNotifier=CEnvironmentChangeNotifier::NewL(0,callback);
1.129 + TheNotifier->Start();
1.130 +
1.131 + // Check notifier is working
1.132 + CActiveScheduler::Start();
1.133 + test(WasCalled);
1.134 + test(TheStatus!=0);
1.135 + WasCalled=EFalse;
1.136 + TheStatus=0;
1.137 +
1.138 + // Test - change country code
1.139 + testLocale();
1.140 +
1.141 + // Test - check midnight rollover
1.142 + testMidnight();
1.143 +
1.144 + // Reset country code to default state
1.145 + resetLocale();
1.146 +
1.147 + TheNotifier->Cancel();
1.148 + delete(CActiveScheduler::Current());
1.149 + delete(TheNotifier);
1.150 + test.End();
1.151 + test.Close();
1.152 + delete cleanup;
1.153 + __UHEAP_MARKEND;
1.154 + return(KErrNone);
1.155 + }