os/ossrv/genericservices/mimerecognitionfw/tef/T_MstrStep.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2005-2009 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
// Harness for Mstr test code
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file 
sl@0
    20
 @internalComponent - Internal Symbian test code 
sl@0
    21
*/
sl@0
    22
sl@0
    23
sl@0
    24
#include <ecom/ecom.h>
sl@0
    25
#include "T_MstrStep.h"
sl@0
    26
sl@0
    27
/**
sl@0
    28
   Constructor
sl@0
    29
 */
sl@0
    30
CT_MstrStep::CT_MstrStep()
sl@0
    31
	{
sl@0
    32
	// Call base class method to set up the human readable name for logging
sl@0
    33
	SetTestStepName(KT_MstrStep);
sl@0
    34
	}
sl@0
    35
	
sl@0
    36
/**
sl@0
    37
   Destructor
sl@0
    38
 */
sl@0
    39
CT_MstrStep::~CT_MstrStep()
sl@0
    40
	{
sl@0
    41
	}
sl@0
    42
sl@0
    43
TVerdict CT_MstrStep::doTestStepL()
sl@0
    44
	{	
sl@0
    45
	INFO_PRINTF1(_L("Test Started"));
sl@0
    46
    TInt r = KErrNone;
sl@0
    47
    r = iFs.Connect();
sl@0
    48
    if (r != KErrNone)
sl@0
    49
        {
sl@0
    50
            User::Leave(r);
sl@0
    51
        }
sl@0
    52
	__UHEAP_MARK;
sl@0
    53
	TRAPD(ret,doMenuL());		
sl@0
    54
	TEST(ret==KErrNone);
sl@0
    55
	REComSession::FinalClose();
sl@0
    56
	__UHEAP_MARKEND;
sl@0
    57
	iFs.Close();
sl@0
    58
sl@0
    59
	INFO_PRINTF1(_L("Test Finished"));
sl@0
    60
	return TestStepResult();
sl@0
    61
	}
sl@0
    62
	
sl@0
    63
/**
sl@0
    64
   @SYMTestCaseID		T_MstrStep_doMenuL
sl@0
    65
  
sl@0
    66
   @SYMPREQ			
sl@0
    67
  
sl@0
    68
   @SYMTestCaseDesc 	Tests data type storage
sl@0
    69
  
sl@0
    70
   @SYMTestPriority 	High
sl@0
    71
  
sl@0
    72
   @SYMTestStatus 		Implemented
sl@0
    73
   
sl@0
    74
   @SYMTestActions  	The test creates a storage manager object, which is filled with some mapings.
sl@0
    75
   The first thing to verify is the correct insertion of these mappings, checking the type, uid
sl@0
    76
   and priority. Then the mappings are stored in an INI file, and restored from there to a new 
sl@0
    77
   storage manager object. The test checks that this new object is correct and equal to the
sl@0
    78
   previous one. The test also tries to find a non-existing app mapping, which gives a 0 Uid.
sl@0
    79
   API Calls:\n	
sl@0
    80
   CTypeStoreManager::NewL(RFs& aFs) \n
sl@0
    81
   CTypeStoreManager::InsertDataMappingL(const TDataType& aDataType, TDataTypePriority aPriority, TUid aUid) \n
sl@0
    82
   CTypeStoreManager::DeleteDataMapping(const TDataType& aDataType) \n
sl@0
    83
   CTypeStoreManager::GetAppByDataType(const TDataType& aDataType, TUid& aUid) const \n
sl@0
    84
   CTypeStoreManager::StoreL() \n
sl@0
    85
   CTypeStoreManager::ReStoreL() \n
sl@0
    86
   
sl@0
    87
   @SYMTestExpectedResults Test should complete without any panic.
sl@0
    88
   
sl@0
    89
 */
sl@0
    90
void CT_MstrStep::doMenuL()
sl@0
    91
	{
sl@0
    92
	INFO_PRINTF1(_L("Testing Data Type storage"));
sl@0
    93
	INFO_PRINTF1(_L("Creating CTypeStoreManager object"));
sl@0
    94
	CTypeStoreManager* mman = CTypeStoreManager::NewL(iFs);
sl@0
    95
	CleanupStack::PushL(mman);
sl@0
    96
sl@0
    97
	INFO_PRINTF1(_L("Adding some mappings to table"));
sl@0
    98
	lPopulateMappingTablesL(mman);
sl@0
    99
sl@0
   100
	INFO_PRINTF1(_L("Checking mappings in table"));
sl@0
   101
	lCheckMappingsL(mman);
sl@0
   102
		
sl@0
   103
	INFO_PRINTF1(_L("Storing to INI file"));
sl@0
   104
	mman->StoreL();
sl@0
   105
sl@0
   106
	INFO_PRINTF1(_L("Restoring from INI file to new object"));
sl@0
   107
	CTypeStoreManager* mman2 = CTypeStoreManager::NewL(iFs);
sl@0
   108
	CleanupStack::PushL(mman2);
sl@0
   109
	mman2->RestoreL();
sl@0
   110
sl@0
   111
	INFO_PRINTF1(_L("Checking restored correctly"));
sl@0
   112
sl@0
   113
	lCheckMappingsL(mman2);
sl@0
   114
sl@0
   115
	INFO_PRINTF1(_L("Trying to find non-existent app mappings"));
sl@0
   116
	TUid scratchUid;
sl@0
   117
	mman->GetAppByDataType(TDataType(_L8("non/existent")),scratchUid);
sl@0
   118
	TEST(scratchUid.iUid==0);
sl@0
   119
sl@0
   120
	INFO_PRINTF1(_L("Clearing table to original state"));
sl@0
   121
	lClearMappingTablesL(mman2);
sl@0
   122
sl@0
   123
	CleanupStack::PopAndDestroy(2); // managers
sl@0
   124
	}
sl@0
   125
sl@0
   126
const TUid KTestUidValue1={10101010}; 
sl@0
   127
const TUid KTestUidValue2={20202020}; 
sl@0
   128
const TUid KTestUidValue3={30303030}; 
sl@0
   129
sl@0
   130
void CT_MstrStep::lPopulateMappingTablesL(CTypeStoreManager* aMan)
sl@0
   131
	{
sl@0
   132
	aMan->InsertDataMappingL(TDataType(_L8("image/gif")),KDataTypePriorityNormal,KTestUidValue1);
sl@0
   133
	aMan->InsertDataMappingL(TDataType(_L8("text/plain")),KDataTypePriorityNormal,KTestUidValue2);
sl@0
   134
	aMan->InsertDataMappingL(TDataType(_L8("text/plain")),KDataTypePriorityNormal,KTestUidValue1,KTestUidValue3);
sl@0
   135
	aMan->InsertDataMappingL(TDataType(_L8("text/word")),KDataTypePriorityNormal,KTestUidValue2);
sl@0
   136
	aMan->InsertDataMappingL(TDataType(_L8("something/else")),KDataTypePriorityNormal,KTestUidValue3);
sl@0
   137
	}
sl@0
   138
sl@0
   139
void CT_MstrStep::lClearMappingTablesL(CTypeStoreManager* aMan)
sl@0
   140
	{
sl@0
   141
	aMan->DeleteDataMapping(TDataType(_L8("image/gif")));
sl@0
   142
	aMan->DeleteDataMapping(TDataType(_L8("text/plain")));
sl@0
   143
	aMan->DeleteDataMapping(TDataType(_L8("text/plain")), KTestUidValue3);
sl@0
   144
	aMan->DeleteDataMapping(TDataType(_L8("text/word")));
sl@0
   145
	aMan->DeleteDataMapping(TDataType(_L8("something/else")));
sl@0
   146
sl@0
   147
	aMan->StoreL();
sl@0
   148
	}
sl@0
   149
sl@0
   150
void CT_MstrStep::lCheckMappingsL(CTypeStoreManager* aTypeMan)
sl@0
   151
	{
sl@0
   152
	TUid scratchUid;
sl@0
   153
	aTypeMan->GetAppByDataType(TDataType(_L8("image/gif")),scratchUid);
sl@0
   154
	TEST(scratchUid==KTestUidValue1);
sl@0
   155
	aTypeMan->GetAppByDataType(TDataType(_L8("text/plain")),scratchUid);
sl@0
   156
	TEST(scratchUid==KTestUidValue2);
sl@0
   157
	aTypeMan->GetAppByDataType(TDataType(_L8("text/plain")),KTestUidValue3,scratchUid);
sl@0
   158
	TEST(scratchUid==KTestUidValue1);
sl@0
   159
	aTypeMan->GetAppByDataType(TDataType(_L8("text/word")),scratchUid);
sl@0
   160
	TEST(scratchUid==KTestUidValue2);
sl@0
   161
	aTypeMan->GetAppByDataType(TDataType(_L8("something/else")),scratchUid);
sl@0
   162
	TEST(scratchUid==KTestUidValue3);
sl@0
   163
	aTypeMan->GetAppByDataType(TDataType(_L8("image/*")),scratchUid);
sl@0
   164
	TEST(scratchUid==KTestUidValue1);
sl@0
   165
	
sl@0
   166
	TDataType nativeData(KTestUidValue3);
sl@0
   167
	TEST(nativeData.IsNative());
sl@0
   168
sl@0
   169
	CArrayFixFlat<TDataType>* array=new(ELeave) CArrayFixFlat<TDataType>(1);
sl@0
   170
	CleanupStack::PushL(array);
sl@0
   171
	aTypeMan->GetDataTypesByAppL(KTestUidValue1,array);
sl@0
   172
	TEST(array->Count()==1);
sl@0
   173
	TEST((*array)[0]==TDataType(_L8("image/gif")));
sl@0
   174
	array->Delete(0);
sl@0
   175
	aTypeMan->GetDataTypesByAppL(KTestUidValue2,array);
sl@0
   176
	TEST(array->Count()==2);
sl@0
   177
	TEST((*array)[0]==TDataType(_L8("text/plain")));
sl@0
   178
	TEST((*array)[1]==TDataType(_L8("text/word")));
sl@0
   179
	array->Delete(0,2);
sl@0
   180
	aTypeMan->GetDataTypesByAppL(KTestUidValue3,array);
sl@0
   181
	TEST(array->Count()==1);
sl@0
   182
	TEST((*array)[0]==TDataType(_L8("something/else")));
sl@0
   183
	array->Delete(0);
sl@0
   184
	TUid uid;
sl@0
   185
	uid.iUid=0;
sl@0
   186
	aTypeMan->GetDataTypesByAppL(uid,array);
sl@0
   187
	TEST(array->Count()==4);
sl@0
   188
	CleanupStack::PopAndDestroy(); // array
sl@0
   189
	}