First public contribution.
1 // Copyright (c) 2006-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.
17 #include <ecom/ecom.h>
18 #include "Interface.h" // ECOM CExampleInterface class
19 #include "exampleNine.h" // CRoguePlugin class
22 //Test utils for copying plugin to C
23 #include "EcomTestUtils.h"
25 _LIT(KTestTitle, "DEF094656 Rogue plugin should not override build-in");
27 LOCAL_D RTest TheTest(_L("Rogue plugin with duplicated Impl. UID"));
29 LOCAL_D TBool correctTypeCastPassed = EFalse;
31 _LIT(KRoguePluginDllOnZ, "Z:\\RAMOnly\\exampleNine.dll");
32 _LIT(KRoguePluginDllOnC, "C:\\sys\\bin\\exampleNine.dll");
33 _LIT(KRoguePluginRscOnZ, "Z:\\RAMOnly\\exampleNine.rsc");
34 _LIT(KRoguePluginRscOnC, "C:\\resource\\plugins\\exampleNine.rsc");
36 /** Copy the rogue plugin to C: drive
38 LOCAL_C void CopyPluginsL()
40 // Copy the dlls and .rsc files on to RAM
41 EComTestUtils::FileManCopyFileL(KRoguePluginDllOnZ, KRoguePluginDllOnC);
42 EComTestUtils::FileManCopyFileL(KRoguePluginRscOnZ, KRoguePluginRscOnC);
43 // Pause in case ECOM server is already up and running and needs
44 // time to activate the scanning timer active object.
48 /** Remove resource file and dll copied to C: drive
50 LOCAL_C void DeleteTestPlugin()
52 TRAPD(ignoreErr, EComTestUtils::FileManDeleteFileL(KRoguePluginRscOnC));
53 TRAP(ignoreErr, EComTestUtils::RLoaderDeleteFileL(KRoguePluginDllOnC));
57 Test rogue plugin trying to override a ROM based plugin by
58 duplicating the legitimate DLL's implementation UID (different
59 interface UID so that ECOM not treat it as an update).
61 @SYMTestCaseID SYSLIB-ECOM-CIT-3161
62 @SYMTestCaseDesc Copy a rogue plugin to C drive. This plugin duplicates the
63 implementation UID of a built-in dll. Test if the rogue
64 plugin will over shadow the built-in dll.
66 @SYMTestActions 1. copy the rsc and dll of the rogue plugin to C:
67 2. Use the CreateImplementation API which does not specify
68 the i/f UID to instantiate the built-in implementation.
69 Test the instance works normally.
70 3. Repeat 2 but instantiate the pointer as the rogue plugin
71 class. Pass NULL as the initialising param in the call
72 to CreateImplementationL. Because the actual plugin returned by
73 ECOM needs this initParam, KERN-EXEC 3 panic occurs.
74 @SYMTestExpectedResults The test must not fail.
77 LOCAL_C void DEF094656_TestCaseL()
79 // DuplicateImplUidTestL SYSLIB-ECOM-CT-3157 is similar to this testcase.
80 // CT-3157 tests higher driver letter > lower driver letter,
81 // and lower i/f UID > higher i/f UID.
83 // Note that this function is expected to panic. Hence not bother
86 //Check if the rogue plugin is in the registry.
87 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CIT-3161 "));
88 RImplInfoPtrArray ifArray;
89 REComSession::ListImplementationsL(KRogueInterfaceUid, ifArray);
91 TInt count = ifArray.Count();
92 TheTest.Printf(_L("Found %d implementations of I/f 0x%X"), count, KRogueInterfaceUid.iUid);
95 TheTest(KRogueImplUid == ifArray[0]->ImplementationUid());
97 ifArray.ResetAndDestroy();
100 // Initialisation parameter needed by CImplementationClassOne
101 CExampleInterface::TExampleInterfaceInitParams initParams;
102 initParams.integer = 0;
103 initParams.descriptor = NULL;
105 // First test creating the correct class.
106 CExampleInterface* correctDll = reinterpret_cast<CExampleInterface*>(
107 REComSession::CreateImplementationL(KRogueImplUid,
110 TheTest(correctDll != NULL);
112 TUid testUid = correctDll->ImplId();
113 // the example plugins should return the value 10009DC3.
114 TheTest(testUid == KRogueImplUid);
116 REComSession::DestroyedImplementation(dtor_key);
119 // Indicate to thread creator that first stage test passed.
120 correctTypeCastPassed = ETrue;
122 // This create should crash because the plugin returned by
123 // ECOM is really CImplementationClassOne which needs a properly
124 // constructed initParam.
125 CRoguePlugin* wrongDll = reinterpret_cast<CRoguePlugin*>(
126 REComSession::CreateImplementationL(KRogueImplUid,
130 // If gets here then someone has changed CImplementationClassOne::NewL
131 // or 10009DC3 has been updated by another implementation.
134 REComSession::DestroyedImplementation(dtor_key);
138 REComSession::FinalClose();
143 LOCAL_C void ThreadMainL()
145 CConsoleBase* newConsole = Console::NewL(KTestTitle,
146 TSize(KConsFullScreen, KConsFullScreen));
148 // Thread creator needs to save the original console because this
149 // thread is expected to crash, hence cannot cleanup.
150 TheTest.SetConsole(newConsole);
151 DEF094656_TestCaseL();
152 TheTest.SetConsole(NULL);
157 LOCAL_C TInt ThreadFunc(TAny*)
160 CTrapCleanup* threadcleanup = CTrapCleanup::New();
161 TRAPD(err, ThreadMainL());
162 delete threadcleanup;
167 LOCAL_C void RunTestThreadL()
173 _LIT(KThreadName, "RoguePluginTest");
175 TBool jit = User::JustInTime();
176 User::SetJustInTime(EFalse);
178 TheTest.Start(KTestTitle);
180 // Save the console because the created thread must use its own
182 CConsoleBase* savedConsole = TheTest.Console();
185 TInt err = tt.Create(KThreadName, &ThreadFunc, KDefaultStackSize,
186 KMinHeapSize, 0x100000, 0);
187 User::LeaveIfError(err);
189 TRequestStatus status;
193 User::WaitForRequest(status);
196 TheTest.SetConsole(savedConsole);
198 TExitCategoryName exitcategory = tt.ExitCategory();
199 TExitType exittype = tt.ExitType();
200 TInt exitReason = tt.ExitReason();
203 TheTest.Printf(_L("Thread exit type %d, reason %d, category %S"), exittype, exitReason, &exitcategory);
205 User::SetJustInTime(jit);
208 // Check if tt thread passes this checkpoint
209 TheTest(correctTypeCastPassed);
211 // Check if tt thread die of KERN-EXEC.
212 _LIT(KKernExec, "KERN-EXEC");
213 TheTest(exitcategory.CompareF(KKernExec) == 0);
221 GLDEF_C TInt E32Main()
225 CTrapCleanup* cleanup = CTrapCleanup::New();
226 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
227 CActiveScheduler::Install(scheduler);
229 TRAP_IGNORE( RunTestThreadL() );