os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrrestoreresponse.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrrestoreresponse.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,187 @@
     1.4 +// Copyright (c) 2010 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 +//
    1.18 +
    1.19 +#include <e32test.h>
    1.20 +#include <e32debug.h>
    1.21 +#include <bautils.h>
    1.22 +#include <featurecontrol.h>
    1.23 +#include "t_fmgrbursim.h"
    1.24 +
    1.25 +///////////////////////////////////////////////////////////////////////////////////////
    1.26 +
    1.27 +RTest TheTest(_L("t_fmgrrestoreresponse"));
    1.28 +
    1.29 +const TUint threadTimeout = 2000000;    // thread timeout = 2 seconds 
    1.30 +
    1.31 +static RSemaphore MainThreadCrS;
    1.32 +static TBool featMgrIsResponsive = EFalse;
    1.33 +
    1.34 +///////////////////////////////////////////////////////////////////////////////////////
    1.35 +///////////////////////////////////////////////////////////////////////////////////////
    1.36 +//Test macros and functions
    1.37 +void Check1(TInt aValue, TInt aLine, TBool aPrintThreadName = EFalse)
    1.38 +    {
    1.39 +    if(!aValue)
    1.40 +        {
    1.41 +        //DeleteTestFiles();
    1.42 +        if(aPrintThreadName)
    1.43 +            {
    1.44 +            RThread th;
    1.45 +            TName name = th.Name();
    1.46 +            RDebug::Print(_L("*** Thread %S, Line %d\r\n"), &name, aLine);
    1.47 +            }
    1.48 +        else
    1.49 +            {
    1.50 +            RDebug::Print(_L("*** Line %d\r\n"), aLine);
    1.51 +            }
    1.52 +        TheTest(EFalse, aLine);
    1.53 +        }
    1.54 +    }
    1.55 +
    1.56 +void Check2(TInt aValue, TInt aExpected, TInt aLine, TBool aPrintThreadName = EFalse)
    1.57 +    {
    1.58 +    if(aValue != aExpected)
    1.59 +        {
    1.60 +        //DeleteTestFiles();
    1.61 +        if(aPrintThreadName)
    1.62 +            {
    1.63 +            RThread th;
    1.64 +            TName name = th.Name();
    1.65 +            RDebug::Print(_L("*** Thread %S, Line %d Expected error: %d, got: %d\r\n"), &name, aLine, aExpected, aValue);
    1.66 +            }
    1.67 +        else
    1.68 +            {
    1.69 +            RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
    1.70 +            }
    1.71 +        TheTest(EFalse, aLine);
    1.72 +        }
    1.73 +    }
    1.74 +#define TEST(arg) ::Check1((arg), __LINE__)
    1.75 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    1.76 +#define TTEST(arg) ::Check1((arg), __LINE__, ETrue)
    1.77 +#define TTEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__, ETrue)
    1.78 +
    1.79 +// ------------------------- ------------------------- 
    1.80 +// setup and cleanup functions
    1.81 +
    1.82 +TInt TestThreadL(void*)
    1.83 +    {
    1.84 +        __UHEAP_MARK;
    1.85 +        
    1.86 +        CTrapCleanup* tc = CTrapCleanup::New();
    1.87 +        RFeatureControl rfc;
    1.88 +        TTEST2( rfc.Connect(), KErrNone );
    1.89 +        
    1.90 +        // During restore, feature manager server should be responsive and return KErrServerBusy for write request 
    1.91 +        TInt err = rfc.EnableFeature( TUid::Uid(0x00000001) );
    1.92 +        TTEST2(err, KErrServerBusy);
    1.93 +		
    1.94 +        // During restore, feature manager server should be responsive and NOT return KErrServerBusy for read request
    1.95 +		err = rfc.FeatureSupported( TUid::Uid(0x00000001) );
    1.96 +		TTEST(err != KErrServerBusy);
    1.97 +		
    1.98 +        rfc.Close();
    1.99 +        featMgrIsResponsive = ETrue;
   1.100 +        RDebug::Print(_L("+++:TestThread: Query and Modification completed\r\n"));
   1.101 +        MainThreadCrS.Signal();
   1.102 +        delete tc;
   1.103 +        
   1.104 +        __UHEAP_MARKEND;
   1.105 +        
   1.106 +        return KErrNone;
   1.107 +    }
   1.108 +/**
   1.109 +@SYMTestCaseID          PDS-EFM-CT-4058
   1.110 +@SYMTestCaseDesc        Querying and modifying a feature during restore operation. 
   1.111 +                        Verify that a response is returned from the server during restore.
   1.112 +@SYMTestPriority        High
   1.113 +@SYMTestActions         Start simulating restore operation
   1.114 +                        Create a thread that will:
   1.115 +                        Modify a feature and verify that a response (KErrServerBusy) is received 
   1.116 +                        Query a feature and verify that a response is received (doesn't matter what the result is)
   1.117 +                        The thread should finished in less than 2 seconds.
   1.118 +                        Otherwise the test fail.          
   1.119 +@SYMTestExpectedResults Test must not fail
   1.120 +@SYMREQ                 
   1.121 +*/  
   1.122 +void TestRestoreResponseL()
   1.123 +    {
   1.124 +        _LIT(KThreadName, "RstTh");
   1.125 +        featMgrIsResponsive = EFalse;
   1.126 +        
   1.127 +        CFeatMgrBURSim* simulate = CFeatMgrBURSim::NewLC();
   1.128 +        RThread testThread;
   1.129 +        TRequestStatus testStatus;
   1.130 +        CleanupClosePushL( testThread );
   1.131 +        
   1.132 +        //Needs to ensure server is started before simulating backup operation
   1.133 +        RFeatureControl rfc;
   1.134 +        TTEST2( rfc.Connect(), KErrNone ); //This will start the server if not already started
   1.135 +        rfc.Close();
   1.136 +        
   1.137 +        simulate->Simulate_CheckRegFileL();
   1.138 +        
   1.139 +        // Simulate a restore
   1.140 +        RDebug::Print(_L("Simulating Restore of FeatMgr\r\n"));
   1.141 +        simulate->Simulate_StartRestoreL();
   1.142 +
   1.143 +        TEST2( testThread.Create(KThreadName, &TestThreadL, 0x2000, 0x1000, 0x10000, NULL, EOwnerProcess), KErrNone );
   1.144 +        testThread.Logon(testStatus);
   1.145 +        TEST2( testStatus.Int(), KRequestPending );
   1.146 +        testThread.Resume();
   1.147 +        // Wait for 1.5 second for the query thread to finish. 
   1.148 +        RDebug::Print(_L("+++:MainThread: Wait for query and modification completion...\r\n"));
   1.149 +        MainThreadCrS.Wait(threadTimeout);
   1.150 +        // If query is responsive within the 1.5 second frame the following check should pass.
   1.151 +        TEST (featMgrIsResponsive);
   1.152 +        simulate->Simulate_EndRestoreL();
   1.153 +        
   1.154 +        CleanupStack::PopAndDestroy(&testThread);
   1.155 +        CleanupStack::PopAndDestroy(simulate);
   1.156 +    }
   1.157 +
   1.158 +////////////////////////////////////////////////////////////////////////////////////
   1.159 +void DoTestsL()
   1.160 +	{
   1.161 +    MainThreadCrS.CreateLocal(0);
   1.162 +    
   1.163 +    TheTest.Start(_L(" @SYMTestCaseID:PDS-EFM-CT-4058 Restore Query and Modification Response"));
   1.164 +    TestRestoreResponseL();
   1.165 +    
   1.166 +    MainThreadCrS.Close();
   1.167 +
   1.168 +	}
   1.169 +
   1.170 +TInt E32Main()
   1.171 +	{
   1.172 +	TheTest.Title();
   1.173 +	
   1.174 +	CTrapCleanup* tc = CTrapCleanup::New();
   1.175 +	
   1.176 +	__UHEAP_MARK;
   1.177 +	
   1.178 +	TRAPD(err, DoTestsL());
   1.179 +	TEST2(err, KErrNone);
   1.180 +
   1.181 +	__UHEAP_MARKEND;
   1.182 +	
   1.183 +	TheTest.End();
   1.184 +	TheTest.Close();
   1.185 +	
   1.186 +	delete tc;
   1.187 +	
   1.188 +	User::Heap().Check();
   1.189 +	return KErrNone;
   1.190 +	}