os/ossrv/lowlevellibsandfws/apputils/tsrc/T_CLIPB.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_CLIPB.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,423 @@
     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 DWW, October 1996
    1.18 +// Tests cliboard
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include <e32test.h>
    1.23 +#include <baclipb.h>
    1.24 +#include <bautils.h>
    1.25 +#include <f32file.h>
    1.26 +#include <s32strm.h>
    1.27 +#include <s32stor.h>
    1.28 +#include <s32file.h>
    1.29 +
    1.30 +LOCAL_D RTest test(_L("T_CLIPB"));
    1.31 +
    1.32 +const TUid KClipboardFileUid={268435515};
    1.33 +const TUid KUidNameClipboardType={77001};
    1.34 +const TUid KUidAddressClipboardType={77002};
    1.35 +const TUid KUidNumberClipboardType={77003};
    1.36 +const TUid KUidTestType={77004};
    1.37 +
    1.38 +const TPtrC KClipboardFileCDrive=_L("C:\\System\\Data\\ClpBoard.cbd");
    1.39 +const TPtrC KClipboardFileDDrive=_L("D:\\System\\Data\\ClpBoard.cbd");
    1.40 +const TPtrC KClipboardFileEDrive=_L("E:\\System\\Data\\ClpBoard.cbd");
    1.41 +/**
    1.42 + * NOTE :- On order to run this test in WINS, there must exist a mapping for the drives
    1.43 + * used above. So in Epoc32\Data add the following lines to epoc.ini...
    1.44 + *
    1.45 + * _epoc_drive_d \epoc32\wins\d
    1.46 + * _epoc_drive_e \epoc32\wins\e
    1.47 + *
    1.48 + * only needed for drive D & E as there is a mapping for drive C.
    1.49 + * Plus make sure that the the above directories (\epoc32\wins\d & e) exist.
    1.50 + */
    1.51 +
    1.52 +class TClBase
    1.53 +	{
    1.54 +public:
    1.55 +	virtual void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const=0;
    1.56 +	virtual TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)=0;
    1.57 +	void CopyL();
    1.58 +	TBool PasteL();
    1.59 +	TBool PasteWithoutClipboardL();
    1.60 +private:
    1.61 +	void DoCopyL(RFs& aFsSession);
    1.62 +	TBool DoPasteL(RFs& aFsSession);
    1.63 +	};
    1.64 +
    1.65 +void TClBase::CopyL()
    1.66 +	{
    1.67 +	RFs fsSession;
    1.68 +	User::LeaveIfError(fsSession.Connect());
    1.69 +	TRAPD(err,DoCopyL(fsSession));
    1.70 +	fsSession.Close();
    1.71 +	User::LeaveIfError(err);
    1.72 +	}
    1.73 +
    1.74 +void TClBase::DoCopyL(RFs& aFsSession)
    1.75 +	{
    1.76 +	CClipboard* cb=CClipboard::NewForWritingLC(aFsSession);
    1.77 +	CopyToClipboardL(cb->Store(),cb->StreamDictionary());
    1.78 +	cb->CommitL();
    1.79 +	CleanupStack::PopAndDestroy();
    1.80 +	}
    1.81 +
    1.82 +TBool TClBase::PasteL()
    1.83 +	{
    1.84 +	RFs fsSession;
    1.85 +	User::LeaveIfError(fsSession.Connect());
    1.86 +	TBool res=EFalse;
    1.87 +	TRAPD(err,res=DoPasteL(fsSession));
    1.88 +	fsSession.Close();
    1.89 +	User::LeaveIfError(err);
    1.90 +	return(res);
    1.91 +	}
    1.92 +
    1.93 +TBool TClBase::DoPasteL(RFs& aFsSession)
    1.94 +	{
    1.95 +	CClipboard* cb=CClipboard::NewForReadingLC(aFsSession);
    1.96 +	TBool res=PasteFromClipboardL(cb->Store(),cb->StreamDictionary());
    1.97 +	CleanupStack::PopAndDestroy();
    1.98 +	return(res);
    1.99 +	}
   1.100 +
   1.101 +class TClName : public TClBase
   1.102 +	{
   1.103 +public:
   1.104 +	void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
   1.105 +	TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
   1.106 +public:
   1.107 +	TBuf<4> iName;
   1.108 +	};
   1.109 +
   1.110 +class TClNameWithAddress : public TClName
   1.111 +	{
   1.112 +	void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
   1.113 +	TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
   1.114 +public:
   1.115 +	TBuf<10> iAddress;
   1.116 +	};
   1.117 +
   1.118 +class TClNameWithNumber : public TClName
   1.119 +	{
   1.120 +	void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
   1.121 +	TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
   1.122 +public:
   1.123 +	TInt32 iNumber;
   1.124 +	};
   1.125 +
   1.126 +class TClInteger : public TClBase
   1.127 +	{
   1.128 +public:
   1.129 +	void CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const;
   1.130 +	TBool PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary);
   1.131 +public:
   1.132 +	TInt32 iInteger;
   1.133 +	};
   1.134 +
   1.135 +void TClName::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
   1.136 +	{
   1.137 +	RStoreWriteStream stream;
   1.138 +	TStreamId streamId=stream.CreateLC(aStore);
   1.139 +	stream<<iName;
   1.140 +	CleanupStack::PopAndDestroy();
   1.141 +	aDictionary.AssignL(KUidNameClipboardType,streamId);
   1.142 +	}
   1.143 +
   1.144 +TBool TClName::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
   1.145 +	{
   1.146 +	TStreamId streamId=aDictionary.At(KUidNameClipboardType);
   1.147 +	if (streamId==KNullStreamId)
   1.148 +		return(EFalse);
   1.149 +	RStoreReadStream stream;
   1.150 +	stream.OpenLC(aStore,streamId);
   1.151 +	stream>>iName;
   1.152 +	CleanupStack::PopAndDestroy();
   1.153 +	return(ETrue);
   1.154 +	}
   1.155 +
   1.156 +void TClNameWithAddress::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
   1.157 +	{
   1.158 +	TClName::CopyToClipboardL(aStore,aDictionary);
   1.159 +	RStoreWriteStream stream;
   1.160 +	TStreamId streamId=stream.CreateLC(aStore);
   1.161 +	stream<<iAddress;
   1.162 +	CleanupStack::PopAndDestroy();
   1.163 +	aDictionary.AssignL(KUidAddressClipboardType,streamId);
   1.164 +	}
   1.165 +
   1.166 +TBool TClNameWithAddress::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
   1.167 +	{
   1.168 +	TBool namePasted=TClName::PasteFromClipboardL(aStore,aDictionary);
   1.169 +	TStreamId streamId=aDictionary.At(KUidAddressClipboardType);
   1.170 +	if (streamId==KNullStreamId)
   1.171 +		return(namePasted);
   1.172 +	RStoreReadStream stream;
   1.173 +	stream.OpenLC(aStore,streamId);
   1.174 +	stream>>iAddress;
   1.175 +	CleanupStack::PopAndDestroy();
   1.176 +	return(ETrue);
   1.177 +	}
   1.178 +
   1.179 +void TClNameWithNumber::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
   1.180 +	{
   1.181 +	TClName::CopyToClipboardL(aStore,aDictionary);
   1.182 +	RStoreWriteStream stream;
   1.183 +	TStreamId streamId=stream.CreateLC(aStore);
   1.184 +	stream<<iNumber;
   1.185 +	CleanupStack::PopAndDestroy();
   1.186 +	aDictionary.AssignL(KUidNumberClipboardType,streamId);
   1.187 +	}
   1.188 +
   1.189 +TBool TClNameWithNumber::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
   1.190 +	{
   1.191 +	TBool namePasted=TClName::PasteFromClipboardL(aStore,aDictionary);
   1.192 +	TStreamId streamId=aDictionary.At(KUidNumberClipboardType);
   1.193 +	if (streamId==KNullStreamId)
   1.194 +		return(namePasted);
   1.195 +	RStoreReadStream stream;
   1.196 +	stream.OpenLC(aStore,streamId);
   1.197 +	stream>>iNumber;
   1.198 +	CleanupStack::PopAndDestroy();
   1.199 +	return(ETrue);
   1.200 +	}
   1.201 +
   1.202 +void TClInteger::CopyToClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary) const
   1.203 +	{
   1.204 +	RStoreWriteStream stream;
   1.205 +	TStreamId streamId=stream.CreateLC(aStore);
   1.206 +	stream<<iInteger;
   1.207 +	CleanupStack::PopAndDestroy();
   1.208 +	aDictionary.AssignL(KUidNumberClipboardType,streamId);
   1.209 +	}
   1.210 +
   1.211 +TBool TClInteger::PasteFromClipboardL(CStreamStore& aStore,CStreamDictionary& aDictionary)
   1.212 +	{
   1.213 +	TStreamId streamId=aDictionary.At(KUidNumberClipboardType);
   1.214 +	if (streamId==KNullStreamId)
   1.215 +		return(EFalse);
   1.216 +	RStoreReadStream stream;
   1.217 +	stream.OpenLC(aStore,streamId);
   1.218 +	stream>>iInteger;
   1.219 +	CleanupStack::PopAndDestroy();
   1.220 +	return(ETrue);
   1.221 +	}
   1.222 +
   1.223 +/**
   1.224 +@SYMTestCaseID          SYSLIB-BAFL-CT-0404
   1.225 +@SYMTestCaseDesc        Tests the  CClipboard::Store(),StreamDictionary functions
   1.226 +@SYMTestPriority        High
   1.227 +@SYMTestActions         Tests the clipboard's file store with various cases(no file,file in use,corrupt file,non-store file)
   1.228 +@SYMTestExpectedResults Tests must not fail
   1.229 +@SYMREQ                 REQ0000
   1.230 +*/
   1.231 +void TestErrorHandling(const TDesC& aTestPath)
   1.232 +	{
   1.233 +
   1.234 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0404 "));
   1.235 +	TPtrC KClipboardFile(aTestPath);
   1.236 +	RFs fs;
   1.237 +	test (fs.Connect()==KErrNone);
   1.238 +//
   1.239 +	test.Next(_L("No clipboard file"));
   1.240 +	fs.Delete(KClipboardFile);
   1.241 +	test (CClipboard::Clear(fs)==KErrNone);
   1.242 +	CClipboard* cb=NULL;
   1.243 +	TRAPD(err,cb=CClipboard::NewForReadingL(fs));
   1.244 +	test (err==KErrNone);
   1.245 +	test (&cb->Store()==NULL);
   1.246 +	test (&cb->StreamDictionary()!=NULL);
   1.247 +	test (cb->StreamDictionary().IsNull());
   1.248 +	delete cb;
   1.249 +//
   1.250 +	test.Next(_L("In use"));
   1.251 +	RFile file;
   1.252 +	test (file.Create(fs,KClipboardFile,EFileRead|EFileWrite)==KErrNone);
   1.253 +	TRAP(err,cb=CClipboard::NewForReadingL(fs));
   1.254 +	test (err==KErrNone);
   1.255 +	test (&cb->Store()==NULL);
   1.256 +	test (&cb->StreamDictionary()!=NULL);
   1.257 +	test (cb->StreamDictionary().IsNull());
   1.258 +	delete cb;
   1.259 +//
   1.260 +	test.Next(_L("Clear while in use"));
   1.261 +	test (CClipboard::Clear(fs)==KErrInUse);
   1.262 +//
   1.263 +	test.Next(_L("Bogus clipboard file"));
   1.264 +	file.Close();
   1.265 +	TRAP(err,cb=CClipboard::NewForReadingL(fs));
   1.266 +	test (err==KErrNone);
   1.267 +	test (&cb->Store()==NULL);
   1.268 +	test (&cb->StreamDictionary()!=NULL);
   1.269 +	test (cb->StreamDictionary().IsNull());
   1.270 +	delete cb;
   1.271 +//
   1.272 +	test.Next(_L("Non-store file"));
   1.273 +	test (file.Replace(fs,KClipboardFile,EFileRead|EFileWrite)==KErrNone);
   1.274 +	test (file.Write(_L8("some data which does not make this a file store"))==KErrNone);
   1.275 +	file.Close();
   1.276 +	TRAP(err,cb=CClipboard::NewForReadingL(fs));
   1.277 +	test (err==KErrNone);
   1.278 +	test (&cb->Store()==NULL);
   1.279 +	test (&cb->StreamDictionary()!=NULL);
   1.280 +	test (cb->StreamDictionary().IsNull());
   1.281 +	delete cb;
   1.282 +//
   1.283 +	test.Next(_L("Wrong type file"));
   1.284 +	CFileStore* store=CDirectFileStore::ReplaceLC(fs,KClipboardFile,EFileRead|EFileWrite);
   1.285 +	store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KUidTestType));
   1.286 +	store->CommitL();
   1.287 +	CleanupStack::PopAndDestroy();
   1.288 +	TRAP(err,cb=CClipboard::NewForReadingL(fs));
   1.289 +	test (err==KErrNone);
   1.290 +	test (&cb->Store()==NULL);
   1.291 +	test (&cb->StreamDictionary()!=NULL);
   1.292 +	test (cb->StreamDictionary().IsNull());
   1.293 +	delete cb;
   1.294 +//
   1.295 +	test.Next(_L("Corrupted clipboard"));
   1.296 +	store=CDirectFileStore::ReplaceLC(fs,KClipboardFile,EFileRead|EFileWrite);
   1.297 +	store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KClipboardFileUid));
   1.298 +	store->CommitL();
   1.299 +	CleanupStack::PopAndDestroy();
   1.300 +	TRAP(err,cb=CClipboard::NewForReadingL(fs));
   1.301 +	test (err==KErrNone);
   1.302 +	test (&cb->Store()==NULL);
   1.303 +	test (&cb->StreamDictionary()!=NULL);
   1.304 +	test (cb->StreamDictionary().IsNull());
   1.305 +	delete cb;
   1.306 +//
   1.307 +	test.Next(_L("Clear clipboard"));
   1.308 +	test (CClipboard::Clear(fs)==KErrNone);
   1.309 +	TRAP(err,cb=CClipboard::NewForReadingL(fs));
   1.310 +	test (err==KErrNone);
   1.311 +	test (&cb->Store()==NULL);
   1.312 +	test (&cb->StreamDictionary()!=NULL);
   1.313 +	test (cb->StreamDictionary().IsNull());
   1.314 +	delete cb;
   1.315 +//
   1.316 +#if defined(_DEBUG)
   1.317 +	test.Next(_L("Out of memory failure"));
   1.318 +//
   1.319 +	cb=CClipboard::NewForWritingLC(fs);
   1.320 +	RStoreWriteStream stream;
   1.321 +	TStreamId testId=stream.CreateLC(cb->Store());
   1.322 +	stream.WriteInt32L(0);
   1.323 +	stream.CommitL();
   1.324 +	CleanupStack::PopAndDestroy();
   1.325 +	cb->StreamDictionary().AssignL(KUidTestType,testId);
   1.326 +	cb->CommitL();
   1.327 +	CleanupStack::PopAndDestroy();
   1.328 +//
   1.329 +	__UHEAP_MARK;
   1.330 +	for (TInt ii=0;;++ii)
   1.331 +		{
   1.332 +		__UHEAP_FAILNEXT(ii);
   1.333 +		TRAP(err,cb=CClipboard::NewForReadingL(fs));
   1.334 +		if (err==KErrNone)
   1.335 +			break;
   1.336 +		test(err==KErrNoMemory);
   1.337 +		__UHEAP_CHECK(0);
   1.338 +		}
   1.339 +	__UHEAP_RESET;
   1.340 +	test (&cb->Store()!=NULL);
   1.341 +	test (cb->StreamDictionary().At(KUidTestType)==testId);
   1.342 +	delete cb;
   1.343 +	__UHEAP_MARKEND;
   1.344 +//
   1.345 +#endif
   1.346 +//
   1.347 +	test.Next(_L("Fail to commit clipboard"));
   1.348 +	TRAP(err,cb=CClipboard::NewForWritingLC(fs);CleanupStack::Pop());
   1.349 +	test (err==KErrNone);
   1.350 +	delete cb;
   1.351 +	test (!BaflUtils::FileExists(fs,KClipboardFile));
   1.352 +//
   1.353 +	fs.Close();
   1.354 +	}
   1.355 +
   1.356 +/**
   1.357 +@SYMTestCaseID          SYSLIB-BAFL-CT-0405
   1.358 +@SYMTestCaseDesc        Tests the CClipboard::NewForWritingLC,NewForReadingL
   1.359 +@SYMTestPriority        High
   1.360 +@SYMTestActions         Tests for copy and paste operations on TClName,TClNameWithAddress,TClInteger,TClNameWithNumber
   1.361 +@SYMTestExpectedResults Tests must not fail
   1.362 +@SYMREQ                 REQ0000
   1.363 +*/
   1.364 +void DoTestsOnDrive(const TDesC& aDrivePath)
   1.365 +    {
   1.366 +	test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0405 Test single paste "));
   1.367 +	TClName n1,n2;
   1.368 +	n1.iName=_L("Fred");
   1.369 +	n2.iName=_L("Dino");
   1.370 +	n1.CopyL();
   1.371 +	TClNameWithAddress na1,na2;
   1.372 +	test(na1.PasteL());
   1.373 +	n2.CopyL();
   1.374 +	test(na2.PasteL());
   1.375 +	test(na1.iName==_L("Fred"));
   1.376 +	test(na2.iName==_L("Dino"));
   1.377 +	na1.iAddress=_L("Bedrock");
   1.378 +	test.Next(_L("Test double paste"));
   1.379 +	na1.CopyL();
   1.380 +	test(na2.PasteL());
   1.381 +	test(na2.iAddress==_L("Bedrock"));
   1.382 +	test(na2.iName==_L("Fred"));
   1.383 +	test.Next(_L("Test paste failure if type not present"));
   1.384 +	TClInteger i1,i2;
   1.385 +	test(!i1.PasteL());
   1.386 +	test.Next(_L("Test selecting the right data type"));
   1.387 +	TClNameWithNumber nn1,nn2;
   1.388 +	nn1.iNumber=36363;
   1.389 +	test(nn1.PasteL());
   1.390 +	test(nn1.iNumber==36363);
   1.391 +	test(nn1.iName==_L("Fred"));
   1.392 +	nn1.iName=_L("Wilm");
   1.393 +	nn1.CopyL();
   1.394 +	test(i2.PasteL());
   1.395 +	test(i2.iInteger==36363);
   1.396 +	test(n1.PasteL());
   1.397 +	test(n1.iName==_L("Wilm"));
   1.398 +	test(nn2.PasteL());
   1.399 +	test(nn2.iName==_L("Wilm"));
   1.400 +	test(nn2.iNumber==36363);
   1.401 +//
   1.402 +	TestErrorHandling(aDrivePath);
   1.403 +	test.End();
   1.404 +    }
   1.405 +
   1.406 +void DoTests()
   1.407 +	{
   1.408 +	// Tests for the HAL attribute ClipboardDrive set in the device.
   1.409 +	// C Drive
   1.410 +	DoTestsOnDrive(KClipboardFileCDrive);
   1.411 +	}
   1.412 +
   1.413 +GLDEF_C TInt E32Main()
   1.414 +	{
   1.415 +    __UHEAP_MARK;
   1.416 +    CTrapCleanup *cleanup=CTrapCleanup::New();
   1.417 +	test.Title();
   1.418 +	test.Start(_L("Testing CClipboard "));
   1.419 +    TRAPD(err,DoTests());
   1.420 +    test(err==KErrNone);
   1.421 +	test.End();
   1.422 +    test.Close();
   1.423 +    delete cleanup;
   1.424 +    __UHEAP_MARKEND;
   1.425 +	return(0);
   1.426 +    }