os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrrestoreresponse.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32test.h>
sl@0
    17
#include <e32debug.h>
sl@0
    18
#include <bautils.h>
sl@0
    19
#include <featurecontrol.h>
sl@0
    20
#include "t_fmgrbursim.h"
sl@0
    21
sl@0
    22
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    23
sl@0
    24
RTest TheTest(_L("t_fmgrrestoreresponse"));
sl@0
    25
sl@0
    26
const TUint threadTimeout = 2000000;    // thread timeout = 2 seconds 
sl@0
    27
sl@0
    28
static RSemaphore MainThreadCrS;
sl@0
    29
static TBool featMgrIsResponsive = EFalse;
sl@0
    30
sl@0
    31
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    32
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    33
//Test macros and functions
sl@0
    34
void Check1(TInt aValue, TInt aLine, TBool aPrintThreadName = EFalse)
sl@0
    35
    {
sl@0
    36
    if(!aValue)
sl@0
    37
        {
sl@0
    38
        //DeleteTestFiles();
sl@0
    39
        if(aPrintThreadName)
sl@0
    40
            {
sl@0
    41
            RThread th;
sl@0
    42
            TName name = th.Name();
sl@0
    43
            RDebug::Print(_L("*** Thread %S, Line %d\r\n"), &name, aLine);
sl@0
    44
            }
sl@0
    45
        else
sl@0
    46
            {
sl@0
    47
            RDebug::Print(_L("*** Line %d\r\n"), aLine);
sl@0
    48
            }
sl@0
    49
        TheTest(EFalse, aLine);
sl@0
    50
        }
sl@0
    51
    }
sl@0
    52
sl@0
    53
void Check2(TInt aValue, TInt aExpected, TInt aLine, TBool aPrintThreadName = EFalse)
sl@0
    54
    {
sl@0
    55
    if(aValue != aExpected)
sl@0
    56
        {
sl@0
    57
        //DeleteTestFiles();
sl@0
    58
        if(aPrintThreadName)
sl@0
    59
            {
sl@0
    60
            RThread th;
sl@0
    61
            TName name = th.Name();
sl@0
    62
            RDebug::Print(_L("*** Thread %S, Line %d Expected error: %d, got: %d\r\n"), &name, aLine, aExpected, aValue);
sl@0
    63
            }
sl@0
    64
        else
sl@0
    65
            {
sl@0
    66
            RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
sl@0
    67
            }
sl@0
    68
        TheTest(EFalse, aLine);
sl@0
    69
        }
sl@0
    70
    }
sl@0
    71
#define TEST(arg) ::Check1((arg), __LINE__)
sl@0
    72
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
    73
#define TTEST(arg) ::Check1((arg), __LINE__, ETrue)
sl@0
    74
#define TTEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__, ETrue)
sl@0
    75
sl@0
    76
// ------------------------- ------------------------- 
sl@0
    77
// setup and cleanup functions
sl@0
    78
sl@0
    79
TInt TestThreadL(void*)
sl@0
    80
    {
sl@0
    81
        __UHEAP_MARK;
sl@0
    82
        
sl@0
    83
        CTrapCleanup* tc = CTrapCleanup::New();
sl@0
    84
        RFeatureControl rfc;
sl@0
    85
        TTEST2( rfc.Connect(), KErrNone );
sl@0
    86
        
sl@0
    87
        // During restore, feature manager server should be responsive and return KErrServerBusy for write request 
sl@0
    88
        TInt err = rfc.EnableFeature( TUid::Uid(0x00000001) );
sl@0
    89
        TTEST2(err, KErrServerBusy);
sl@0
    90
		
sl@0
    91
        // During restore, feature manager server should be responsive and NOT return KErrServerBusy for read request
sl@0
    92
		err = rfc.FeatureSupported( TUid::Uid(0x00000001) );
sl@0
    93
		TTEST(err != KErrServerBusy);
sl@0
    94
		
sl@0
    95
        rfc.Close();
sl@0
    96
        featMgrIsResponsive = ETrue;
sl@0
    97
        RDebug::Print(_L("+++:TestThread: Query and Modification completed\r\n"));
sl@0
    98
        MainThreadCrS.Signal();
sl@0
    99
        delete tc;
sl@0
   100
        
sl@0
   101
        __UHEAP_MARKEND;
sl@0
   102
        
sl@0
   103
        return KErrNone;
sl@0
   104
    }
sl@0
   105
/**
sl@0
   106
@SYMTestCaseID          PDS-EFM-CT-4058
sl@0
   107
@SYMTestCaseDesc        Querying and modifying a feature during restore operation. 
sl@0
   108
                        Verify that a response is returned from the server during restore.
sl@0
   109
@SYMTestPriority        High
sl@0
   110
@SYMTestActions         Start simulating restore operation
sl@0
   111
                        Create a thread that will:
sl@0
   112
                        Modify a feature and verify that a response (KErrServerBusy) is received 
sl@0
   113
                        Query a feature and verify that a response is received (doesn't matter what the result is)
sl@0
   114
                        The thread should finished in less than 2 seconds.
sl@0
   115
                        Otherwise the test fail.          
sl@0
   116
@SYMTestExpectedResults Test must not fail
sl@0
   117
@SYMREQ                 
sl@0
   118
*/  
sl@0
   119
void TestRestoreResponseL()
sl@0
   120
    {
sl@0
   121
        _LIT(KThreadName, "RstTh");
sl@0
   122
        featMgrIsResponsive = EFalse;
sl@0
   123
        
sl@0
   124
        CFeatMgrBURSim* simulate = CFeatMgrBURSim::NewLC();
sl@0
   125
        RThread testThread;
sl@0
   126
        TRequestStatus testStatus;
sl@0
   127
        CleanupClosePushL( testThread );
sl@0
   128
        
sl@0
   129
        //Needs to ensure server is started before simulating backup operation
sl@0
   130
        RFeatureControl rfc;
sl@0
   131
        TTEST2( rfc.Connect(), KErrNone ); //This will start the server if not already started
sl@0
   132
        rfc.Close();
sl@0
   133
        
sl@0
   134
        simulate->Simulate_CheckRegFileL();
sl@0
   135
        
sl@0
   136
        // Simulate a restore
sl@0
   137
        RDebug::Print(_L("Simulating Restore of FeatMgr\r\n"));
sl@0
   138
        simulate->Simulate_StartRestoreL();
sl@0
   139
sl@0
   140
        TEST2( testThread.Create(KThreadName, &TestThreadL, 0x2000, 0x1000, 0x10000, NULL, EOwnerProcess), KErrNone );
sl@0
   141
        testThread.Logon(testStatus);
sl@0
   142
        TEST2( testStatus.Int(), KRequestPending );
sl@0
   143
        testThread.Resume();
sl@0
   144
        // Wait for 1.5 second for the query thread to finish. 
sl@0
   145
        RDebug::Print(_L("+++:MainThread: Wait for query and modification completion...\r\n"));
sl@0
   146
        MainThreadCrS.Wait(threadTimeout);
sl@0
   147
        // If query is responsive within the 1.5 second frame the following check should pass.
sl@0
   148
        TEST (featMgrIsResponsive);
sl@0
   149
        simulate->Simulate_EndRestoreL();
sl@0
   150
        
sl@0
   151
        CleanupStack::PopAndDestroy(&testThread);
sl@0
   152
        CleanupStack::PopAndDestroy(simulate);
sl@0
   153
    }
sl@0
   154
sl@0
   155
////////////////////////////////////////////////////////////////////////////////////
sl@0
   156
void DoTestsL()
sl@0
   157
	{
sl@0
   158
    MainThreadCrS.CreateLocal(0);
sl@0
   159
    
sl@0
   160
    TheTest.Start(_L(" @SYMTestCaseID:PDS-EFM-CT-4058 Restore Query and Modification Response"));
sl@0
   161
    TestRestoreResponseL();
sl@0
   162
    
sl@0
   163
    MainThreadCrS.Close();
sl@0
   164
sl@0
   165
	}
sl@0
   166
sl@0
   167
TInt E32Main()
sl@0
   168
	{
sl@0
   169
	TheTest.Title();
sl@0
   170
	
sl@0
   171
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   172
	
sl@0
   173
	__UHEAP_MARK;
sl@0
   174
	
sl@0
   175
	TRAPD(err, DoTestsL());
sl@0
   176
	TEST2(err, KErrNone);
sl@0
   177
sl@0
   178
	__UHEAP_MARKEND;
sl@0
   179
	
sl@0
   180
	TheTest.End();
sl@0
   181
	TheTest.Close();
sl@0
   182
	
sl@0
   183
	delete tc;
sl@0
   184
	
sl@0
   185
	User::Heap().Check();
sl@0
   186
	return KErrNone;
sl@0
   187
	}