sl@0
|
1 |
// Copyright (c) 1997-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 |
// Started by DWW, October 1996
|
sl@0
|
15 |
// Tests cliboard
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32test.h>
|
sl@0
|
20 |
#include <baclipb.h>
|
sl@0
|
21 |
#include <bautils.h>
|
sl@0
|
22 |
#include <f32file.h>
|
sl@0
|
23 |
#include <s32strm.h>
|
sl@0
|
24 |
#include <s32stor.h>
|
sl@0
|
25 |
#include <s32file.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
LOCAL_D RTest test(_L("T_CLIPB"));
|
sl@0
|
28 |
|
sl@0
|
29 |
const TUid KClipboardFileUid={268435515};
|
sl@0
|
30 |
const TUid KUidNameClipboardType={77001};
|
sl@0
|
31 |
const TUid KUidAddressClipboardType={77002};
|
sl@0
|
32 |
const TUid KUidNumberClipboardType={77003};
|
sl@0
|
33 |
const TUid KUidTestType={77004};
|
sl@0
|
34 |
|
sl@0
|
35 |
const TPtrC KClipboardFileCDrive=_L("C:\\System\\Data\\ClpBoard.cbd");
|
sl@0
|
36 |
const TPtrC KClipboardFileDDrive=_L("D:\\System\\Data\\ClpBoard.cbd");
|
sl@0
|
37 |
const TPtrC KClipboardFileEDrive=_L("E:\\System\\Data\\ClpBoard.cbd");
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
* NOTE :- On order to run this test in WINS, there must exist a mapping for the drives
|
sl@0
|
40 |
* used above. So in Epoc32\Data add the following lines to epoc.ini...
|
sl@0
|
41 |
*
|
sl@0
|
42 |
* _epoc_drive_d \epoc32\wins\d
|
sl@0
|
43 |
* _epoc_drive_e \epoc32\wins\e
|
sl@0
|
44 |
*
|
sl@0
|
45 |
* only needed for drive D & E as there is a mapping for drive C.
|
sl@0
|
46 |
* Plus make sure that the the above directories (\epoc32\wins\d & e) exist.
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
|
sl@0
|
49 |
class TClBase
|
sl@0
|
50 |
{
|
sl@0
|
51 |
public:
|
sl@0
|
52 |
virtual void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const=0;
|
sl@0
|
53 |
virtual TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)=0;
|
sl@0
|
54 |
void CopyL();
|
sl@0
|
55 |
TBool PasteL();
|
sl@0
|
56 |
TBool PasteWithoutClipboardL();
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
void DoCopyL(RFs& aFsSession);
|
sl@0
|
59 |
TBool DoPasteL(RFs& aFsSession);
|
sl@0
|
60 |
};
|
sl@0
|
61 |
|
sl@0
|
62 |
void TClBase::CopyL()
|
sl@0
|
63 |
{
|
sl@0
|
64 |
RFs fsSession;
|
sl@0
|
65 |
User::LeaveIfError(fsSession.Connect());
|
sl@0
|
66 |
TRAPD(err,DoCopyL(fsSession));
|
sl@0
|
67 |
fsSession.Close();
|
sl@0
|
68 |
User::LeaveIfError(err);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
void TClBase::DoCopyL(RFs& aFsSession)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
CClipboard* cb=CClipboard::NewForWritingLC(aFsSession);
|
sl@0
|
74 |
CopyToClipboardL(cb->Store(),cb->StreamDictionary());
|
sl@0
|
75 |
cb->CommitL();
|
sl@0
|
76 |
CleanupStack::PopAndDestroy();
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
TBool TClBase::PasteL()
|
sl@0
|
80 |
{
|
sl@0
|
81 |
RFs fsSession;
|
sl@0
|
82 |
User::LeaveIfError(fsSession.Connect());
|
sl@0
|
83 |
TBool res=EFalse;
|
sl@0
|
84 |
TRAPD(err,res=DoPasteL(fsSession));
|
sl@0
|
85 |
fsSession.Close();
|
sl@0
|
86 |
User::LeaveIfError(err);
|
sl@0
|
87 |
return(res);
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
TBool TClBase::DoPasteL(RFs& aFsSession)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
CClipboard* cb=CClipboard::NewForReadingLC(aFsSession);
|
sl@0
|
93 |
TBool res=PasteFromClipboardL(cb->Store(),cb->StreamDictionary());
|
sl@0
|
94 |
CleanupStack::PopAndDestroy();
|
sl@0
|
95 |
return(res);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
class TClName : public TClBase
|
sl@0
|
99 |
{
|
sl@0
|
100 |
public:
|
sl@0
|
101 |
void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
|
sl@0
|
102 |
TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
|
sl@0
|
103 |
public:
|
sl@0
|
104 |
TBuf<4> iName;
|
sl@0
|
105 |
};
|
sl@0
|
106 |
|
sl@0
|
107 |
class TClNameWithAddress : public TClName
|
sl@0
|
108 |
{
|
sl@0
|
109 |
void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
|
sl@0
|
110 |
TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
|
sl@0
|
111 |
public:
|
sl@0
|
112 |
TBuf<10> iAddress;
|
sl@0
|
113 |
};
|
sl@0
|
114 |
|
sl@0
|
115 |
class TClNameWithNumber : public TClName
|
sl@0
|
116 |
{
|
sl@0
|
117 |
void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
|
sl@0
|
118 |
TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
|
sl@0
|
119 |
public:
|
sl@0
|
120 |
TInt32 iNumber;
|
sl@0
|
121 |
};
|
sl@0
|
122 |
|
sl@0
|
123 |
class TClInteger : public TClBase
|
sl@0
|
124 |
{
|
sl@0
|
125 |
public:
|
sl@0
|
126 |
void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
|
sl@0
|
127 |
TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
|
sl@0
|
128 |
public:
|
sl@0
|
129 |
TInt32 iInteger;
|
sl@0
|
130 |
};
|
sl@0
|
131 |
|
sl@0
|
132 |
void TClName::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
|
sl@0
|
133 |
{
|
sl@0
|
134 |
RStoreWriteStream stream;
|
sl@0
|
135 |
TStreamId streamId=stream.CreateLC(aStore);
|
sl@0
|
136 |
stream<<iName;
|
sl@0
|
137 |
CleanupStack::PopAndDestroy();
|
sl@0
|
138 |
aDictionary.AssignL(KUidNameClipboardType,streamId);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
TBool TClName::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
TStreamId streamId=aDictionary.At(KUidNameClipboardType);
|
sl@0
|
144 |
if (streamId==KNullStreamId)
|
sl@0
|
145 |
return(EFalse);
|
sl@0
|
146 |
RStoreReadStream stream;
|
sl@0
|
147 |
stream.OpenLC(aStore,streamId);
|
sl@0
|
148 |
stream>>iName;
|
sl@0
|
149 |
CleanupStack::PopAndDestroy();
|
sl@0
|
150 |
return(ETrue);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
void TClNameWithAddress::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
|
sl@0
|
154 |
{
|
sl@0
|
155 |
TClName::CopyToClipboardL(aStore,aDictionary);
|
sl@0
|
156 |
RStoreWriteStream stream;
|
sl@0
|
157 |
TStreamId streamId=stream.CreateLC(aStore);
|
sl@0
|
158 |
stream<<iAddress;
|
sl@0
|
159 |
CleanupStack::PopAndDestroy();
|
sl@0
|
160 |
aDictionary.AssignL(KUidAddressClipboardType,streamId);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
|
sl@0
|
163 |
TBool TClNameWithAddress::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
|
sl@0
|
164 |
{
|
sl@0
|
165 |
TBool namePasted=TClName::PasteFromClipboardL(aStore,aDictionary);
|
sl@0
|
166 |
TStreamId streamId=aDictionary.At(KUidAddressClipboardType);
|
sl@0
|
167 |
if (streamId==KNullStreamId)
|
sl@0
|
168 |
return(namePasted);
|
sl@0
|
169 |
RStoreReadStream stream;
|
sl@0
|
170 |
stream.OpenLC(aStore,streamId);
|
sl@0
|
171 |
stream>>iAddress;
|
sl@0
|
172 |
CleanupStack::PopAndDestroy();
|
sl@0
|
173 |
return(ETrue);
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
void TClNameWithNumber::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
|
sl@0
|
177 |
{
|
sl@0
|
178 |
TClName::CopyToClipboardL(aStore,aDictionary);
|
sl@0
|
179 |
RStoreWriteStream stream;
|
sl@0
|
180 |
TStreamId streamId=stream.CreateLC(aStore);
|
sl@0
|
181 |
stream<<iNumber;
|
sl@0
|
182 |
CleanupStack::PopAndDestroy();
|
sl@0
|
183 |
aDictionary.AssignL(KUidNumberClipboardType,streamId);
|
sl@0
|
184 |
}
|
sl@0
|
185 |
|
sl@0
|
186 |
TBool TClNameWithNumber::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
TBool namePasted=TClName::PasteFromClipboardL(aStore,aDictionary);
|
sl@0
|
189 |
TStreamId streamId=aDictionary.At(KUidNumberClipboardType);
|
sl@0
|
190 |
if (streamId==KNullStreamId)
|
sl@0
|
191 |
return(namePasted);
|
sl@0
|
192 |
RStoreReadStream stream;
|
sl@0
|
193 |
stream.OpenLC(aStore,streamId);
|
sl@0
|
194 |
stream>>iNumber;
|
sl@0
|
195 |
CleanupStack::PopAndDestroy();
|
sl@0
|
196 |
return(ETrue);
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
void TClInteger::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
|
sl@0
|
200 |
{
|
sl@0
|
201 |
RStoreWriteStream stream;
|
sl@0
|
202 |
TStreamId streamId=stream.CreateLC(aStore);
|
sl@0
|
203 |
stream<<iInteger;
|
sl@0
|
204 |
CleanupStack::PopAndDestroy();
|
sl@0
|
205 |
aDictionary.AssignL(KUidNumberClipboardType,streamId);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
TBool TClInteger::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
TStreamId streamId=aDictionary.At(KUidNumberClipboardType);
|
sl@0
|
211 |
if (streamId==KNullStreamId)
|
sl@0
|
212 |
return(EFalse);
|
sl@0
|
213 |
RStoreReadStream stream;
|
sl@0
|
214 |
stream.OpenLC(aStore,streamId);
|
sl@0
|
215 |
stream>>iInteger;
|
sl@0
|
216 |
CleanupStack::PopAndDestroy();
|
sl@0
|
217 |
return(ETrue);
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
/**
|
sl@0
|
221 |
@SYMTestCaseID SYSLIB-BAFL-CT-0404
|
sl@0
|
222 |
@SYMTestCaseDesc Tests the CClipboard::Store(),StreamDictionary functions
|
sl@0
|
223 |
@SYMTestPriority High
|
sl@0
|
224 |
@SYMTestActions Tests the clipboard's file store with various cases(no file,file in use,corrupt file,non-store file)
|
sl@0
|
225 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
226 |
@SYMREQ REQ0000
|
sl@0
|
227 |
*/
|
sl@0
|
228 |
void TestErrorHandling(const TDesC& aTestPath)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
|
sl@0
|
231 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0404 "));
|
sl@0
|
232 |
TPtrC KClipboardFile(aTestPath);
|
sl@0
|
233 |
RFs fs;
|
sl@0
|
234 |
test (fs.Connect()==KErrNone);
|
sl@0
|
235 |
//
|
sl@0
|
236 |
test.Next(_L("No clipboard file"));
|
sl@0
|
237 |
fs.Delete(KClipboardFile);
|
sl@0
|
238 |
test (CClipboard::Clear(fs)==KErrNone);
|
sl@0
|
239 |
CClipboard* cb=NULL;
|
sl@0
|
240 |
TRAPD(err,cb=CClipboard::NewForReadingL(fs));
|
sl@0
|
241 |
test (err==KErrNone);
|
sl@0
|
242 |
test (&cb->Store()==NULL);
|
sl@0
|
243 |
test (&cb->StreamDictionary()!=NULL);
|
sl@0
|
244 |
test (cb->StreamDictionary().IsNull());
|
sl@0
|
245 |
delete cb;
|
sl@0
|
246 |
//
|
sl@0
|
247 |
test.Next(_L("In use"));
|
sl@0
|
248 |
RFile file;
|
sl@0
|
249 |
test (file.Create(fs,KClipboardFile,EFileRead|EFileWrite)==KErrNone);
|
sl@0
|
250 |
TRAP(err,cb=CClipboard::NewForReadingL(fs));
|
sl@0
|
251 |
test (err==KErrNone);
|
sl@0
|
252 |
test (&cb->Store()==NULL);
|
sl@0
|
253 |
test (&cb->StreamDictionary()!=NULL);
|
sl@0
|
254 |
test (cb->StreamDictionary().IsNull());
|
sl@0
|
255 |
delete cb;
|
sl@0
|
256 |
//
|
sl@0
|
257 |
test.Next(_L("Clear while in use"));
|
sl@0
|
258 |
test (CClipboard::Clear(fs)==KErrInUse);
|
sl@0
|
259 |
//
|
sl@0
|
260 |
test.Next(_L("Bogus clipboard file"));
|
sl@0
|
261 |
file.Close();
|
sl@0
|
262 |
TRAP(err,cb=CClipboard::NewForReadingL(fs));
|
sl@0
|
263 |
test (err==KErrNone);
|
sl@0
|
264 |
test (&cb->Store()==NULL);
|
sl@0
|
265 |
test (&cb->StreamDictionary()!=NULL);
|
sl@0
|
266 |
test (cb->StreamDictionary().IsNull());
|
sl@0
|
267 |
delete cb;
|
sl@0
|
268 |
//
|
sl@0
|
269 |
test.Next(_L("Non-store file"));
|
sl@0
|
270 |
test (file.Replace(fs,KClipboardFile,EFileRead|EFileWrite)==KErrNone);
|
sl@0
|
271 |
test (file.Write(_L8("some data which does not make this a file store"))==KErrNone);
|
sl@0
|
272 |
file.Close();
|
sl@0
|
273 |
TRAP(err,cb=CClipboard::NewForReadingL(fs));
|
sl@0
|
274 |
test (err==KErrNone);
|
sl@0
|
275 |
test (&cb->Store()==NULL);
|
sl@0
|
276 |
test (&cb->StreamDictionary()!=NULL);
|
sl@0
|
277 |
test (cb->StreamDictionary().IsNull());
|
sl@0
|
278 |
delete cb;
|
sl@0
|
279 |
//
|
sl@0
|
280 |
test.Next(_L("Wrong type file"));
|
sl@0
|
281 |
CFileStore* store=CDirectFileStore::ReplaceLC(fs,KClipboardFile,EFileRead|EFileWrite);
|
sl@0
|
282 |
store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KUidTestType));
|
sl@0
|
283 |
store->CommitL();
|
sl@0
|
284 |
CleanupStack::PopAndDestroy();
|
sl@0
|
285 |
TRAP(err,cb=CClipboard::NewForReadingL(fs));
|
sl@0
|
286 |
test (err==KErrNone);
|
sl@0
|
287 |
test (&cb->Store()==NULL);
|
sl@0
|
288 |
test (&cb->StreamDictionary()!=NULL);
|
sl@0
|
289 |
test (cb->StreamDictionary().IsNull());
|
sl@0
|
290 |
delete cb;
|
sl@0
|
291 |
//
|
sl@0
|
292 |
test.Next(_L("Corrupted clipboard"));
|
sl@0
|
293 |
store=CDirectFileStore::ReplaceLC(fs,KClipboardFile,EFileRead|EFileWrite);
|
sl@0
|
294 |
store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KClipboardFileUid));
|
sl@0
|
295 |
store->CommitL();
|
sl@0
|
296 |
CleanupStack::PopAndDestroy();
|
sl@0
|
297 |
TRAP(err,cb=CClipboard::NewForReadingL(fs));
|
sl@0
|
298 |
test (err==KErrNone);
|
sl@0
|
299 |
test (&cb->Store()==NULL);
|
sl@0
|
300 |
test (&cb->StreamDictionary()!=NULL);
|
sl@0
|
301 |
test (cb->StreamDictionary().IsNull());
|
sl@0
|
302 |
delete cb;
|
sl@0
|
303 |
//
|
sl@0
|
304 |
test.Next(_L("Clear clipboard"));
|
sl@0
|
305 |
test (CClipboard::Clear(fs)==KErrNone);
|
sl@0
|
306 |
TRAP(err,cb=CClipboard::NewForReadingL(fs));
|
sl@0
|
307 |
test (err==KErrNone);
|
sl@0
|
308 |
test (&cb->Store()==NULL);
|
sl@0
|
309 |
test (&cb->StreamDictionary()!=NULL);
|
sl@0
|
310 |
test (cb->StreamDictionary().IsNull());
|
sl@0
|
311 |
delete cb;
|
sl@0
|
312 |
//
|
sl@0
|
313 |
#if defined(_DEBUG)
|
sl@0
|
314 |
test.Next(_L("Out of memory failure"));
|
sl@0
|
315 |
//
|
sl@0
|
316 |
cb=CClipboard::NewForWritingLC(fs);
|
sl@0
|
317 |
RStoreWriteStream stream;
|
sl@0
|
318 |
TStreamId testId=stream.CreateLC(cb->Store());
|
sl@0
|
319 |
stream.WriteInt32L(0);
|
sl@0
|
320 |
stream.CommitL();
|
sl@0
|
321 |
CleanupStack::PopAndDestroy();
|
sl@0
|
322 |
cb->StreamDictionary().AssignL(KUidTestType,testId);
|
sl@0
|
323 |
cb->CommitL();
|
sl@0
|
324 |
CleanupStack::PopAndDestroy();
|
sl@0
|
325 |
//
|
sl@0
|
326 |
__UHEAP_MARK;
|
sl@0
|
327 |
for (TInt ii=0;;++ii)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
__UHEAP_FAILNEXT(ii);
|
sl@0
|
330 |
TRAP(err,cb=CClipboard::NewForReadingL(fs));
|
sl@0
|
331 |
if (err==KErrNone)
|
sl@0
|
332 |
break;
|
sl@0
|
333 |
test(err==KErrNoMemory);
|
sl@0
|
334 |
__UHEAP_CHECK(0);
|
sl@0
|
335 |
}
|
sl@0
|
336 |
__UHEAP_RESET;
|
sl@0
|
337 |
test (&cb->Store()!=NULL);
|
sl@0
|
338 |
test (cb->StreamDictionary().At(KUidTestType)==testId);
|
sl@0
|
339 |
delete cb;
|
sl@0
|
340 |
__UHEAP_MARKEND;
|
sl@0
|
341 |
//
|
sl@0
|
342 |
#endif
|
sl@0
|
343 |
//
|
sl@0
|
344 |
test.Next(_L("Fail to commit clipboard"));
|
sl@0
|
345 |
TRAP(err,cb=CClipboard::NewForWritingLC(fs);CleanupStack::Pop());
|
sl@0
|
346 |
test (err==KErrNone);
|
sl@0
|
347 |
delete cb;
|
sl@0
|
348 |
test (!BaflUtils::FileExists(fs,KClipboardFile));
|
sl@0
|
349 |
//
|
sl@0
|
350 |
fs.Close();
|
sl@0
|
351 |
}
|
sl@0
|
352 |
|
sl@0
|
353 |
/**
|
sl@0
|
354 |
@SYMTestCaseID SYSLIB-BAFL-CT-0405
|
sl@0
|
355 |
@SYMTestCaseDesc Tests the CClipboard::NewForWritingLC,NewForReadingL
|
sl@0
|
356 |
@SYMTestPriority High
|
sl@0
|
357 |
@SYMTestActions Tests for copy and paste operations on TClName,TClNameWithAddress,TClInteger,TClNameWithNumber
|
sl@0
|
358 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
359 |
@SYMREQ REQ0000
|
sl@0
|
360 |
*/
|
sl@0
|
361 |
void DoTestsOnDrive(const TDesC& aDrivePath)
|
sl@0
|
362 |
{
|
sl@0
|
363 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0405 Test single paste "));
|
sl@0
|
364 |
TClName n1,n2;
|
sl@0
|
365 |
n1.iName=_L("Fred");
|
sl@0
|
366 |
n2.iName=_L("Dino");
|
sl@0
|
367 |
n1.CopyL();
|
sl@0
|
368 |
TClNameWithAddress na1,na2;
|
sl@0
|
369 |
test(na1.PasteL());
|
sl@0
|
370 |
n2.CopyL();
|
sl@0
|
371 |
test(na2.PasteL());
|
sl@0
|
372 |
test(na1.iName==_L("Fred"));
|
sl@0
|
373 |
test(na2.iName==_L("Dino"));
|
sl@0
|
374 |
na1.iAddress=_L("Bedrock");
|
sl@0
|
375 |
test.Next(_L("Test double paste"));
|
sl@0
|
376 |
na1.CopyL();
|
sl@0
|
377 |
test(na2.PasteL());
|
sl@0
|
378 |
test(na2.iAddress==_L("Bedrock"));
|
sl@0
|
379 |
test(na2.iName==_L("Fred"));
|
sl@0
|
380 |
test.Next(_L("Test paste failure if type not present"));
|
sl@0
|
381 |
TClInteger i1,i2;
|
sl@0
|
382 |
test(!i1.PasteL());
|
sl@0
|
383 |
test.Next(_L("Test selecting the right data type"));
|
sl@0
|
384 |
TClNameWithNumber nn1,nn2;
|
sl@0
|
385 |
nn1.iNumber=36363;
|
sl@0
|
386 |
test(nn1.PasteL());
|
sl@0
|
387 |
test(nn1.iNumber==36363);
|
sl@0
|
388 |
test(nn1.iName==_L("Fred"));
|
sl@0
|
389 |
nn1.iName=_L("Wilm");
|
sl@0
|
390 |
nn1.CopyL();
|
sl@0
|
391 |
test(i2.PasteL());
|
sl@0
|
392 |
test(i2.iInteger==36363);
|
sl@0
|
393 |
test(n1.PasteL());
|
sl@0
|
394 |
test(n1.iName==_L("Wilm"));
|
sl@0
|
395 |
test(nn2.PasteL());
|
sl@0
|
396 |
test(nn2.iName==_L("Wilm"));
|
sl@0
|
397 |
test(nn2.iNumber==36363);
|
sl@0
|
398 |
//
|
sl@0
|
399 |
TestErrorHandling(aDrivePath);
|
sl@0
|
400 |
test.End();
|
sl@0
|
401 |
}
|
sl@0
|
402 |
|
sl@0
|
403 |
void DoTests()
|
sl@0
|
404 |
{
|
sl@0
|
405 |
// Tests for the HAL attribute ClipboardDrive set in the device.
|
sl@0
|
406 |
// C Drive
|
sl@0
|
407 |
DoTestsOnDrive(KClipboardFileCDrive);
|
sl@0
|
408 |
}
|
sl@0
|
409 |
|
sl@0
|
410 |
GLDEF_C TInt E32Main()
|
sl@0
|
411 |
{
|
sl@0
|
412 |
__UHEAP_MARK;
|
sl@0
|
413 |
CTrapCleanup *cleanup=CTrapCleanup::New();
|
sl@0
|
414 |
test.Title();
|
sl@0
|
415 |
test.Start(_L("Testing CClipboard "));
|
sl@0
|
416 |
TRAPD(err,DoTests());
|
sl@0
|
417 |
test(err==KErrNone);
|
sl@0
|
418 |
test.End();
|
sl@0
|
419 |
test.Close();
|
sl@0
|
420 |
delete cleanup;
|
sl@0
|
421 |
__UHEAP_MARKEND;
|
sl@0
|
422 |
return(0);
|
sl@0
|
423 |
}
|