Update contrib.
1 // Copyright (c) 2010 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.
19 #include <featurecontrol.h>
20 #include "t_fmgrbursim.h"
22 ///////////////////////////////////////////////////////////////////////////////////////
24 RTest TheTest(_L("t_fmgrbackupresponse"));
26 const TUint threadTimeout = 2000000; // thread timeout = 2 seconds
28 static RSemaphore MainThreadCrS;
29 static TBool featMgrIsResponsive = EFalse;
31 ///////////////////////////////////////////////////////////////////////////////////////
32 ///////////////////////////////////////////////////////////////////////////////////////
33 //Test macros and functions
34 void Check1(TInt aValue, TInt aLine, TBool aPrintThreadName = EFalse)
42 TName name = th.Name();
43 RDebug::Print(_L("*** Thread %S, Line %d\r\n"), &name, aLine);
47 RDebug::Print(_L("*** Line %d\r\n"), aLine);
49 TheTest(EFalse, aLine);
53 void Check2(TInt aValue, TInt aExpected, TInt aLine, TBool aPrintThreadName = EFalse)
55 if(aValue != aExpected)
61 TName name = th.Name();
62 RDebug::Print(_L("*** Thread %S, Line %d Expected error: %d, got: %d\r\n"), &name, aLine, aExpected, aValue);
66 RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
68 TheTest(EFalse, aLine);
71 #define TEST(arg) ::Check1((arg), __LINE__)
72 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
73 #define TTEST(arg) ::Check1((arg), __LINE__, ETrue)
74 #define TTEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__, ETrue)
76 // ------------------------- -------------------------
77 // setup and cleanup functions
79 TInt TestThreadL(void*)
83 CTrapCleanup* tc = CTrapCleanup::New();
85 TTEST2( rfc.Connect(), KErrNone );
87 // During backup, feature manager server should be responsive and return KErrServerBusy for write request
88 TInt err = rfc.EnableFeature( TUid::Uid(0x00000001) );
89 TTEST2(err, KErrServerBusy);
91 // During backup, feature manager server should be responsive and NOT return KErrServerBusy for read request
92 err = rfc.FeatureSupported( TUid::Uid(0x00000001) );
93 TTEST(err != KErrServerBusy);
96 featMgrIsResponsive = ETrue;
97 RDebug::Print(_L("+++:TestThread: Query and Modification completed\r\n"));
98 MainThreadCrS.Signal();
106 @SYMTestCaseID PDS-EFM-CT-4057
107 @SYMTestCaseDesc Querying and modifying a feature during backup operation.
108 Verify that a response is returned from the server during backup.
109 @SYMTestPriority High
110 @SYMTestActions Start simulating backup operation
111 Create a thread that will:
112 Modify a feature and verify that a response (KErrServerBusy) is received
113 Query a feature and verify that a response is received (doesn't matter what the result is)
114 The thread should finished in less than 2 seconds.
115 Otherwise the test fail.
116 @SYMTestExpectedResults Test must not fail
119 void TestBackupResponseL()
121 _LIT(KThreadName, "BakTh");
122 featMgrIsResponsive = EFalse;
124 CFeatMgrBURSim* simulate = CFeatMgrBURSim::NewLC();
126 TRequestStatus testStatus;
127 CleanupClosePushL( testThread );
129 //Needs to ensure server is started before simulating backup operation
131 TTEST2( rfc.Connect(), KErrNone ); //This will start the server if not already started
134 simulate->Simulate_CheckRegFileL();
137 RDebug::Print(_L("Simulating Backup of FeatMgr\r\n"));
138 simulate->Simulate_StartBackupL();
140 TEST2( testThread.Create(KThreadName, &TestThreadL, 0x2000, 0x1000, 0x10000, NULL, EOwnerProcess), KErrNone );
141 testThread.Logon(testStatus);
142 TEST2( testStatus.Int(), KRequestPending );
144 // Wait for 1.5 second for the query thread to finish.
145 RDebug::Print(_L("+++:MainThread: Wait for query and modification completion...\r\n"));
146 MainThreadCrS.Wait(threadTimeout);
147 // If query is responsive within the 1.5 second frame the following check should pass.
148 TEST (featMgrIsResponsive);
149 simulate->Simulate_EndBackupL();
151 CleanupStack::PopAndDestroy(&testThread);
152 CleanupStack::PopAndDestroy(simulate);
155 ////////////////////////////////////////////////////////////////////////////////////
158 MainThreadCrS.CreateLocal(0);
160 TheTest.Start(_L(" @SYMTestCaseID:PDS-EFM-CT-4057 Backup Query and Modification Response"));
161 TestBackupResponseL();
163 MainThreadCrS.Close();
171 CTrapCleanup* tc = CTrapCleanup::New();
175 TRAPD(err, DoTestsL());
176 TEST2(err, KErrNone);
185 User::Heap().Check();