Update contrib.
1 // Copyright (c) 1997-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 // Started by BLB, May 1996
24 LOCAL_D RTest test(_L("Unloader"));
26 _LIT(KLibraryName, "libtst.tpr");
27 typedef CLibTest* (*NewTestL)();
28 typedef TLibAssoc<CLibTest> TTestAssoc;
31 @SYMTestCaseID SYSLIB-BAFL-CT-0415
32 @SYMTestCaseDesc CLibTest class functionality test
33 @SYMTestPriority Medium
34 @SYMTestActions Library tester
35 @SYMTestExpectedResults Tests must not fail
38 void testLibClass(CLibTest* aTester)
40 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0415 "));
41 test(aTester->Test1()==1);
42 test(aTester->Test2()==2);
43 test(aTester->Test3()==3);
47 @SYMTestCaseID SYSLIB-BAFL-CT-0416
48 @SYMTestCaseDesc Tests for constant CLibTest class
49 @SYMTestPriority Medium
50 @SYMTestActions Library tester
51 @SYMTestExpectedResults Tests must not fail
54 void testLibClassC(const CLibTest* aTester)
56 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0416 "));
57 test(aTester->Test1()==1);
58 test(aTester->Test2()==2);
62 @SYMTestCaseID SYSLIB-BAFL-CT-1283
63 @SYMTestCaseDesc Tests for RLibrary::Load(),RLibrary::Lookup() function
64 @SYMTestPriority Medium
65 @SYMTestActions Attempt to load a named DLL.
66 @SYMTestExpectedResults Tests must not fail
69 void LoadCreate(CLibTest*& aTest,RLibrary& aLib)
71 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1283 "));
72 TInt error=aLib.Load(KLibraryName);
73 test(error==KErrNone);
74 NewTestL createClass=(NewTestL)aLib.Lookup(1);
75 aTest=(*createClass)();
79 @SYMTestCaseID SYSLIB-BAFL-CT-0417
80 @SYMTestCaseDesc Manual load of library test
81 @SYMTestPriority Medium
82 @SYMTestActions Tests for library through manual load.
83 @SYMTestExpectedResults Tests must not fail
88 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0417 Manual "));
91 LoadCreate(tester,library);
93 testLibClassC(tester);
99 @SYMTestCaseID SYSLIB-BAFL-CT-0418
100 @SYMTestCaseDesc Smart load of library test
101 @SYMTestPriority Medium
102 @SYMTestActions Tests for library through smart load.
103 @SYMTestExpectedResults Tests must not fail
108 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0418 Smart "));
111 LoadCreate(tester,library);
112 testLibClass(tester);
113 testLibClassC(tester);
114 TTestAssoc assoc(library,tester);
115 testLibClass(assoc.Ptr());
116 testLibClassC(assoc.Ptr());
120 LoadCreate(tester,library);
122 assoc2.Set(library,tester);
124 // Following will panic since not cleared first
125 // LoadCreate(tester,library);
126 // assoc2.Set(library,tester);
128 // Following will not be possible
134 @SYMTestCaseID SYSLIB-BAFL-CT-0419
135 @SYMTestCaseDesc Smart load of library test
136 @SYMTestPriority Medium
137 @SYMTestActions Tests for Leave,cleanupstack on Leave
138 @SYMTestExpectedResults Tests must not fail
141 void testSmartLeaveL(TTestAssoc& aAssoc,TBool aLeave)
143 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0419 "));
144 CleanupStack::PushL((TCleanupItem)aAssoc);
146 User::Leave(KErrNone);
147 CleanupStack::PopAndDestroy();
151 @SYMTestCaseID SYSLIB-BAFL-CT-0420
152 @SYMTestCaseDesc Wrapper function calling library tester functions
153 @SYMTestPriority Medium
154 @SYMTestActions Call up library tester functions
155 @SYMTestExpectedResults Tests must not fail
158 void testSmartClass()
160 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0420 Pointer functions "));
163 LoadCreate(tester,library);
164 TTestAssoc assoc(library,tester);
166 testLibClassC(assoc);
169 LoadCreate(tester,library);
170 assoc.Set(library,tester);
171 TRAPD(error,testSmartLeaveL(assoc,ETrue));
172 test(error==KErrNone);
174 LoadCreate(tester,library);
175 assoc.Set(library,tester);
176 TRAP(error,testSmartLeaveL(assoc,EFalse));
177 test(error==KErrNone);
180 GLDEF_C TInt E32Main()
183 test.Start(_L("Unloader "));
184 TInt error=TheFs.Connect();
185 test(error==KErrNone);
187 CTrapCleanup *trapCleanup=CTrapCleanup::New();