Update contrib.
1 // Copyright (c) 2009-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 <e32property.h>
21 #include <featureuids.h>
22 #include <featurecontrol.h>
23 #include <featdiscovery.h>
24 #include "../src/inc/featmgrconfiguration.h"
26 ///////////////////////////////////////////////////////////////////////////////////////
28 static RTest TheTest(_L("t_fmgrswi"));
30 const TUid KNewFeatureUid = {0x7888ABC2};
32 ///////////////////////////////////////////////////////////////////////////////////////
34 //Deletes all created test files.
39 ///////////////////////////////////////////////////////////////////////////////////////
40 ///////////////////////////////////////////////////////////////////////////////////////
41 //Test macros and functions
42 void Check1(TInt aValue, TInt aLine)
47 RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
48 TheTest(EFalse, aLine);
51 void Check2(TInt aValue, TInt aExpected, TInt aLine)
53 if(aValue != aExpected)
56 RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
57 TheTest(EFalse, aLine);
60 #define TEST(arg) ::Check1((arg), __LINE__)
61 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
63 ///////////////////////////////////////////////////////////////////////////////////////
65 TInt KillProcess(const TDesC& aProcessName)
68 //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
69 TBuf<64> pattern(aProcessName);
70 TInt length = pattern.Length();
72 TFindProcess procFinder(pattern);
74 while (procFinder.Next(name) == KErrNone)
76 if (name.Length() > length)
77 {//If found name is a string containing aProcessName string.
78 TChar c(name[length]);
79 if (c.IsAlphaDigit() ||
83 // If the found name is other valid application name
84 // starting with aProcessName string.
85 //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
90 if (proc.Open(name) == KErrNone)
93 //RDebug::Print(_L("\"%S\" process killed.\n"), &name);
101 @SYMTestCaseID PDS-EFM-CT-4111
102 @SYMTestCaseDesc The test demonstrates that there is a problem in the FeatMgr code that processes SWI events.
104 1) The test sets KSAUidSoftwareInstallKeyValue property in order to simulate that SWI has started.
105 2) The test calls RFeatureControl::SWIStart() to notify the server that SWI started.
106 3) The test adds a new feature. Since this happens during the SWI process the new feature
107 will be cached by the FeatMgr server.
108 4) The test simulates a file I/O error to happen on iteration #4. The failure should occur
109 at the moment when the server tries to persist the new feature that is in the cache.
110 5) The test notifies the server that SWI has completed: KSAUidSoftwareInstallKeyValue value set
111 and RFeatureControl::SWIEnd() called.
112 When the server receives the "end of SWI" notification, the server will try to persist
113 the cached new feature. But because of the simulated file I/O error the server will fail
114 to store the new feature to the features.dat file. But in accordance with the current
115 design of the server, no error will be reported back to the client.
116 6) The test kills the FeatMgr server. The server cache is gone.
117 7) The test restarts the server and attempts to request the new feature. The new feature
119 @SYMTestPriority High
120 @SYMTestActions FeatMgr SWI test with simulated file I/O error during SWI.
121 @SYMTestExpectedResults Test must not fail
127 TInt err = fs.Connect();
128 TEST2(err, KErrNone);
130 RFeatureControl ctrl;
132 TEST2(err, KErrNone);
134 err = RProperty::Set(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
135 TEST2(err, KErrNone);
136 //Notify FeatMgr server that SWI started
137 err = ctrl.SWIStart();
138 TEST2(err, KErrNone);
139 //Add a new persistent feature (using the same SWI connection)
142 flags.Set(EFeatureSupported);
143 flags.Set(EFeatureModifiable);
144 flags.Set(EFeaturePersisted);
145 TFeatureEntry fentry(KNewFeatureUid, flags, 9876);
146 err = ctrl.AddFeature(fentry);
147 TEST2(err, KErrNone);
148 //Simulate file I/O error
149 (void)fs.SetErrorCondition(KErrGeneral, 4);
150 //Complete the SWI simulation
151 err = RProperty::Set(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall | ESASwisStatusSuccess);
152 TEST2(err, KErrNone);
153 //Notify FeatMgr server that SWI completed
155 TEST2(err, KErrNone);
158 (void)fs.SetErrorCondition(KErrNone);
160 //Kill FeatMgr server
161 err = KillProcess(KServerProcessName);
162 TEST2(err, KErrNone);
163 //Open new connection
165 TEST2(err, KErrNone);
166 //The feature should be there
167 TFeatureEntry fentry2(KNewFeatureUid);
168 err = ctrl.FeatureSupported(fentry2);
169 TEST2(err, KFeatureSupported);
170 TEST2(fentry2.FeatureData(), fentry.FeatureData());
172 err = ctrl.DeleteFeature(KNewFeatureUid);
173 TEST2(err, KErrNone);
179 CActiveScheduler* scheduler = new CActiveScheduler;
180 TEST(scheduler != NULL);
181 CActiveScheduler::Install(scheduler);
183 TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4111 SWI test"));
193 CTrapCleanup* tc = CTrapCleanup::New();
198 TRAPD(err, DoTestsL());
200 TEST2(err, KErrNone);
209 User::Heap().Check();