os/ossrv/lowlevellibsandfws/pluginfw/Framework/HeapTest/T_HeapTest.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Actually - it has nothing to do with the heap.
sl@0
    15
// It tests the case when we have a pointer to an interface, implemented
sl@0
    16
// by the dll and dll is upgraded, the pointer needs to point to the upgraded version
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
#include <swi/launcher.h>
sl@0
    21
#include <e32test.h>
sl@0
    22
#include <f32file.h>
sl@0
    23
#include <bautils.h>
sl@0
    24
#include <ecom/ecom.h>
sl@0
    25
#include "EComUidCodes.h"
sl@0
    26
#include "HeapTestInterface.h"
sl@0
    27
#include "tui.h"
sl@0
    28
sl@0
    29
sl@0
    30
sl@0
    31
sl@0
    32
using namespace Swi;
sl@0
    33
        
sl@0
    34
LOCAL_D RTest test(_L("t_heaptest.exe"));
sl@0
    35
_LIT(KSisFilePath,"Z:\\HeapTestImpl\\HeapTestImpl.sis");
sl@0
    36
_LIT(KSisFilePath1,"Z:\\HeapTestImpl\\HeapTestImpl1.sis");
sl@0
    37
sl@0
    38
  /**
sl@0
    39
  @SYMTestCaseID          SYSLIB-ECOM-CT-0653
sl@0
    40
  @SYMTestCaseDesc			Tests the case when we have a pointer to an interface, implemented
sl@0
    41
							by the dll and dll is upgraded, the pointer needs to point to the upgraded version
sl@0
    42
  @SYMTestPriority 	    High
sl@0
    43
  @SYMTestActions  	    Query the interface,check the implementation UID,change its timestamp
sl@0
    44
                          replace with newer version(timestamp).
sl@0
    45
  @SYMTestExpectedResults The test must not fail.
sl@0
    46
  @SYMREQ                 REQ0000
sl@0
    47
 */
sl@0
    48
sl@0
    49
sl@0
    50
void DoTestsL()
sl@0
    51
	{
sl@0
    52
sl@0
    53
		TPtrC str(KSisFilePath);
sl@0
    54
		TPtrC str1(KSisFilePath1);
sl@0
    55
		TFileName sisfilename;
sl@0
    56
		sisfilename.Copy(str);
sl@0
    57
		TUI *Ui = new(ELeave) TUI;
sl@0
    58
		CleanupStack::PushL(Ui);
sl@0
    59
sl@0
    60
		CInstallPrefs* prefs = CInstallPrefs::NewLC();
sl@0
    61
			
sl@0
    62
		
sl@0
    63
		REComSession& session = REComSession::OpenL();
sl@0
    64
		TRequestStatus status;
sl@0
    65
		session.NotifyOnChange(status);
sl@0
    66
		
sl@0
    67
		RDebug::Printf("installing sis file base version:");
sl@0
    68
		//install HeapTestImpl.sis
sl@0
    69
		TInt err=Launcher::Install(*Ui, sisfilename,*prefs);
sl@0
    70
		test(err==KErrNone);
sl@0
    71
		User::WaitForRequest(status);
sl@0
    72
		
sl@0
    73
sl@0
    74
		//Create the interface
sl@0
    75
		CHeapTestInterface* intrf = CHeapTestInterface::NewL();
sl@0
    76
		intrf->DisplayMessage();
sl@0
    77
		RDebug::Printf("installed HeapTestImpl.sis- Base version");
sl@0
    78
		delete intrf;
sl@0
    79
		
sl@0
    80
		//This API is needed to install the upgraded plugin only on winscw
sl@0
    81
		REComSession::FinalClose() ;
sl@0
    82
sl@0
    83
		sisfilename.Copy(str1);
sl@0
    84
		RDebug::Printf("installing HeapTestImpl.sis- Upgraded  version");
sl@0
    85
		//install HeapTestImpl1.sis which is upgraded plugin
sl@0
    86
		err=Launcher::Install(*Ui, sisfilename,*prefs);
sl@0
    87
		test(err==KErrNone);  	
sl@0
    88
		
sl@0
    89
		CHeapTestInterface* intrf1 = CHeapTestInterface::NewL();
sl@0
    90
		intrf1->DisplayMessage();
sl@0
    91
		RDebug::Printf("installed HeapTestImpl.sis- Upgraded  version");
sl@0
    92
		delete intrf1;
sl@0
    93
	
sl@0
    94
		CleanupStack::PopAndDestroy(2);
sl@0
    95
		session.Close();
sl@0
    96
		REComSession::FinalClose() ;
sl@0
    97
	}
sl@0
    98
sl@0
    99
sl@0
   100
GLDEF_C TInt E32Main()
sl@0
   101
	{
sl@0
   102
	__UHEAP_MARK;
sl@0
   103
	test.Title();
sl@0
   104
	test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0653 HeapTest. "));
sl@0
   105
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   106
sl@0
   107
	TRAPD(err, ::DoTestsL());
sl@0
   108
	delete cleanup;
sl@0
   109
	test(err==KErrNone);
sl@0
   110
	test.End();
sl@0
   111
	test.Close();
sl@0
   112
	__UHEAP_MARKEND;
sl@0
   113
	return err;
sl@0
   114
	}
sl@0
   115