First public contribution.
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 DWW, October 1996
27 LOCAL_D RTest test(_L("T_CLIPB"));
29 const TUid KClipboardFileUid={268435515};
30 const TUid KUidNameClipboardType={77001};
31 const TUid KUidAddressClipboardType={77002};
32 const TUid KUidNumberClipboardType={77003};
33 const TUid KUidTestType={77004};
35 const TPtrC KClipboardFileCDrive=_L("C:\\System\\Data\\ClpBoard.cbd");
36 const TPtrC KClipboardFileDDrive=_L("D:\\System\\Data\\ClpBoard.cbd");
37 const TPtrC KClipboardFileEDrive=_L("E:\\System\\Data\\ClpBoard.cbd");
39 * NOTE :- On order to run this test in WINS, there must exist a mapping for the drives
40 * used above. So in Epoc32\Data add the following lines to epoc.ini...
42 * _epoc_drive_d \epoc32\wins\d
43 * _epoc_drive_e \epoc32\wins\e
45 * only needed for drive D & E as there is a mapping for drive C.
46 * Plus make sure that the the above directories (\epoc32\wins\d & e) exist.
52 virtual void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const=0;
53 virtual TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)=0;
56 TBool PasteWithoutClipboardL();
58 void DoCopyL(RFs& aFsSession);
59 TBool DoPasteL(RFs& aFsSession);
65 User::LeaveIfError(fsSession.Connect());
66 TRAPD(err,DoCopyL(fsSession));
68 User::LeaveIfError(err);
71 void TClBase::DoCopyL(RFs& aFsSession)
73 CClipboard* cb=CClipboard::NewForWritingLC(aFsSession);
74 CopyToClipboardL(cb->Store(),cb->StreamDictionary());
76 CleanupStack::PopAndDestroy();
79 TBool TClBase::PasteL()
82 User::LeaveIfError(fsSession.Connect());
84 TRAPD(err,res=DoPasteL(fsSession));
86 User::LeaveIfError(err);
90 TBool TClBase::DoPasteL(RFs& aFsSession)
92 CClipboard* cb=CClipboard::NewForReadingLC(aFsSession);
93 TBool res=PasteFromClipboardL(cb->Store(),cb->StreamDictionary());
94 CleanupStack::PopAndDestroy();
98 class TClName : public TClBase
101 void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
102 TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
107 class TClNameWithAddress : public TClName
109 void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
110 TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
115 class TClNameWithNumber : public TClName
117 void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
118 TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
123 class TClInteger : public TClBase
126 void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
127 TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
132 void TClName::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
134 RStoreWriteStream stream;
135 TStreamId streamId=stream.CreateLC(aStore);
137 CleanupStack::PopAndDestroy();
138 aDictionary.AssignL(KUidNameClipboardType,streamId);
141 TBool TClName::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
143 TStreamId streamId=aDictionary.At(KUidNameClipboardType);
144 if (streamId==KNullStreamId)
146 RStoreReadStream stream;
147 stream.OpenLC(aStore,streamId);
149 CleanupStack::PopAndDestroy();
153 void TClNameWithAddress::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
155 TClName::CopyToClipboardL(aStore,aDictionary);
156 RStoreWriteStream stream;
157 TStreamId streamId=stream.CreateLC(aStore);
159 CleanupStack::PopAndDestroy();
160 aDictionary.AssignL(KUidAddressClipboardType,streamId);
163 TBool TClNameWithAddress::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
165 TBool namePasted=TClName::PasteFromClipboardL(aStore,aDictionary);
166 TStreamId streamId=aDictionary.At(KUidAddressClipboardType);
167 if (streamId==KNullStreamId)
169 RStoreReadStream stream;
170 stream.OpenLC(aStore,streamId);
172 CleanupStack::PopAndDestroy();
176 void TClNameWithNumber::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
178 TClName::CopyToClipboardL(aStore,aDictionary);
179 RStoreWriteStream stream;
180 TStreamId streamId=stream.CreateLC(aStore);
182 CleanupStack::PopAndDestroy();
183 aDictionary.AssignL(KUidNumberClipboardType,streamId);
186 TBool TClNameWithNumber::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
188 TBool namePasted=TClName::PasteFromClipboardL(aStore,aDictionary);
189 TStreamId streamId=aDictionary.At(KUidNumberClipboardType);
190 if (streamId==KNullStreamId)
192 RStoreReadStream stream;
193 stream.OpenLC(aStore,streamId);
195 CleanupStack::PopAndDestroy();
199 void TClInteger::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
201 RStoreWriteStream stream;
202 TStreamId streamId=stream.CreateLC(aStore);
204 CleanupStack::PopAndDestroy();
205 aDictionary.AssignL(KUidNumberClipboardType,streamId);
208 TBool TClInteger::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
210 TStreamId streamId=aDictionary.At(KUidNumberClipboardType);
211 if (streamId==KNullStreamId)
213 RStoreReadStream stream;
214 stream.OpenLC(aStore,streamId);
216 CleanupStack::PopAndDestroy();
221 @SYMTestCaseID SYSLIB-BAFL-CT-0404
222 @SYMTestCaseDesc Tests the CClipboard::Store(),StreamDictionary functions
223 @SYMTestPriority High
224 @SYMTestActions Tests the clipboard's file store with various cases(no file,file in use,corrupt file,non-store file)
225 @SYMTestExpectedResults Tests must not fail
228 void TestErrorHandling(const TDesC& aTestPath)
231 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0404 "));
232 TPtrC KClipboardFile(aTestPath);
234 test (fs.Connect()==KErrNone);
236 test.Next(_L("No clipboard file"));
237 fs.Delete(KClipboardFile);
238 test (CClipboard::Clear(fs)==KErrNone);
240 TRAPD(err,cb=CClipboard::NewForReadingL(fs));
241 test (err==KErrNone);
242 test (&cb->Store()==NULL);
243 test (&cb->StreamDictionary()!=NULL);
244 test (cb->StreamDictionary().IsNull());
247 test.Next(_L("In use"));
249 test (file.Create(fs,KClipboardFile,EFileRead|EFileWrite)==KErrNone);
250 TRAP(err,cb=CClipboard::NewForReadingL(fs));
251 test (err==KErrNone);
252 test (&cb->Store()==NULL);
253 test (&cb->StreamDictionary()!=NULL);
254 test (cb->StreamDictionary().IsNull());
257 test.Next(_L("Clear while in use"));
258 test (CClipboard::Clear(fs)==KErrInUse);
260 test.Next(_L("Bogus clipboard file"));
262 TRAP(err,cb=CClipboard::NewForReadingL(fs));
263 test (err==KErrNone);
264 test (&cb->Store()==NULL);
265 test (&cb->StreamDictionary()!=NULL);
266 test (cb->StreamDictionary().IsNull());
269 test.Next(_L("Non-store file"));
270 test (file.Replace(fs,KClipboardFile,EFileRead|EFileWrite)==KErrNone);
271 test (file.Write(_L8("some data which does not make this a file store"))==KErrNone);
273 TRAP(err,cb=CClipboard::NewForReadingL(fs));
274 test (err==KErrNone);
275 test (&cb->Store()==NULL);
276 test (&cb->StreamDictionary()!=NULL);
277 test (cb->StreamDictionary().IsNull());
280 test.Next(_L("Wrong type file"));
281 CFileStore* store=CDirectFileStore::ReplaceLC(fs,KClipboardFile,EFileRead|EFileWrite);
282 store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KUidTestType));
284 CleanupStack::PopAndDestroy();
285 TRAP(err,cb=CClipboard::NewForReadingL(fs));
286 test (err==KErrNone);
287 test (&cb->Store()==NULL);
288 test (&cb->StreamDictionary()!=NULL);
289 test (cb->StreamDictionary().IsNull());
292 test.Next(_L("Corrupted clipboard"));
293 store=CDirectFileStore::ReplaceLC(fs,KClipboardFile,EFileRead|EFileWrite);
294 store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KClipboardFileUid));
296 CleanupStack::PopAndDestroy();
297 TRAP(err,cb=CClipboard::NewForReadingL(fs));
298 test (err==KErrNone);
299 test (&cb->Store()==NULL);
300 test (&cb->StreamDictionary()!=NULL);
301 test (cb->StreamDictionary().IsNull());
304 test.Next(_L("Clear clipboard"));
305 test (CClipboard::Clear(fs)==KErrNone);
306 TRAP(err,cb=CClipboard::NewForReadingL(fs));
307 test (err==KErrNone);
308 test (&cb->Store()==NULL);
309 test (&cb->StreamDictionary()!=NULL);
310 test (cb->StreamDictionary().IsNull());
314 test.Next(_L("Out of memory failure"));
316 cb=CClipboard::NewForWritingLC(fs);
317 RStoreWriteStream stream;
318 TStreamId testId=stream.CreateLC(cb->Store());
319 stream.WriteInt32L(0);
321 CleanupStack::PopAndDestroy();
322 cb->StreamDictionary().AssignL(KUidTestType,testId);
324 CleanupStack::PopAndDestroy();
327 for (TInt ii=0;;++ii)
329 __UHEAP_FAILNEXT(ii);
330 TRAP(err,cb=CClipboard::NewForReadingL(fs));
333 test(err==KErrNoMemory);
337 test (&cb->Store()!=NULL);
338 test (cb->StreamDictionary().At(KUidTestType)==testId);
344 test.Next(_L("Fail to commit clipboard"));
345 TRAP(err,cb=CClipboard::NewForWritingLC(fs);CleanupStack::Pop());
346 test (err==KErrNone);
348 test (!BaflUtils::FileExists(fs,KClipboardFile));
354 @SYMTestCaseID SYSLIB-BAFL-CT-0405
355 @SYMTestCaseDesc Tests the CClipboard::NewForWritingLC,NewForReadingL
356 @SYMTestPriority High
357 @SYMTestActions Tests for copy and paste operations on TClName,TClNameWithAddress,TClInteger,TClNameWithNumber
358 @SYMTestExpectedResults Tests must not fail
361 void DoTestsOnDrive(const TDesC& aDrivePath)
363 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0405 Test single paste "));
368 TClNameWithAddress na1,na2;
372 test(na1.iName==_L("Fred"));
373 test(na2.iName==_L("Dino"));
374 na1.iAddress=_L("Bedrock");
375 test.Next(_L("Test double paste"));
378 test(na2.iAddress==_L("Bedrock"));
379 test(na2.iName==_L("Fred"));
380 test.Next(_L("Test paste failure if type not present"));
383 test.Next(_L("Test selecting the right data type"));
384 TClNameWithNumber nn1,nn2;
387 test(nn1.iNumber==36363);
388 test(nn1.iName==_L("Fred"));
389 nn1.iName=_L("Wilm");
392 test(i2.iInteger==36363);
394 test(n1.iName==_L("Wilm"));
396 test(nn2.iName==_L("Wilm"));
397 test(nn2.iNumber==36363);
399 TestErrorHandling(aDrivePath);
405 // Tests for the HAL attribute ClipboardDrive set in the device.
407 DoTestsOnDrive(KClipboardFileCDrive);
410 GLDEF_C TInt E32Main()
413 CTrapCleanup *cleanup=CTrapCleanup::New();
415 test.Start(_L("Testing CClipboard "));
416 TRAPD(err,DoTests());