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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
15 // Centrep SWI test step declaration
19 #ifndef __CHECK_PLUGIN_H__
20 #define __CHECK_PLUGIN_H__
22 #include <test/testexecutestepbase.h>
26 #include "TE_EComSWITestSuiteStepBase.h"
27 #include <ecom/ecom.h>
28 #include "CEComSwiPluginInterfaceDefiniton.h"
31 const TInt KBufSize=64;
34 class CCheckListImplementation : public CTe_EComSWITestSuiteStepBase
37 enum TOperationType {EUseListImplUid};
39 CCheckListImplementation(TOperationType aOperationType);
40 ~CCheckListImplementation();
42 virtual TVerdict doTestStepPreambleL();
43 virtual TVerdict doTestStepPostambleL();
44 virtual TVerdict doTestStepL();
47 TOperationType iOperationType;
49 RImplInfoPtrArray iImplyArrayPtr;
52 // Plugin Implementation Properties
61 class CCheckCreateImplementation : public CTe_EComSWITestSuiteStepBase
64 enum TOperationType {EUseImplUidAndDtorID};
66 CCheckCreateImplementation(TOperationType aOperationType);
67 ~CCheckCreateImplementation();
69 virtual TVerdict doTestStepPreambleL();
70 virtual TVerdict doTestStepPostambleL();
71 virtual TVerdict doTestStepL();
74 TOperationType iOperationType;
79 // TBuf<KBufSize> iClassImplPluginName;
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
89 ~CUseCustomResolver();
90 virtual TVerdict doTestStepL();
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");
103 //_LIT(KPluginClassName, "PluginClass");
104 _LIT(KExpectedPluginInt, "PluginInt");
107 //Test Steps for ListImplementationL
108 _LIT(KListImplUidStep, "CheckListImplUidStep");
110 //Test Steps for CreatImplementationL
111 _LIT(KCreateImpl_ImpId_DtorId_Step, "CheckCreateImpl_ImpId_DtorId_Step");
113 //Test Steps for custom resolver cache
114 _LIT(KUseCustomResolverStep, "UseCustomResolverStep");
118 //_LIT(KPlugin1, "CEComSwiPluginInterfaceImplementationOne");
122 #endif // __CHECK_PLUGIN_H__