1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_LIBA.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,198 @@
1.4 +// Copyright (c) 1997-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 +// Started by BLB, May 1996
1.18 +// Test comms device
1.19 +//
1.20 +//
1.21 +
1.22 +#include <e32test.h>
1.23 +#include <f32file.h>
1.24 +#include "T_LIBT.H"
1.25 +#include <baliba.h>
1.26 +
1.27 +LOCAL_D RTest test(_L("Unloader"));
1.28 +LOCAL_D RFs TheFs;
1.29 +_LIT(KLibraryName, "libtst.tpr");
1.30 +typedef CLibTest* (*NewTestL)();
1.31 +typedef TLibAssoc<CLibTest> TTestAssoc;
1.32 +
1.33 +/**
1.34 +@SYMTestCaseID SYSLIB-BAFL-CT-0415
1.35 +@SYMTestCaseDesc CLibTest class functionality test
1.36 +@SYMTestPriority Medium
1.37 +@SYMTestActions Library tester
1.38 +@SYMTestExpectedResults Tests must not fail
1.39 +@SYMREQ REQ0000
1.40 +*/
1.41 +void testLibClass(CLibTest* aTester)
1.42 + {
1.43 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0415 "));
1.44 + test(aTester->Test1()==1);
1.45 + test(aTester->Test2()==2);
1.46 + test(aTester->Test3()==3);
1.47 + }
1.48 +
1.49 +/**
1.50 +@SYMTestCaseID SYSLIB-BAFL-CT-0416
1.51 +@SYMTestCaseDesc Tests for constant CLibTest class
1.52 +@SYMTestPriority Medium
1.53 +@SYMTestActions Library tester
1.54 +@SYMTestExpectedResults Tests must not fail
1.55 +@SYMREQ REQ0000
1.56 +*/
1.57 +void testLibClassC(const CLibTest* aTester)
1.58 + {
1.59 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0416 "));
1.60 + test(aTester->Test1()==1);
1.61 + test(aTester->Test2()==2);
1.62 + }
1.63 +
1.64 +/**
1.65 +@SYMTestCaseID SYSLIB-BAFL-CT-1283
1.66 +@SYMTestCaseDesc Tests for RLibrary::Load(),RLibrary::Lookup() function
1.67 +@SYMTestPriority Medium
1.68 +@SYMTestActions Attempt to load a named DLL.
1.69 +@SYMTestExpectedResults Tests must not fail
1.70 +@SYMREQ REQ0000
1.71 +*/
1.72 +void LoadCreate(CLibTest*& aTest,RLibrary& aLib)
1.73 + {
1.74 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1283 "));
1.75 + TInt error=aLib.Load(KLibraryName);
1.76 + test(error==KErrNone);
1.77 + NewTestL createClass=(NewTestL)aLib.Lookup(1);
1.78 + aTest=(*createClass)();
1.79 + }
1.80 +
1.81 +/**
1.82 +@SYMTestCaseID SYSLIB-BAFL-CT-0417
1.83 +@SYMTestCaseDesc Manual load of library test
1.84 +@SYMTestPriority Medium
1.85 +@SYMTestActions Tests for library through manual load.
1.86 +@SYMTestExpectedResults Tests must not fail
1.87 +@SYMREQ REQ0000
1.88 +*/
1.89 +void testManualLoad()
1.90 + {
1.91 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0417 Manual "));
1.92 + RLibrary library;
1.93 + CLibTest* tester;
1.94 + LoadCreate(tester,library);
1.95 + testLibClass(tester);
1.96 + testLibClassC(tester);
1.97 + delete(tester);
1.98 + library.Close();
1.99 + }
1.100 +
1.101 +/**
1.102 +@SYMTestCaseID SYSLIB-BAFL-CT-0418
1.103 +@SYMTestCaseDesc Smart load of library test
1.104 +@SYMTestPriority Medium
1.105 +@SYMTestActions Tests for library through smart load.
1.106 +@SYMTestExpectedResults Tests must not fail
1.107 +@SYMREQ REQ0000
1.108 +*/
1.109 +void testSmartLoad()
1.110 + {
1.111 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0418 Smart "));
1.112 + RLibrary library;
1.113 + CLibTest* tester;
1.114 + LoadCreate(tester,library);
1.115 + testLibClass(tester);
1.116 + testLibClassC(tester);
1.117 + TTestAssoc assoc(library,tester);
1.118 + testLibClass(assoc.Ptr());
1.119 + testLibClassC(assoc.Ptr());
1.120 + assoc.Unload();
1.121 + assoc.Unload();
1.122 + //
1.123 + LoadCreate(tester,library);
1.124 + TTestAssoc assoc2;
1.125 + assoc2.Set(library,tester);
1.126 + //
1.127 +// Following will panic since not cleared first
1.128 +// LoadCreate(tester,library);
1.129 +// assoc2.Set(library,tester);
1.130 + //
1.131 +// Following will not be possible
1.132 +// delete(assoc2);
1.133 + assoc2.Unload();
1.134 + }
1.135 +
1.136 +/**
1.137 +@SYMTestCaseID SYSLIB-BAFL-CT-0419
1.138 +@SYMTestCaseDesc Smart load of library test
1.139 +@SYMTestPriority Medium
1.140 +@SYMTestActions Tests for Leave,cleanupstack on Leave
1.141 +@SYMTestExpectedResults Tests must not fail
1.142 +@SYMREQ REQ0000
1.143 +*/
1.144 +void testSmartLeaveL(TTestAssoc& aAssoc,TBool aLeave)
1.145 + {
1.146 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0419 "));
1.147 + CleanupStack::PushL((TCleanupItem)aAssoc);
1.148 + if (aLeave)
1.149 + User::Leave(KErrNone);
1.150 + CleanupStack::PopAndDestroy();
1.151 + }
1.152 +
1.153 +/**
1.154 +@SYMTestCaseID SYSLIB-BAFL-CT-0420
1.155 +@SYMTestCaseDesc Wrapper function calling library tester functions
1.156 +@SYMTestPriority Medium
1.157 +@SYMTestActions Call up library tester functions
1.158 +@SYMTestExpectedResults Tests must not fail
1.159 +@SYMREQ REQ0000
1.160 +*/
1.161 +void testSmartClass()
1.162 + {
1.163 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0420 Pointer functions "));
1.164 + RLibrary library;
1.165 + CLibTest* tester;
1.166 + LoadCreate(tester,library);
1.167 + TTestAssoc assoc(library,tester);
1.168 + testLibClass(assoc);
1.169 + testLibClassC(assoc);
1.170 + assoc.Unload();
1.171 + //
1.172 + LoadCreate(tester,library);
1.173 + assoc.Set(library,tester);
1.174 + TRAPD(error,testSmartLeaveL(assoc,ETrue));
1.175 + test(error==KErrNone);
1.176 + //
1.177 + LoadCreate(tester,library);
1.178 + assoc.Set(library,tester);
1.179 + TRAP(error,testSmartLeaveL(assoc,EFalse));
1.180 + test(error==KErrNone);
1.181 + }
1.182 +
1.183 +GLDEF_C TInt E32Main()
1.184 + {
1.185 + test.Title();
1.186 + test.Start(_L("Unloader "));
1.187 + TInt error=TheFs.Connect();
1.188 + test(error==KErrNone);
1.189 + __UHEAP_MARK;
1.190 + CTrapCleanup *trapCleanup=CTrapCleanup::New();
1.191 + //
1.192 + testManualLoad();
1.193 + testSmartLoad();
1.194 + testSmartClass();
1.195 + //
1.196 + delete(trapCleanup);
1.197 + __UHEAP_MARKEND;
1.198 + test.End();
1.199 + test.Close();
1.200 + return(0);
1.201 + }