Update contrib.
1 // Copyright (c) 2003-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.
14 // Actually - it has nothing to do with the heap.
15 // It tests the case when we have a pointer to an interface, implemented
16 // by the dll and dll is upgraded, the pointer needs to point to the upgraded version
20 #include <swi/launcher.h>
24 #include <ecom/ecom.h>
25 #include "EComUidCodes.h"
26 #include "HeapTestInterface.h"
34 LOCAL_D RTest test(_L("t_heaptest.exe"));
35 _LIT(KSisFilePath,"Z:\\HeapTestImpl\\HeapTestImpl.sis");
36 _LIT(KSisFilePath1,"Z:\\HeapTestImpl\\HeapTestImpl1.sis");
39 @SYMTestCaseID SYSLIB-ECOM-CT-0653
40 @SYMTestCaseDesc Tests the case when we have a pointer to an interface, implemented
41 by the dll and dll is upgraded, the pointer needs to point to the upgraded version
43 @SYMTestActions Query the interface,check the implementation UID,change its timestamp
44 replace with newer version(timestamp).
45 @SYMTestExpectedResults The test must not fail.
53 TPtrC str(KSisFilePath);
54 TPtrC str1(KSisFilePath1);
55 TFileName sisfilename;
56 sisfilename.Copy(str);
57 TUI *Ui = new(ELeave) TUI;
58 CleanupStack::PushL(Ui);
60 CInstallPrefs* prefs = CInstallPrefs::NewLC();
63 REComSession& session = REComSession::OpenL();
64 TRequestStatus status;
65 session.NotifyOnChange(status);
67 RDebug::Printf("installing sis file base version:");
68 //install HeapTestImpl.sis
69 TInt err=Launcher::Install(*Ui, sisfilename,*prefs);
71 User::WaitForRequest(status);
74 //Create the interface
75 CHeapTestInterface* intrf = CHeapTestInterface::NewL();
76 intrf->DisplayMessage();
77 RDebug::Printf("installed HeapTestImpl.sis- Base version");
80 //This API is needed to install the upgraded plugin only on winscw
81 REComSession::FinalClose() ;
83 sisfilename.Copy(str1);
84 RDebug::Printf("installing HeapTestImpl.sis- Upgraded version");
85 //install HeapTestImpl1.sis which is upgraded plugin
86 err=Launcher::Install(*Ui, sisfilename,*prefs);
89 CHeapTestInterface* intrf1 = CHeapTestInterface::NewL();
90 intrf1->DisplayMessage();
91 RDebug::Printf("installed HeapTestImpl.sis- Upgraded version");
94 CleanupStack::PopAndDestroy(2);
96 REComSession::FinalClose() ;
100 GLDEF_C TInt E32Main()
104 test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0653 HeapTest. "));
105 CTrapCleanup* cleanup = CTrapCleanup::New();
107 TRAPD(err, ::DoTestsL());