sl@0: // Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "../src/inc/featmgrconfiguration.h" sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: static RTest TheTest(_L("t_fmgrswi")); sl@0: sl@0: const TUid KNewFeatureUid = {0x7888ABC2}; sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: //Deletes all created test files. sl@0: void DestroyTestEnv() sl@0: { sl@0: } sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Test macros and functions sl@0: void Check1(TInt aValue, TInt aLine) sl@0: { sl@0: if(!aValue) sl@0: { sl@0: DestroyTestEnv(); sl@0: RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: void Check2(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: DestroyTestEnv(); sl@0: RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: #define TEST(arg) ::Check1((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__) sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: TInt KillProcess(const TDesC& aProcessName) sl@0: { sl@0: TFullName name; sl@0: //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName); sl@0: TBuf<64> pattern(aProcessName); sl@0: TInt length = pattern.Length(); sl@0: pattern += _L("*"); sl@0: TFindProcess procFinder(pattern); sl@0: sl@0: while (procFinder.Next(name) == KErrNone) sl@0: { sl@0: if (name.Length() > length) sl@0: {//If found name is a string containing aProcessName string. sl@0: TChar c(name[length]); sl@0: if (c.IsAlphaDigit() || sl@0: c == TChar('_') || sl@0: c == TChar('-')) sl@0: { sl@0: // If the found name is other valid application name sl@0: // starting with aProcessName string. sl@0: //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name); sl@0: continue; sl@0: } sl@0: } sl@0: RProcess proc; sl@0: if (proc.Open(name) == KErrNone) sl@0: { sl@0: proc.Kill(0); sl@0: //RDebug::Print(_L("\"%S\" process killed.\n"), &name); sl@0: } sl@0: proc.Close(); sl@0: } sl@0: return KErrNone; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-EFM-CT-4111 sl@0: @SYMTestCaseDesc The test demonstrates that there is a problem in the FeatMgr code that processes SWI events. sl@0: Test steps: sl@0: 1) The test sets KSAUidSoftwareInstallKeyValue property in order to simulate that SWI has started. sl@0: 2) The test calls RFeatureControl::SWIStart() to notify the server that SWI started. sl@0: 3) The test adds a new feature. Since this happens during the SWI process the new feature sl@0: will be cached by the FeatMgr server. sl@0: 4) The test simulates a file I/O error to happen on iteration #4. The failure should occur sl@0: at the moment when the server tries to persist the new feature that is in the cache. sl@0: 5) The test notifies the server that SWI has completed: KSAUidSoftwareInstallKeyValue value set sl@0: and RFeatureControl::SWIEnd() called. sl@0: When the server receives the "end of SWI" notification, the server will try to persist sl@0: the cached new feature. But because of the simulated file I/O error the server will fail sl@0: to store the new feature to the features.dat file. But in accordance with the current sl@0: design of the server, no error will be reported back to the client. sl@0: 6) The test kills the FeatMgr server. The server cache is gone. sl@0: 7) The test restarts the server and attempts to request the new feature. The new feature sl@0: is missing. sl@0: @SYMTestPriority High sl@0: @SYMTestActions FeatMgr SWI test with simulated file I/O error during SWI. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF144262 sl@0: */ sl@0: void SWItest() sl@0: { sl@0: RFs fs; sl@0: TInt err = fs.Connect(); sl@0: TEST2(err, KErrNone); sl@0: // sl@0: RFeatureControl ctrl; sl@0: err = ctrl.Open(); sl@0: TEST2(err, KErrNone); sl@0: //Simulate SWI start sl@0: err = RProperty::Set(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall); sl@0: TEST2(err, KErrNone); sl@0: //Notify FeatMgr server that SWI started sl@0: err = ctrl.SWIStart(); sl@0: TEST2(err, KErrNone); sl@0: //Add a new persistent feature (using the same SWI connection) sl@0: TBitFlags32 flags; sl@0: flags.ClearAll(); sl@0: flags.Set(EFeatureSupported); sl@0: flags.Set(EFeatureModifiable); sl@0: flags.Set(EFeaturePersisted); sl@0: TFeatureEntry fentry(KNewFeatureUid, flags, 9876); sl@0: err = ctrl.AddFeature(fentry); sl@0: TEST2(err, KErrNone); sl@0: //Simulate file I/O error sl@0: (void)fs.SetErrorCondition(KErrGeneral, 4); sl@0: //Complete the SWI simulation sl@0: err = RProperty::Set(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall | ESASwisStatusSuccess); sl@0: TEST2(err, KErrNone); sl@0: //Notify FeatMgr server that SWI completed sl@0: err = ctrl.SWIEnd(); sl@0: TEST2(err, KErrNone); sl@0: //Cleanup sl@0: ctrl.Close(); sl@0: (void)fs.SetErrorCondition(KErrNone); sl@0: fs.Close(); sl@0: //Kill FeatMgr server sl@0: err = KillProcess(KServerProcessName); sl@0: TEST2(err, KErrNone); sl@0: //Open new connection sl@0: err = ctrl.Open(); sl@0: TEST2(err, KErrNone); sl@0: //The feature should be there sl@0: TFeatureEntry fentry2(KNewFeatureUid); sl@0: err = ctrl.FeatureSupported(fentry2); sl@0: TEST2(err, KFeatureSupported); sl@0: TEST2(fentry2.FeatureData(), fentry.FeatureData()); sl@0: //Cleanup sl@0: err = ctrl.DeleteFeature(KNewFeatureUid); sl@0: TEST2(err, KErrNone); sl@0: ctrl.Close(); sl@0: } sl@0: sl@0: void DoTestsL() sl@0: { sl@0: CActiveScheduler* scheduler = new CActiveScheduler; sl@0: TEST(scheduler != NULL); sl@0: CActiveScheduler::Install(scheduler); sl@0: sl@0: TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4111 SWI test")); sl@0: SWItest(); sl@0: sl@0: delete scheduler; sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: TheTest.Title(); sl@0: sl@0: CTrapCleanup* tc = CTrapCleanup::New(); sl@0: TheTest(tc != NULL); sl@0: sl@0: __UHEAP_MARK; sl@0: sl@0: TRAPD(err, DoTestsL()); sl@0: DestroyTestEnv(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: sl@0: delete tc; sl@0: sl@0: User::Heap().Check(); sl@0: return KErrNone; sl@0: }