os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/src/checkPlugin.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-2009 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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // @file
    15 // Centrep SWI test step declaration
    16 // 
    17 //
    18 
    19 #ifndef __CHECK_PLUGIN_H__
    20 #define __CHECK_PLUGIN_H__
    21 
    22 #include <test/testexecutestepbase.h>
    23 
    24 #include <e32base.h>
    25 #include "common.h"
    26 #include "TE_EComSWITestSuiteStepBase.h"
    27 #include <ecom/ecom.h>
    28 #include "CEComSwiPluginInterfaceDefiniton.h"
    29 
    30 
    31 const TInt KBufSize=64;
    32 
    33 
    34 class CCheckListImplementation : public CTe_EComSWITestSuiteStepBase
    35 	{
    36 public:	
    37 		enum TOperationType {EUseListImplUid};
    38 
    39     	CCheckListImplementation(TOperationType aOperationType);
    40     	~CCheckListImplementation();
    41 		
    42 		virtual TVerdict doTestStepPreambleL();
    43 		virtual TVerdict doTestStepPostambleL();
    44 		virtual TVerdict doTestStepL();
    45 	
    46 private:
    47 		TOperationType		iOperationType;
    48 		
    49 		RImplInfoPtrArray	iImplyArrayPtr;
    50 		TUid 				iInterfaceUid;
    51 		
    52 		// Plugin Implementation Properties
    53 		TUid 				iImplUid;
    54 		TInt				iImplCount;
    55 		TInt				iVersion;
    56 		TDriveUnit			iDrive;
    57 		TUid				iVendorID;
    58 	};
    59 
    60 
    61 class CCheckCreateImplementation : public CTe_EComSWITestSuiteStepBase
    62 	{
    63 public:	
    64 	enum TOperationType {EUseImplUidAndDtorID};
    65 
    66     CCheckCreateImplementation(TOperationType aOperationType);
    67     ~CCheckCreateImplementation();
    68 		
    69 	virtual TVerdict doTestStepPreambleL();
    70 	virtual TVerdict doTestStepPostambleL();
    71 	virtual TVerdict doTestStepL();
    72 	
    73 private:
    74 	TOperationType		iOperationType;
    75 	TUid 				iImplUid;
    76 
    77 	TUid				iDtorIDKey;
    78 	
    79 //	TBuf<KBufSize>		iClassImplPluginName;
    80 	TInt 				iInt;
    81 	};
    82 
    83 // Test step to issue a custom resolver list request.
    84 // The custom resolver used will be cached by ECOM
    85 class CUseCustomResolver : public CTe_EComSWITestSuiteStepBase
    86 	{
    87 public:	
    88     CUseCustomResolver();
    89     ~CUseCustomResolver();
    90 	virtual TVerdict doTestStepL();
    91 	};
    92 
    93 
    94 //INI File varables
    95 _LIT(KInterfaceUID, "InterfaceUID");
    96 _LIT(KImplUID, "ImplUID");
    97 _LIT(KExpectedCount, "Count");
    98 _LIT(KExpectedVersion, "Version");
    99 _LIT(KExpectedDrive, "DriveLetter");
   100 _LIT(KExpectedVendorID, "VendorID");
   101 _LIT(KExpectedErrorCheckPlugin, "ExpectedError");
   102 
   103 //_LIT(KPluginClassName, "PluginClass");
   104 _LIT(KExpectedPluginInt, "PluginInt");
   105 
   106 
   107 //Test Steps for ListImplementationL
   108 _LIT(KListImplUidStep, "CheckListImplUidStep");
   109 
   110 //Test Steps for CreatImplementationL
   111 _LIT(KCreateImpl_ImpId_DtorId_Step, "CheckCreateImpl_ImpId_DtorId_Step");
   112 
   113 //Test Steps for custom resolver cache
   114 _LIT(KUseCustomResolverStep, "UseCustomResolverStep");
   115 
   116 
   117 //Plugin Names
   118 //_LIT(KPlugin1, "CEComSwiPluginInterfaceImplementationOne");
   119 
   120 
   121 
   122 #endif //  __CHECK_PLUGIN_H__