1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/HeapTest/T_HeapTest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,115 @@
1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Actually - it has nothing to do with the heap.
1.18 +// It tests the case when we have a pointer to an interface, implemented
1.19 +// by the dll and dll is upgraded, the pointer needs to point to the upgraded version
1.20 +//
1.21 +//
1.22 +
1.23 +#include <swi/launcher.h>
1.24 +#include <e32test.h>
1.25 +#include <f32file.h>
1.26 +#include <bautils.h>
1.27 +#include <ecom/ecom.h>
1.28 +#include "EComUidCodes.h"
1.29 +#include "HeapTestInterface.h"
1.30 +#include "tui.h"
1.31 +
1.32 +
1.33 +
1.34 +
1.35 +using namespace Swi;
1.36 +
1.37 +LOCAL_D RTest test(_L("t_heaptest.exe"));
1.38 +_LIT(KSisFilePath,"Z:\\HeapTestImpl\\HeapTestImpl.sis");
1.39 +_LIT(KSisFilePath1,"Z:\\HeapTestImpl\\HeapTestImpl1.sis");
1.40 +
1.41 + /**
1.42 + @SYMTestCaseID SYSLIB-ECOM-CT-0653
1.43 + @SYMTestCaseDesc Tests the case when we have a pointer to an interface, implemented
1.44 + by the dll and dll is upgraded, the pointer needs to point to the upgraded version
1.45 + @SYMTestPriority High
1.46 + @SYMTestActions Query the interface,check the implementation UID,change its timestamp
1.47 + replace with newer version(timestamp).
1.48 + @SYMTestExpectedResults The test must not fail.
1.49 + @SYMREQ REQ0000
1.50 + */
1.51 +
1.52 +
1.53 +void DoTestsL()
1.54 + {
1.55 +
1.56 + TPtrC str(KSisFilePath);
1.57 + TPtrC str1(KSisFilePath1);
1.58 + TFileName sisfilename;
1.59 + sisfilename.Copy(str);
1.60 + TUI *Ui = new(ELeave) TUI;
1.61 + CleanupStack::PushL(Ui);
1.62 +
1.63 + CInstallPrefs* prefs = CInstallPrefs::NewLC();
1.64 +
1.65 +
1.66 + REComSession& session = REComSession::OpenL();
1.67 + TRequestStatus status;
1.68 + session.NotifyOnChange(status);
1.69 +
1.70 + RDebug::Printf("installing sis file base version:");
1.71 + //install HeapTestImpl.sis
1.72 + TInt err=Launcher::Install(*Ui, sisfilename,*prefs);
1.73 + test(err==KErrNone);
1.74 + User::WaitForRequest(status);
1.75 +
1.76 +
1.77 + //Create the interface
1.78 + CHeapTestInterface* intrf = CHeapTestInterface::NewL();
1.79 + intrf->DisplayMessage();
1.80 + RDebug::Printf("installed HeapTestImpl.sis- Base version");
1.81 + delete intrf;
1.82 +
1.83 + //This API is needed to install the upgraded plugin only on winscw
1.84 + REComSession::FinalClose() ;
1.85 +
1.86 + sisfilename.Copy(str1);
1.87 + RDebug::Printf("installing HeapTestImpl.sis- Upgraded version");
1.88 + //install HeapTestImpl1.sis which is upgraded plugin
1.89 + err=Launcher::Install(*Ui, sisfilename,*prefs);
1.90 + test(err==KErrNone);
1.91 +
1.92 + CHeapTestInterface* intrf1 = CHeapTestInterface::NewL();
1.93 + intrf1->DisplayMessage();
1.94 + RDebug::Printf("installed HeapTestImpl.sis- Upgraded version");
1.95 + delete intrf1;
1.96 +
1.97 + CleanupStack::PopAndDestroy(2);
1.98 + session.Close();
1.99 + REComSession::FinalClose() ;
1.100 + }
1.101 +
1.102 +
1.103 +GLDEF_C TInt E32Main()
1.104 + {
1.105 + __UHEAP_MARK;
1.106 + test.Title();
1.107 + test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0653 HeapTest. "));
1.108 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.109 +
1.110 + TRAPD(err, ::DoTestsL());
1.111 + delete cleanup;
1.112 + test(err==KErrNone);
1.113 + test.End();
1.114 + test.Close();
1.115 + __UHEAP_MARKEND;
1.116 + return err;
1.117 + }
1.118 +