os/ossrv/lowlevellibsandfws/pluginfw/Framework/T_PlatSecTest/T_PlatSecTest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "e32test.h"
    17 #include <ecom/ecom.h>
    18 #include "T_PlatSecInterface.h"
    19 
    20 LOCAL_D RTest Test(_L("T_PlatSecTest"));
    21 
    22 /**
    23 @SYMTestCaseID          SYSLIB-ECOM-CT-0784
    24 @SYMTestCaseDesc	    Tests for list Implementations created with two different UID
    25 @SYMTestPriority 	    High
    26 @SYMTestActions  	    Create new implementations with two different UID.
    27                         Execute REComSession::FinalClose
    28 @SYMTestExpectedResults Test must not fail
    29 @SYMREQ                 REQ0000
    30 */
    31 static void DoTestsL()
    32 	{
    33 	Test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0784 CPlatSecInterface1 "));
    34 	//Load the first plugin interface. It should be OK - no PlatSec warnings reported.
    35 	CPlatSecInterface1* p1 = NULL;
    36 	TRAPD(err, p1 = CPlatSecInterface1::NewL());
    37 	if(err == KErrNone)
    38 		{
    39 		TUid implUid = p1->ImplId();
    40 		Test(implUid == KUidPlatSecECom1Impl);
    41 		}
    42 	delete p1;
    43 
    44 	Test.Next(_L("CPlatSecInterface2"));
    45 	//Load the second plugin interface. PlatSec warnings will be printed out.
    46 	CPlatSecInterface2* p2 = NULL;
    47 	TRAP(err, p2 = CPlatSecInterface2::NewL());
    48 	if(err == KErrNone)
    49 		{
    50 		TUid implUid = p2->ImplId();
    51 		Test(implUid == KUidPlatSecECom2Impl);
    52 		}
    53 	delete p2;
    54 
    55 	REComSession::FinalClose();
    56 	}
    57 
    58 GLDEF_C TInt E32Main()
    59 	{
    60 	__UHEAP_MARK;
    61 
    62 	Test.Title();
    63 	Test.Start(_L("ListImplementationsL tests."));
    64 
    65 	CTrapCleanup* cleanup = CTrapCleanup::New();
    66 
    67 	//install the scheduler
    68 	CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
    69 	CActiveScheduler::Install(scheduler);
    70 
    71 	TRAPD(err, ::DoTestsL());
    72 
    73 	delete scheduler;
    74 	delete cleanup;
    75 
    76 	Test(err==KErrNone);
    77 
    78 	Test.End();
    79 	Test.Close();
    80 
    81 	__UHEAP_MARKEND;
    82 
    83 	return KErrNone;
    84 	}
    85 
    86 
    87